1
1
//! Tests for `[source]` table (source replacement).
2
2
3
- #![ allow( deprecated) ]
4
-
5
3
use std:: fs;
6
4
7
5
use cargo_test_support:: registry:: { Package , RegistryBuilder , TestRegistry } ;
8
- use cargo_test_support:: { cargo_process, paths, project, t} ;
6
+ use cargo_test_support:: { cargo_process, paths, project, str , t} ;
9
7
10
8
fn setup_replacement ( config : & str ) -> TestRegistry {
11
9
let crates_io = RegistryBuilder :: new ( )
@@ -52,7 +50,10 @@ fn crates_io_token_not_sent_to_replacement() {
52
50
53
51
p. cargo ( "publish --no-verify --registry crates-io" )
54
52
. replace_crates_io ( crates_io. index_url ( ) )
55
- . with_stderr_contains ( "[UPDATING] crates.io index" )
53
+ . with_stderr_data ( str![ [ r#"
54
+ [UPDATING] crates.io index
55
+ ...
56
+ "# ] ] )
56
57
. run ( ) ;
57
58
}
58
59
@@ -69,22 +70,20 @@ fn token_sent_to_correct_registry() {
69
70
70
71
cargo_process ( "yank [email protected] --registry crates-io" )
71
72
. replace_crates_io ( crates_io. index_url ( ) )
72
- . with_stderr (
73
- "\
73
+ . with_stderr_data ( str![ [ r#"
74
74
[UPDATING] crates.io index
75
75
76
- " ,
77
- )
76
+
77
+ "# ] ] )
78
78
. run ( ) ;
79
79
80
80
cargo_process ( "yank [email protected] --registry alternative" )
81
81
. replace_crates_io ( crates_io. index_url ( ) )
82
- . with_stderr (
83
- "\
82
+ . with_stderr_data ( str![ [ r#"
84
83
[UPDATING] `alternative` index
85
84
86
- " ,
87
- )
85
+
86
+ "# ] ] )
88
87
. run ( ) ;
89
88
}
90
89
@@ -107,12 +106,11 @@ fn ambiguous_registry() {
107
106
cargo_process ( "yank [email protected] " )
108
107
. replace_crates_io ( crates_io. index_url ( ) )
109
108
. with_status ( 101 )
110
- . with_stderr (
111
- "\
112
- error: crates-io is replaced with remote registry alternative;
109
+ . with_stderr_data ( str![ [ r#"
110
+ [ERROR] crates-io is replaced with remote registry alternative;
113
111
include `--registry alternative` or `--registry crates-io`
114
- " ,
115
- )
112
+
113
+ "# ] ] )
116
114
. run ( ) ;
117
115
}
118
116
@@ -132,12 +130,11 @@ fn yank_with_default_crates_io() {
132
130
133
131
cargo_process ( "yank [email protected] " )
134
132
. replace_crates_io ( crates_io. index_url ( ) )
135
- . with_stderr (
136
- "\
133
+ . with_stderr_data ( str![ [ r#"
137
134
[UPDATING] crates.io index
138
135
139
- " ,
140
- )
136
+
137
+ "# ] ] )
141
138
. run ( ) ;
142
139
}
143
140
@@ -157,12 +154,11 @@ fn yank_with_default_alternative() {
157
154
158
155
cargo_process ( "yank [email protected] " )
159
156
. replace_crates_io ( crates_io. index_url ( ) )
160
- . with_stderr (
161
- "\
157
+ . with_stderr_data ( str![ [ r#"
162
158
[UPDATING] `alternative` index
163
159
164
- " ,
165
- )
160
+
161
+ "# ] ] )
166
162
. run ( ) ;
167
163
}
168
164
@@ -209,27 +205,26 @@ fn publish_with_replacement() {
209
205
// for the verification step.
210
206
p. cargo ( "publish --registry crates-io" )
211
207
. replace_crates_io ( crates_io. index_url ( ) )
212
- . with_stderr (
213
- "\
208
+ . with_stderr_data ( str![ [ r#"
214
209
[UPDATING] crates.io index
215
210
[WARNING] manifest has no documentation, homepage or repository.
216
211
See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for more info.
217
- [PACKAGING] foo v0.0.1 ([..] )
218
- [PACKAGED] [..]
219
- [VERIFYING] foo v0.0.1 ([..] )
212
+ [PACKAGING] foo v0.0.1 ([ROOT]/foo )
213
+ [PACKAGED] 3 files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
214
+ [VERIFYING] foo v0.0.1 ([ROOT]/foo )
220
215
[UPDATING] `alternative` index
221
216
[DOWNLOADING] crates ...
222
217
[DOWNLOADED] bar v1.0.0 (registry `alternative`)
223
218
[COMPILING] bar v1.0.0
224
- [COMPILING] foo v0.0.1 ([..] foo-0.0.1)
225
- [FINISHED] `dev` profile [..]
226
- [UPLOADING] foo v0.0.1 ([..] )
219
+ [COMPILING] foo v0.0.1 ([ROOT]/foo/target/package/ foo-0.0.1)
220
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
221
+ [UPLOADING] foo v0.0.1 ([ROOT]/foo )
227
222
[UPLOADED] foo v0.0.1 to registry `crates-io`
228
223
[NOTE] waiting for `foo v0.0.1` to be available at registry `crates-io`.
229
224
You may press ctrl-c to skip waiting; the crate should be available shortly.
230
225
[PUBLISHED] foo v0.0.1 at registry `crates-io`
231
- " ,
232
- )
226
+
227
+ "# ] ] )
233
228
. run ( ) ;
234
229
}
235
230
@@ -246,10 +241,10 @@ fn undefined_default() {
246
241
cargo_process ( "yank [email protected] " )
247
242
. replace_crates_io ( crates_io. index_url ( ) )
248
243
. with_status ( 101 )
249
- . with_stderr (
250
- " [ERROR] registry index was not found in any configuration: `undefined`
251
- " ,
252
- )
244
+ . with_stderr_data ( str! [ [ r#"
245
+ [ERROR] registry index was not found in any configuration: `undefined`
246
+
247
+ "# ] ] )
253
248
. run ( ) ;
254
249
}
255
250
@@ -286,16 +281,15 @@ fn source_replacement_with_registry_url() {
286
281
287
282
p. cargo ( "check" )
288
283
. replace_crates_io ( crates_io. index_url ( ) )
289
- . with_stderr (
290
- "\
284
+ . with_stderr_data ( str![ [ r#"
291
285
[UPDATING] `using-registry-url` index
292
286
[LOCKING] 2 packages to latest compatible versions
293
287
[DOWNLOADING] crates ...
294
288
[DOWNLOADED] bar v0.0.1 (registry `using-registry-url`)
295
289
[CHECKING] bar v0.0.1
296
- [CHECKING] foo v0.0.1 ([CWD] )
297
- [FINISHED] `dev` profile [..]
298
- " ,
299
- )
290
+ [CHECKING] foo v0.0.1 ([ROOT]/foo )
291
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
292
+
293
+ "# ] ] )
300
294
. run ( ) ;
301
295
}
0 commit comments