7
7
//! So we pick some random lint that will likely always be the same
8
8
//! over time.
9
9
10
- #![ allow( deprecated) ]
11
-
12
10
use super :: config:: write_config_toml;
13
11
use cargo_test_support:: registry:: Package ;
14
- use cargo_test_support:: { basic_manifest, project, Project } ;
12
+ use cargo_test_support:: { basic_manifest, project, str , Project } ;
15
13
16
14
// An arbitrary lint (unused_variables) that triggers a lint.
17
15
// We use a special flag to force it to generate a report.
@@ -35,8 +33,13 @@ fn output_on_stable() {
35
33
36
34
p. cargo ( "check" )
37
35
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
38
- . with_stderr_contains ( FUTURE_OUTPUT )
39
- . with_stderr_contains ( "[..]cargo report[..]" )
36
+ . with_stderr_data ( str![ [ r#"
37
+ ...
38
+ [WARNING] unused variable: `x`
39
+ ...
40
+ [NOTE] to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 1`
41
+
42
+ "# ] ] )
40
43
. run ( ) ;
41
44
}
42
45
@@ -50,7 +53,10 @@ fn no_gate_future_incompat_report() {
50
53
. run ( ) ;
51
54
52
55
p. cargo ( "report future-incompatibilities --id foo" )
53
- . with_stderr_contains ( "error: no reports are currently available" )
56
+ . with_stderr_data ( str![ [ r#"
57
+ [ERROR] no reports are currently available
58
+
59
+ "# ] ] )
54
60
. with_status ( 101 )
55
61
. run ( ) ;
56
62
}
@@ -68,25 +74,24 @@ fn test_zero_future_incompat() {
68
74
// No note if --future-incompat-report is not specified.
69
75
p. cargo ( "check" )
70
76
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
71
- . with_stderr (
72
- "\
73
- [CHECKING] foo v0.0.0 [..]
74
- [FINISHED] [..]
75
- " ,
76
- )
77
+ . with_stderr_data ( str![ [ r#"
78
+ [CHECKING] foo v0.0.0 ([ROOT]/foo)
79
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
80
+
81
+ "# ] ] )
77
82
. run ( ) ;
78
83
79
84
p. cargo ( "check --future-incompat-report" )
80
85
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
81
- . with_stderr (
82
- "\
83
- [FINISHED] [..]
84
- note: 0 dependencies had future-incompatible warnings
85
- " ,
86
- )
86
+ . with_stderr_data ( str![ [ r#"
87
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
88
+ [NOTE] 0 dependencies had future-incompatible warnings
89
+
90
+ "# ] ] )
87
91
. run ( ) ;
88
92
}
89
93
94
+ #[ allow( deprecated) ]
90
95
#[ cargo_test(
91
96
nightly,
92
97
reason = "-Zfuture-incompat-test requires nightly (permanently)"
@@ -98,8 +103,13 @@ fn test_single_crate() {
98
103
let check_has_future_compat = || {
99
104
p. cargo ( command)
100
105
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
101
- . with_stderr_contains ( FUTURE_OUTPUT )
102
- . with_stderr_contains ( "warning: the following packages contain code that will be rejected by a future version of Rust: foo v0.0.0 [..]" )
106
+ . with_stderr_data ( "\
107
+ ...
108
+ [WARNING] unused variable: `x`
109
+ ...
110
+ [WARNING] the following packages contain code that will be rejected by a future version of Rust: foo v0.0.0 ([ROOT]/foo)
111
+ ...
112
+ " )
103
113
. with_stderr_does_not_contain ( "[..]incompatibility[..]" )
104
114
. run ( ) ;
105
115
} ;
@@ -126,21 +136,32 @@ frequency = 'never'
126
136
) ;
127
137
p. cargo ( command)
128
138
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
129
- . with_stderr_contains ( FUTURE_OUTPUT )
139
+ . with_stderr_data (
140
+ "\
141
+ [WARNING] unused variable: `x`
142
+ ...
143
+ " ,
144
+ )
130
145
. with_stderr_does_not_contain ( "[..]rejected[..]" )
131
146
. with_stderr_does_not_contain ( "[..]incompatibility[..]" )
132
147
. run ( ) ;
133
148
134
149
// Check that passing `--future-incompat-report` overrides `frequency = 'never'`
135
150
p. cargo ( command) . arg ( "--future-incompat-report" )
136
151
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
137
- . with_stderr_contains ( FUTURE_OUTPUT )
138
- . with_stderr_contains ( "warning: the following packages contain code that will be rejected by a future version of Rust: foo v0.0.0 [..]" )
139
- . with_stderr_contains ( " - [email protected] [..]" )
152
+ . with_stderr_data ( "\
153
+ [WARNING] unused variable: `x`
154
+ ...
155
+ [WARNING] the following packages contain code that will be rejected by a future version of Rust: foo v0.0.0 ([ROOT]/foo)
156
+ ...
157
+
158
+ ...
159
+ " )
140
160
. run ( ) ;
141
161
}
142
162
}
143
163
164
+ #[ allow( deprecated) ]
144
165
#[ cargo_test(
145
166
nightly,
146
167
reason = "-Zfuture-incompat-test requires nightly (permanently)"
@@ -173,7 +194,11 @@ fn test_multi_crate() {
173
194
p. cargo ( command)
174
195
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
175
196
. with_stderr_does_not_contain ( FUTURE_OUTPUT )
176
- . with_stderr_contains ( "warning: the following packages contain code that will be rejected by a future version of Rust: first-dep v0.0.1, second-dep v0.0.2" )
197
+ . with_stderr_data ( "\
198
+ ...
199
+ [WARNING] the following packages contain code that will be rejected by a future version of Rust: first-dep v0.0.1, second-dep v0.0.2
200
+ ...
201
+ " )
177
202
// Check that we don't have the 'triggers' message shown at the bottom of this loop,
178
203
// and that we don't explain how to show a per-package report
179
204
. with_stderr_does_not_contain ( "[..]triggers[..]" )
@@ -183,20 +208,42 @@ fn test_multi_crate() {
183
208
184
209
p. cargo ( command) . arg ( "--future-incompat-report" )
185
210
. env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
186
- . with_stderr_contains ( "warning: the following packages contain code that will be rejected by a future version of Rust: first-dep v0.0.1, second-dep v0.0.2" )
187
- . with_stderr_contains ( " - [email protected] " )
188
- . with_stderr_contains ( " - [email protected] " )
211
+ . with_stderr_data ( "\
212
+ ...
213
+ [WARNING] the following packages contain code that will be rejected by a future version of Rust: first-dep v0.0.1, second-dep v0.0.2
214
+ ...
215
+
216
+ ...
217
+
218
+ ...
219
+ " )
189
220
. run ( ) ;
190
221
191
- p
. cargo ( "report future-incompatibilities" ) . arg ( "--package" ) . arg ( "[email protected] " )
192
- . with_stdout_contains ( "The package `first-dep v0.0.1` currently triggers the following future incompatibility lints:" )
193
- . with_stdout_contains ( FUTURE_OUTPUT )
222
+ p. cargo ( "report future-incompatibilities" )
223
+ . arg ( "--package" )
224
+
225
+ . with_stdout_data (
226
+ "\
227
+ ...
228
+ The package `first-dep v0.0.1` currently triggers the following future incompatibility lints:
229
+ > [WARNING] unused variable: `x`
230
+ ...
231
+ " ,
232
+ )
194
233
. with_stdout_does_not_contain ( "[..]second-dep-0.0.2/src[..]" )
195
234
. run ( ) ;
196
235
197
- p
. cargo ( "report future-incompatibilities" ) . arg ( "--package" ) . arg ( "[email protected] " )
198
- . with_stdout_contains ( "The package `second-dep v0.0.2` currently triggers the following future incompatibility lints:" )
199
- . with_stdout_contains ( FUTURE_OUTPUT )
236
+ p. cargo ( "report future-incompatibilities" )
237
+ . arg ( "--package" )
238
+
239
+ . with_stdout_data (
240
+ "\
241
+ ...
242
+ The package `second-dep v0.0.2` currently triggers the following future incompatibility lints:
243
+ > [WARNING] unused variable: `x`
244
+ ...
245
+ " ,
246
+ )
200
247
. with_stdout_does_not_contain ( "[..]first-dep-0.0.1/src[..]" )
201
248
. run ( ) ;
202
249
}
@@ -225,8 +272,13 @@ fn test_multi_crate() {
225
272
let id: String = id. chars ( ) . take_while ( |c| * c != '`' ) . collect ( ) ;
226
273
227
274
p. cargo ( & format ! ( "report future-incompatibilities --id {}" , id) )
228
- . with_stdout_contains ( "The package `first-dep v0.0.1` currently triggers the following future incompatibility lints:" )
229
- . with_stdout_contains ( "The package `second-dep v0.0.2` currently triggers the following future incompatibility lints:" )
275
+ . with_stdout_data ( str![ [ r#"
276
+ ...
277
+ The package `first-dep v0.0.1` currently triggers the following future incompatibility lints:
278
+ ...
279
+ The package `second-dep v0.0.2` currently triggers the following future incompatibility lints:
280
+ ...
281
+ "# ] ] )
230
282
. run ( ) ;
231
283
232
284
// Test without --id, and also the full output of the report.
@@ -262,6 +314,7 @@ fn test_multi_crate() {
262
314
assert_eq ! ( lines. next( ) , None ) ;
263
315
}
264
316
317
+ #[ allow( deprecated) ]
265
318
#[ cargo_test(
266
319
nightly,
267
320
reason = "-Zfuture-incompat-test requires nightly (permanently)"
@@ -293,7 +346,10 @@ fn bad_ids() {
293
346
294
347
p. cargo ( "report future-incompatibilities --id 1" )
295
348
. with_status ( 101 )
296
- . with_stderr ( "error: no reports are currently available" )
349
+ . with_stderr_data ( str![ [ r#"
350
+ [ERROR] no reports are currently available
351
+
352
+ "# ] ] )
297
353
. run ( ) ;
298
354
299
355
p. cargo ( "check" )
@@ -303,17 +359,18 @@ fn bad_ids() {
303
359
304
360
p. cargo ( "report future-incompatibilities --id foo" )
305
361
. with_status ( 1 )
306
- . with_stderr ( "error: Invalid value: could not parse `foo` as a number" )
362
+ . with_stderr_data ( str![
363
+ "[ERROR] Invalid value: could not parse `foo` as a number"
364
+ ] )
307
365
. run ( ) ;
308
366
309
367
p. cargo ( "report future-incompatibilities --id 7" )
310
368
. with_status ( 101 )
311
- . with_stderr (
312
- "\
313
- error: could not find report with ID 7
369
+ . with_stderr_data ( str![ [ r#"
370
+ [ERROR] could not find report with ID 7
314
371
Available IDs are: 1
315
- " ,
316
- )
372
+
373
+ "# ] ] )
317
374
. run ( ) ;
318
375
}
319
376
@@ -373,21 +430,29 @@ fn suggestions_for_updates() {
373
430
// in a long while?).
374
431
p. cargo ( "update without_updates" ) . run ( ) ;
375
432
376
- let update_message = "\
433
+ p. cargo ( "check --future-incompat-report" )
434
+ . masquerade_as_nightly_cargo ( & [ "future-incompat-test" ] )
435
+ . env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
436
+ . with_stderr_data ( str![ [ r#"
437
+ ...
377
438
- Some affected dependencies have newer versions available.
378
439
You may want to consider updating them to a newer version to see if the issue has been fixed.
379
440
380
441
big_update v1.0.0 has the following newer versions available: 2.0.0
381
442
with_updates v1.0.0 has the following newer versions available: 1.0.1, 1.0.2, 3.0.1
382
- " ;
383
-
384
- p. cargo ( "check --future-incompat-report" )
385
- . masquerade_as_nightly_cargo ( & [ "future-incompat-test" ] )
386
- . env ( "RUSTFLAGS" , "-Zfuture-incompat-test" )
387
- . with_stderr_contains ( update_message)
443
+ ...
444
+ "# ] ] )
388
445
. run ( ) ;
389
446
390
447
p. cargo ( "report future-incompatibilities" )
391
- . with_stdout_contains ( update_message)
448
+ . with_stdout_data ( str![ [ r#"
449
+ ...
450
+ - Some affected dependencies have newer versions available.
451
+ You may want to consider updating them to a newer version to see if the issue has been fixed.
452
+
453
+ big_update v1.0.0 has the following newer versions available: 2.0.0
454
+ with_updates v1.0.0 has the following newer versions available: 1.0.1, 1.0.2, 3.0.1
455
+ ...
456
+ "# ] ] )
392
457
. run ( )
393
458
}
0 commit comments