1
1
//! Tests for the `cargo read-manifest` command.
2
2
3
- #![ allow( deprecated) ]
4
-
5
- use cargo_test_support:: { basic_bin_manifest, main_file, project} ;
6
-
7
- fn manifest_output ( readme_value : & str ) -> String {
8
- format ! (
9
- r#"
10
- {{
11
- "authors": [
12
-
13
- ],
14
- "categories": [],
15
- "default_run": null,
16
- "name":"foo",
17
- "readme": {},
18
- "homepage": null,
19
- "documentation": null,
20
- "repository": null,
21
- "rust_version": null,
22
- "version":"0.5.0",
23
- "id":"path+file://[..]/foo#0.5.0",
24
- "keywords": [],
25
- "license": null,
26
- "license_file": null,
27
- "links": null,
28
- "description": null,
29
- "edition": "2015",
30
- "source":null,
31
- "dependencies":[],
32
- "targets":[{{
33
- "kind":["bin"],
34
- "crate_types":["bin"],
35
- "doc": true,
36
- "doctest": false,
37
- "test": true,
38
- "edition": "2015",
39
- "name":"foo",
40
- "src_path":"[..]/foo/src/foo.rs"
41
- }}],
42
- "features":{{}},
43
- "manifest_path":"[..]Cargo.toml",
44
- "metadata": null,
45
- "publish": null
46
- }}"# ,
47
- readme_value
48
- )
49
- }
50
-
51
- fn manifest_output_no_readme ( ) -> String {
52
- manifest_output ( "null" )
53
- }
3
+ use cargo_test_support:: prelude:: * ;
4
+ use cargo_test_support:: { basic_bin_manifest, main_file, project, str} ;
54
5
55
6
pub fn basic_bin_manifest_with_readme ( name : & str , readme_filename : & str ) -> String {
56
7
format ! (
@@ -79,7 +30,15 @@ fn cargo_read_manifest_path_to_cargo_toml_relative() {
79
30
80
31
p. cargo ( "read-manifest --manifest-path foo/Cargo.toml" )
81
32
. cwd ( p. root ( ) . parent ( ) . unwrap ( ) )
82
- . with_json ( & manifest_output_no_readme ( ) )
33
+ . with_stdout_data (
34
+ str![ [ r#"
35
+ {
36
+ "readme": null,
37
+ "...": "{...}"
38
+ }
39
+ "# ] ]
40
+ . json ( ) ,
41
+ )
83
42
. run ( ) ;
84
43
}
85
44
@@ -93,7 +52,15 @@ fn cargo_read_manifest_path_to_cargo_toml_absolute() {
93
52
p. cargo ( "read-manifest --manifest-path" )
94
53
. arg ( p. root ( ) . join ( "Cargo.toml" ) )
95
54
. cwd ( p. root ( ) . parent ( ) . unwrap ( ) )
96
- . with_json ( & manifest_output_no_readme ( ) )
55
+ . with_stdout_data (
56
+ str![ [ r#"
57
+ {
58
+ "readme": null,
59
+ "...": "{...}"
60
+ }
61
+ "# ] ]
62
+ . json ( ) ,
63
+ )
97
64
. run ( ) ;
98
65
}
99
66
@@ -107,10 +74,10 @@ fn cargo_read_manifest_path_to_cargo_toml_parent_relative() {
107
74
p. cargo ( "read-manifest --manifest-path foo" )
108
75
. cwd ( p. root ( ) . parent ( ) . unwrap ( ) )
109
76
. with_status ( 101 )
110
- . with_stderr (
111
- " [ERROR] the manifest-path must be \
112
- a path to a Cargo.toml file" ,
113
- )
77
+ . with_stderr_data ( str! [ [ r#"
78
+ [ERROR] the manifest-path must be a path to a Cargo.toml file
79
+
80
+ "# ] ] )
114
81
. run ( ) ;
115
82
}
116
83
@@ -125,10 +92,10 @@ fn cargo_read_manifest_path_to_cargo_toml_parent_absolute() {
125
92
. arg ( p. root ( ) )
126
93
. cwd ( p. root ( ) . parent ( ) . unwrap ( ) )
127
94
. with_status ( 101 )
128
- . with_stderr (
129
- " [ERROR] the manifest-path must be \
130
- a path to a Cargo.toml file" ,
131
- )
95
+ . with_stderr_data ( str! [ [ r#"
96
+ [ERROR] the manifest-path must be a path to a Cargo.toml file
97
+
98
+ "# ] ] )
132
99
. run ( ) ;
133
100
}
134
101
@@ -140,7 +107,15 @@ fn cargo_read_manifest_cwd() {
140
107
. build ( ) ;
141
108
142
109
p. cargo ( "read-manifest" )
143
- . with_json ( & manifest_output_no_readme ( ) )
110
+ . with_stdout_data (
111
+ str![ [ r#"
112
+ {
113
+ "readme": null,
114
+ "...": "{...}"
115
+ }
116
+ "# ] ]
117
+ . json ( ) ,
118
+ )
144
119
. run ( ) ;
145
120
}
146
121
@@ -156,25 +131,62 @@ fn cargo_read_manifest_with_specified_readme() {
156
131
. build ( ) ;
157
132
158
133
p. cargo ( "read-manifest" )
159
- . with_json ( & manifest_output ( & format ! ( r#""{}""# , "SomeReadme.txt" ) ) )
134
+ . with_stdout_data (
135
+ str![ [ r#"
136
+ {
137
+ "readme": "SomeReadme.txt",
138
+ "...": "{...}"
139
+ }
140
+ "# ] ]
141
+ . json ( ) ,
142
+ )
160
143
. run ( ) ;
161
144
}
162
145
163
146
#[ cargo_test]
164
147
fn cargo_read_manifest_default_readme ( ) {
165
- let readme_filenames = [ "README.md" , "README.txt" , "README" ] ;
166
-
167
- for readme in readme_filenames. iter ( ) {
148
+ let assert_output = |readme, expected| {
168
149
let p = project ( )
169
150
. file ( "Cargo.toml" , & basic_bin_manifest ( "foo" ) )
170
151
. file ( readme, "Sample project" )
171
152
. file ( "src/foo.rs" , & main_file ( r#""i am foo""# , & [ ] ) )
172
153
. build ( ) ;
173
154
174
- p. cargo ( "read-manifest" )
175
- . with_json ( & manifest_output ( & format ! ( r#""{}""# , readme) ) )
176
- . run ( ) ;
177
- }
155
+ p. cargo ( "read-manifest" ) . with_stdout_data ( expected) . run ( ) ;
156
+ } ;
157
+
158
+ assert_output (
159
+ "README.md" ,
160
+ str![ [ r#"
161
+ {
162
+ "readme": "README.md",
163
+ "...": "{...}"
164
+ }
165
+ "# ] ]
166
+ . json ( ) ,
167
+ ) ;
168
+
169
+ assert_output (
170
+ "README.txt" ,
171
+ str![ [ r#"
172
+ {
173
+ "readme": "README.txt",
174
+ "...": "{...}"
175
+ }
176
+ "# ] ]
177
+ . json ( ) ,
178
+ ) ;
179
+
180
+ assert_output (
181
+ "README" ,
182
+ str![ [ r#"
183
+ {
184
+ "readme": "README",
185
+ "...": "{...}"
186
+ }
187
+ "# ] ]
188
+ . json ( ) ,
189
+ ) ;
178
190
}
179
191
180
192
#[ cargo_test]
@@ -189,7 +201,15 @@ fn cargo_read_manifest_suppress_default_readme() {
189
201
. build ( ) ;
190
202
191
203
p. cargo ( "read-manifest" )
192
- . with_json ( & manifest_output_no_readme ( ) )
204
+ . with_stdout_data (
205
+ str![ [ r#"
206
+ {
207
+ "readme": null,
208
+ "...": "{...}"
209
+ }
210
+ "# ] ]
211
+ . json ( ) ,
212
+ )
193
213
. run ( ) ;
194
214
}
195
215
@@ -203,6 +223,14 @@ fn cargo_read_manifest_defaults_readme_if_true() {
203
223
. build ( ) ;
204
224
205
225
p. cargo ( "read-manifest" )
206
- . with_json ( & manifest_output ( r#""README.md""# ) )
226
+ . with_stdout_data (
227
+ str![ [ r#"
228
+ {
229
+ "readme": "README.md",
230
+ "...": "{...}"
231
+ }
232
+ "# ] ]
233
+ . json ( ) ,
234
+ )
207
235
. run ( ) ;
208
236
}
0 commit comments