1
1
//! Tests for directory sources.
2
2
3
- #![ allow( deprecated) ]
4
-
5
3
use std:: collections:: HashMap ;
6
4
use std:: fs;
7
5
use std:: str;
@@ -12,6 +10,7 @@ use cargo_test_support::cargo_process;
12
10
use cargo_test_support:: git;
13
11
use cargo_test_support:: paths;
14
12
use cargo_test_support:: registry:: { cksum, Package } ;
13
+ use cargo_test_support:: str;
15
14
use cargo_test_support:: { basic_manifest, project, t, ProjectBuilder } ;
16
15
17
16
fn setup ( ) {
@@ -107,14 +106,13 @@ fn simple() {
107
106
. build ( ) ;
108
107
109
108
p. cargo ( "check" )
110
- . with_stderr (
111
- "\
109
+ . with_stderr_data ( str![ [ r#"
112
110
[LOCKING] 2 packages to latest compatible versions
113
111
[CHECKING] bar v0.1.0
114
- [CHECKING] foo v0.1.0 ([CWD] )
115
- [FINISHED] [..]
116
- " ,
117
- )
112
+ [CHECKING] foo v0.1.0 ([ROOT]/foo )
113
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
114
+
115
+ "# ] ] )
118
116
. run ( ) ;
119
117
}
120
118
@@ -147,18 +145,17 @@ fn simple_install() {
147
145
. build ( ) ;
148
146
149
147
cargo_process ( "install bar" )
150
- . with_stderr (
151
- "\
148
+ . with_stderr_data ( str![ [ r#"
152
149
[INSTALLING] bar v0.1.0
153
150
[LOCKING] 2 packages to latest compatible versions
154
151
[COMPILING] foo v0.0.1
155
152
[COMPILING] bar v0.1.0
156
- [FINISHED] `release` profile [optimized] target(s) in [.. ]s
153
+ [FINISHED] `release` profile [optimized] target(s) in [ELAPSED ]s
157
154
[INSTALLING] [..]bar[..]
158
155
[INSTALLED] package `bar v0.1.0` (executable `bar[EXE]`)
159
- [WARNING] be sure to add `[..] ` to your PATH to be able to run the installed binaries
160
- " ,
161
- )
156
+ [WARNING] be sure to add `[ROOT]/home/.cargo/bin ` to your PATH to be able to run the installed binaries
157
+
158
+ "# ] ] )
162
159
. run ( ) ;
163
160
}
164
161
@@ -193,20 +190,19 @@ fn simple_install_fail() {
193
190
194
191
cargo_process ( "install bar" )
195
192
. with_status ( 101 )
196
- . with_stderr (
197
- " Installing bar v0.1.0
198
- error: failed to compile `bar v0.1.0`, intermediate artifacts can be found at `[..]`.
199
- To reuse those artifacts with a future compilation, set the environment variable \
200
- `CARGO_TARGET_DIR` to that path.
193
+ . with_stderr_data ( str![ [ r#"
194
+ [INSTALLING] bar v0.1.0
195
+ [ERROR] failed to compile `bar v0.1.0`, intermediate artifacts can be found at `[..]`.
196
+ To reuse those artifacts with a future compilation, set the environment variable `CARGO_TARGET_DIR` to that path.
201
197
202
198
Caused by:
203
199
no matching package found
204
200
searched package name: `baz`
205
201
perhaps you meant: bar or foo
206
202
location searched: registry `crates-io`
207
203
required by package `bar v0.1.0`
208
- " ,
209
- )
204
+
205
+ "# ] ] )
210
206
. run ( ) ;
211
207
}
212
208
@@ -243,18 +239,17 @@ fn install_without_feature_dep() {
243
239
. build ( ) ;
244
240
245
241
cargo_process ( "install bar" )
246
- . with_stderr (
247
- "\
242
+ . with_stderr_data ( str![ [ r#"
248
243
[INSTALLING] bar v0.1.0
249
244
[LOCKING] 2 packages to latest compatible versions
250
245
[COMPILING] foo v0.0.1
251
246
[COMPILING] bar v0.1.0
252
- [FINISHED] `release` profile [optimized] target(s) in [.. ]s
247
+ [FINISHED] `release` profile [optimized] target(s) in [ELAPSED ]s
253
248
[INSTALLING] [..]bar[..]
254
249
[INSTALLED] package `bar v0.1.0` (executable `bar[EXE]`)
255
- [WARNING] be sure to add `[..] ` to your PATH to be able to run the installed binaries
256
- " ,
257
- )
250
+ [WARNING] be sure to add `[ROOT]/home/.cargo/bin ` to your PATH to be able to run the installed binaries
251
+
252
+ "# ] ] )
258
253
. run ( ) ;
259
254
}
260
255
@@ -286,13 +281,12 @@ fn not_there() {
286
281
287
282
p. cargo ( "check" )
288
283
. with_status ( 101 )
289
- . with_stderr (
290
- "\
291
- error: no matching package named `bar` found
292
- location searched: [..]
293
- required by package `foo v0.1.0 ([..])`
294
- " ,
295
- )
284
+ . with_stderr_data ( str![ [ r#"
285
+ [ERROR] no matching package named `bar` found
286
+ location searched: registry `crates-io`
287
+ required by package `foo v0.1.0 ([ROOT]/foo)`
288
+
289
+ "# ] ] )
296
290
. run ( ) ;
297
291
}
298
292
@@ -333,15 +327,14 @@ fn multiple() {
333
327
. build ( ) ;
334
328
335
329
p. cargo ( "check" )
336
- . with_stderr (
337
- "\
330
+ . with_stderr_data ( str![ [ r#"
338
331
[LOCKING] 2 packages to latest compatible versions
339
332
[ADDING] bar v0.1.0 (latest: v0.2.0)
340
333
[CHECKING] bar v0.1.0
341
- [CHECKING] foo v0.1.0 ([CWD] )
342
- [FINISHED] [..]
343
- " ,
344
- )
334
+ [CHECKING] foo v0.1.0 ([ROOT]/foo )
335
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
336
+
337
+ "# ] ] )
345
338
. run ( ) ;
346
339
}
347
340
@@ -372,17 +365,16 @@ fn crates_io_then_directory() {
372
365
. publish ( ) ;
373
366
374
367
p. cargo ( "check" )
375
- . with_stderr (
376
- "\
377
- [UPDATING] `[..]` index
368
+ . with_stderr_data ( str![ [ r#"
369
+ [UPDATING] `dummy-registry` index
378
370
[LOCKING] 2 packages to latest compatible versions
379
371
[DOWNLOADING] crates ...
380
- [DOWNLOADED] bar v0.1.0 ([..] )
372
+ [DOWNLOADED] bar v0.1.0 (registry `dummy-registry` )
381
373
[CHECKING] bar v0.1.0
382
- [CHECKING] foo v0.1.0 ([CWD] )
383
- [FINISHED] [..]
384
- " ,
385
- )
374
+ [CHECKING] foo v0.1.0 ([ROOT]/foo )
375
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
376
+
377
+ "# ] ] )
386
378
. run ( ) ;
387
379
388
380
setup ( ) ;
@@ -394,13 +386,12 @@ fn crates_io_then_directory() {
394
386
v. build ( ) ;
395
387
396
388
p. cargo ( "check" )
397
- . with_stderr (
398
- "\
389
+ . with_stderr_data ( str![ [ r#"
399
390
[CHECKING] bar v0.1.0
400
- [CHECKING] foo v0.1.0 ([CWD] )
401
- [FINISHED] [..]
402
- " ,
403
- )
391
+ [CHECKING] foo v0.1.0 ([ROOT]/foo )
392
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
393
+
394
+ "# ] ] )
404
395
. run ( ) ;
405
396
}
406
397
@@ -435,9 +426,8 @@ fn crates_io_then_bad_checksum() {
435
426
436
427
p. cargo ( "check" )
437
428
. with_status ( 101 )
438
- . with_stderr (
439
- "\
440
- error: checksum for `bar v0.1.0` changed between lock files
429
+ . with_stderr_data ( str![ [ r#"
430
+ [ERROR] checksum for `bar v0.1.0` changed between lock files
441
431
442
432
this could be indicative of a few possible errors:
443
433
@@ -447,8 +437,8 @@ this could be indicative of a few possible errors:
447
437
448
438
unable to verify that `bar v0.1.0` is the same as when the lockfile was generated
449
439
450
- " ,
451
- )
440
+
441
+ "# ] ] )
452
442
. run ( ) ;
453
443
}
454
444
@@ -485,18 +475,15 @@ fn bad_file_checksum() {
485
475
486
476
p. cargo ( "check" )
487
477
. with_status ( 101 )
488
- . with_stderr (
489
- "\
478
+ . with_stderr_data ( str![ [ r#"
490
479
[LOCKING] 2 packages to latest compatible versions
491
- error: the listed checksum of `[..] lib.rs` has changed:
480
+ [ERROR] the listed checksum of `[ROOT]/index/bar/src/ lib.rs` has changed:
492
481
expected: [..]
493
482
actual: [..]
494
483
495
- directory sources are not intended to be edited, if modifications are \
496
- required then it is recommended that `[patch]` is used with a forked copy of \
497
- the source
498
- " ,
499
- )
484
+ directory sources are not intended to be edited, if modifications are required then it is recommended that `[patch]` is used with a forked copy of the source
485
+
486
+ "# ] ] )
500
487
. run ( ) ;
501
488
}
502
489
@@ -622,13 +609,12 @@ fn git_lock_file_doesnt_change() {
622
609
) ) ;
623
610
624
611
p. cargo ( "check" )
625
- . with_stderr (
626
- "\
627
- [CHECKING] [..]
628
- [CHECKING] [..]
629
- [FINISHED] [..]
630
- " ,
631
- )
612
+ . with_stderr_data ( str![ [ r#"
613
+ [CHECKING] git v0.5.0 ([..])
614
+ [CHECKING] foo v0.0.1 ([ROOT]/foo)
615
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
616
+
617
+ "# ] ] )
632
618
. run ( ) ;
633
619
634
620
let lock2 = p. read_lockfile ( ) ;
@@ -676,9 +662,8 @@ fn git_override_requires_lockfile() {
676
662
677
663
p. cargo ( "check" )
678
664
. with_status ( 101 )
679
- . with_stderr (
680
- "\
681
- [ERROR] failed to get `git` as a dependency of package `foo v0.0.1 ([..])`
665
+ . with_stderr_data ( str![ [ r#"
666
+ [ERROR] failed to get `git` as a dependency of package `foo v0.0.1 ([ROOT]/foo)`
682
667
683
668
Caused by:
684
669
failed to load source for dependency `git`
@@ -692,8 +677,8 @@ Caused by:
692
677
693
678
remove the source replacement configuration, generate a lock file, and then
694
679
restore the source replacement configuration to continue the build
695
- " ,
696
- )
680
+
681
+ "# ] ] )
697
682
. run ( ) ;
698
683
}
699
684
@@ -748,13 +733,12 @@ fn workspace_different_locations() {
748
733
p. cargo ( "check" ) . cwd ( "foo" ) . run ( ) ;
749
734
p. cargo ( "check" )
750
735
. cwd ( "bar" )
751
- . with_stderr (
752
- "\
736
+ . with_stderr_data ( str![ [ r#"
753
737
[LOCKING] 2 packages to latest compatible versions
754
- [CHECKING] bar [..]
755
- [FINISHED] [..]
756
- " ,
757
- )
738
+ [CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
739
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
740
+
741
+ "# ] ] )
758
742
. run ( ) ;
759
743
}
760
744
@@ -784,21 +768,19 @@ fn version_missing() {
784
768
. build ( ) ;
785
769
786
770
cargo_process ( "install bar" )
787
- . with_stderr (
788
- "\
771
+ . with_stderr_data ( str![ [ r#"
789
772
[INSTALLING] bar v0.1.0
790
- error: failed to compile [..], intermediate artifacts can be found at `[..]`.
791
- To reuse those artifacts with a future compilation, set the environment variable \
792
- `CARGO_TARGET_DIR` to that path.
773
+ [ERROR] failed to compile [..], intermediate artifacts can be found at `[..]`.
774
+ To reuse those artifacts with a future compilation, set the environment variable `CARGO_TARGET_DIR` to that path.
793
775
794
776
Caused by:
795
- failed to select a version for the requirement `foo = \ " ^2\ " `
777
+ failed to select a version for the requirement `foo = "^2"`
796
778
candidate versions found which didn't match: 0.0.1
797
779
location searched: directory source `[..] (which is replacing registry `[..]`)
798
780
required by package `bar v0.1.0`
799
781
perhaps a crate was updated and forgotten to be re-vendored?
800
- " ,
801
- )
782
+
783
+ "# ] ] )
802
784
. with_status ( 101 )
803
785
. run ( ) ;
804
786
}
0 commit comments