@@ -8,9 +8,36 @@ use hamcrest::assert_that;
8
8
9
9
#[ test]
10
10
fn oldest_lockfile_still_works ( ) {
11
+ let cargo_commands = vec ! [
12
+ "build" ,
13
+ "update"
14
+ ] ;
15
+ for cargo_command in cargo_commands {
16
+ oldest_lockfile_still_works_with_command ( cargo_command) ;
17
+ }
18
+ }
19
+
20
+ fn oldest_lockfile_still_works_with_command ( cargo_command : & str ) {
11
21
Package :: new ( "foo" , "0.1.0" ) . publish ( ) ;
12
22
13
- let lockfile = r#"
23
+ let expected_lockfile =
24
+ r#"[[package]]
25
+ name = "bar"
26
+ version = "0.0.1"
27
+ dependencies = [
28
+ "foo 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "foo"
33
+ version = "0.1.0"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+
36
+ [metadata]
37
+ "checksum foo 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "[..]"
38
+ "# ;
39
+
40
+ let old_lockfile = r#"
14
41
[root]
15
42
name = "bar"
16
43
version = "0.0.1"
@@ -35,14 +62,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
35
62
foo = "0.1.0"
36
63
"# )
37
64
. file ( "src/lib.rs" , "" )
38
- . file ( "Cargo.lock" , lockfile) ;
65
+ . file ( "Cargo.lock" , old_lockfile) ;
66
+
39
67
p. build ( ) ;
40
68
41
- assert_that ( p. cargo ( "build" ) ,
69
+ assert_that ( p. cargo ( cargo_command ) ,
42
70
execs ( ) . with_status ( 0 ) ) ;
43
71
44
72
let lock = p. read_lockfile ( ) ;
45
- assert ! ( lock. starts_with( lockfile. trim( ) ) ) ;
73
+ for ( l, r) in expected_lockfile. lines ( ) . zip ( lock. lines ( ) ) {
74
+ assert ! ( lines_match( l, r) , "Lines differ:\n {}\n \n {}" , l, r) ;
75
+ }
76
+
77
+ assert_eq ! ( lock. lines( ) . count( ) , expected_lockfile. lines( ) . count( ) ) ;
46
78
}
47
79
48
80
#[ test]
@@ -61,7 +93,7 @@ fn totally_wild_checksums_works() {
61
93
"# )
62
94
. file ( "src/lib.rs" , "" )
63
95
. file ( "Cargo.lock" , r#"
64
- [root ]
96
+ [[package] ]
65
97
name = "bar"
66
98
version = "0.0.1"
67
99
dependencies = [
@@ -85,7 +117,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
85
117
86
118
let lock = p. read_lockfile ( ) ;
87
119
assert ! ( lock. starts_with( r#"
88
- [root ]
120
+ [[package] ]
89
121
name = "bar"
90
122
version = "0.0.1"
91
123
dependencies = [
@@ -117,7 +149,7 @@ fn wrong_checksum_is_an_error() {
117
149
"# )
118
150
. file ( "src/lib.rs" , "" )
119
151
. file ( "Cargo.lock" , r#"
120
- [root ]
152
+ [[package] ]
121
153
name = "bar"
122
154
version = "0.0.1"
123
155
dependencies = [
@@ -170,7 +202,7 @@ fn unlisted_checksum_is_bad_if_we_calculate() {
170
202
"# )
171
203
. file ( "src/lib.rs" , "" )
172
204
. file ( "Cargo.lock" , r#"
173
- [root ]
205
+ [[package] ]
174
206
name = "bar"
175
207
version = "0.0.1"
176
208
dependencies = [
@@ -230,7 +262,7 @@ fn listed_checksum_bad_if_we_cannot_compute() {
230
262
"# , git. url( ) ) )
231
263
. file ( "src/lib.rs" , "" )
232
264
. file ( "Cargo.lock" , & format ! ( r#"
233
- [root ]
265
+ [[package] ]
234
266
name = "bar"
235
267
version = "0.0.1"
236
268
dependencies = [
@@ -287,7 +319,7 @@ fn current_lockfile_format() {
287
319
let actual = p. read_lockfile ( ) ;
288
320
289
321
let expected = "\
290
- [root ]
322
+ [[package] ]
291
323
name = \" bar\"
292
324
version = \" 0.0.1\"
293
325
dependencies = [
0 commit comments