1
- use hamcrest:: assert_that;
2
1
use cargotest:: support:: registry:: Package ;
3
2
use cargotest:: support:: { basic_bin_manifest, basic_lib_manifest, execs, main_file, project} ;
3
+ use hamcrest:: assert_that;
4
4
5
5
#[ test]
6
6
fn cargo_metadata_simple ( ) {
@@ -37,7 +37,8 @@ fn cargo_metadata_simple() {
37
37
}
38
38
],
39
39
"features": {},
40
- "manifest_path": "[..]Cargo.toml"
40
+ "manifest_path": "[..]Cargo.toml",
41
+ "metadata": null
41
42
}
42
43
],
43
44
"workspace_members": ["foo 0.5.0 (path+file:[..]foo)"],
@@ -122,7 +123,8 @@ crate-type = ["lib", "staticlib"]
122
123
}
123
124
],
124
125
"features": {},
125
- "manifest_path": "[..]Cargo.toml"
126
+ "manifest_path": "[..]Cargo.toml",
127
+ "metadata": null
126
128
}
127
129
],
128
130
"workspace_members": ["foo 0.5.0 (path+file:[..]foo)"],
@@ -197,7 +199,8 @@ optional_feat = []
197
199
"default_feat": [],
198
200
"optional_feat": []
199
201
},
200
- "manifest_path": "[..]Cargo.toml"
202
+ "manifest_path": "[..]Cargo.toml",
203
+ "metadata": null
201
204
}
202
205
],
203
206
"workspace_members": ["foo 0.5.0 (path+file:[..]foo)"],
@@ -278,7 +281,8 @@ fn cargo_metadata_with_deps_and_version() {
278
281
"src_path": "[..]lib.rs"
279
282
}
280
283
],
281
- "version": "0.0.1"
284
+ "version": "0.0.1",
285
+ "metadata": null
282
286
},
283
287
{
284
288
"dependencies": [
@@ -314,7 +318,8 @@ fn cargo_metadata_with_deps_and_version() {
314
318
"src_path": "[..]lib.rs"
315
319
}
316
320
],
317
- "version": "0.0.1"
321
+ "version": "0.0.1",
322
+ "metadata": null
318
323
},
319
324
{
320
325
"dependencies": [
@@ -350,7 +355,8 @@ fn cargo_metadata_with_deps_and_version() {
350
355
"src_path": "[..]foo.rs"
351
356
}
352
357
],
353
- "version": "0.5.0"
358
+ "version": "0.5.0",
359
+ "metadata": null
354
360
}
355
361
],
356
362
"workspace_members": ["foo 0.5.0 (path+file:[..]foo)"],
@@ -434,7 +440,8 @@ name = "ex"
434
440
}
435
441
],
436
442
"features": {},
437
- "manifest_path": "[..]Cargo.toml"
443
+ "manifest_path": "[..]Cargo.toml",
444
+ "metadata": null
438
445
}
439
446
],
440
447
"workspace_members": [
@@ -507,7 +514,8 @@ crate-type = ["rlib", "dylib"]
507
514
}
508
515
],
509
516
"features": {},
510
- "manifest_path": "[..]Cargo.toml"
517
+ "manifest_path": "[..]Cargo.toml",
518
+ "metadata": null
511
519
}
512
520
],
513
521
"workspace_members": [
@@ -571,7 +579,8 @@ fn workspace_metadata() {
571
579
}
572
580
],
573
581
"features": {},
574
- "manifest_path": "[..]bar[/]Cargo.toml"
582
+ "manifest_path": "[..]bar[/]Cargo.toml",
583
+ "metadata": null
575
584
},
576
585
{
577
586
"name": "baz",
@@ -591,7 +600,8 @@ fn workspace_metadata() {
591
600
}
592
601
],
593
602
"features": {},
594
- "manifest_path": "[..]baz[/]Cargo.toml"
603
+ "manifest_path": "[..]baz[/]Cargo.toml",
604
+ "metadata": null
595
605
}
596
606
],
597
607
"workspace_members": ["baz 0.5.0 (path+file:[..]baz)", "bar 0.5.0 (path+file:[..]bar)"],
@@ -658,7 +668,8 @@ fn workspace_metadata_no_deps() {
658
668
}
659
669
],
660
670
"features": {},
661
- "manifest_path": "[..]bar[/]Cargo.toml"
671
+ "manifest_path": "[..]bar[/]Cargo.toml",
672
+ "metadata": null
662
673
},
663
674
{
664
675
"name": "baz",
@@ -678,7 +689,8 @@ fn workspace_metadata_no_deps() {
678
689
}
679
690
],
680
691
"features": {},
681
- "manifest_path": "[..]baz[/]Cargo.toml"
692
+ "manifest_path": "[..]baz[/]Cargo.toml",
693
+ "metadata": null
682
694
}
683
695
],
684
696
"workspace_members": ["baz 0.5.0 (path+file:[..]baz)", "bar 0.5.0 (path+file:[..]bar)"],
@@ -707,7 +719,7 @@ Caused by:
707
719
)
708
720
}
709
721
710
- const MANIFEST_OUTPUT : & ' static str = r#"
722
+ const MANIFEST_OUTPUT : & str = r#"
711
723
{
712
724
"packages": [{
713
725
"name":"foo",
@@ -725,7 +737,8 @@ const MANIFEST_OUTPUT: &'static str = r#"
725
737
"src_path":"[..][/]foo[/]src[/]foo.rs"
726
738
}],
727
739
"features":{},
728
- "manifest_path":"[..]Cargo.toml"
740
+ "manifest_path":"[..]Cargo.toml",
741
+ "metadata": null
729
742
}],
730
743
"workspace_members": [ "foo 0.5.0 (path+file:[..]foo)" ],
731
744
"resolve": null,
@@ -867,3 +880,63 @@ fn multiple_features() {
867
880
execs ( ) . with_status ( 0 ) ,
868
881
) ;
869
882
}
883
+
884
+ #[ test]
885
+ fn package_metadata ( ) {
886
+ let p = project ( "foo" )
887
+ . file (
888
+ "Cargo.toml" ,
889
+ r#"
890
+ [package]
891
+ name = "foo"
892
+ version = "0.1.0"
893
+ authors = []
894
+
895
+ [package.metadata.bar]
896
+ baz = "quux"
897
+ "# ,
898
+ )
899
+ . file ( "src/lib.rs" , "" )
900
+ . build ( ) ;
901
+
902
+ assert_that (
903
+ p. cargo ( "metadata" ) . arg ( "--no-deps" ) ,
904
+ execs ( ) . with_json (
905
+ r#"
906
+ {
907
+ "packages": [
908
+ {
909
+ "name": "foo",
910
+ "version": "0.1.0",
911
+ "id": "foo[..]",
912
+ "source": null,
913
+ "dependencies": [],
914
+ "license": null,
915
+ "license_file": null,
916
+ "description": null,
917
+ "targets": [
918
+ {
919
+ "kind": [ "lib" ],
920
+ "crate_types": [ "lib" ],
921
+ "name": "foo",
922
+ "src_path": "[..]foo[/]src[/]lib.rs"
923
+ }
924
+ ],
925
+ "features": {},
926
+ "manifest_path": "[..]foo[/]Cargo.toml",
927
+ "metadata": {
928
+ "bar": {
929
+ "baz": "quux"
930
+ }
931
+ }
932
+ }
933
+ ],
934
+ "workspace_members": ["foo[..]"],
935
+ "resolve": null,
936
+ "target_directory": "[..]foo[/]target",
937
+ "version": 1,
938
+ "workspace_root": "[..][/]foo"
939
+ }"# ,
940
+ ) ,
941
+ ) ;
942
+ }
0 commit comments