@@ -38,7 +38,8 @@ See [..]
38
38
[UPLOADING] foo v0.0.1 ([CWD])
39
39
" ,
40
40
reg = publish:: registry_path( ) . to_str( ) . unwrap( )
41
- ) ) . run ( ) ;
41
+ ) )
42
+ . run ( ) ;
42
43
43
44
let mut f = File :: open ( & publish:: upload_path ( ) . join ( "api/v1/crates/new" ) ) . unwrap ( ) ;
44
45
// Skip the metadata payload and the size of the tarball
@@ -112,7 +113,8 @@ See [..]
112
113
[UPLOADING] foo v0.0.1 ([CWD])
113
114
" ,
114
115
reg = publish:: registry_path( ) . to_str( ) . unwrap( )
115
- ) ) . run ( ) ;
116
+ ) )
117
+ . run ( ) ;
116
118
117
119
let mut f = File :: open ( & publish:: upload_path ( ) . join ( "api/v1/crates/new" ) ) . unwrap ( ) ;
118
120
// Skip the metadata payload and the size of the tarball
@@ -188,7 +190,8 @@ See [..]
188
190
[UPLOADING] foo v0.0.1 ([CWD])
189
191
" ,
190
192
reg = publish:: registry_path( ) . to_str( ) . unwrap( )
191
- ) ) . run ( ) ;
193
+ ) )
194
+ . run ( ) ;
192
195
193
196
let mut f = File :: open ( & publish:: upload_path ( ) . join ( "api/v1/crates/new" ) ) . unwrap ( ) ;
194
197
// Skip the metadata payload and the size of the tarball
@@ -266,7 +269,8 @@ See [..]
266
269
[UPLOADING] foo v0.0.1 ([CWD])
267
270
" ,
268
271
reg = publish:: registry_path( ) . to_str( ) . unwrap( )
269
- ) ) . run ( ) ;
272
+ ) )
273
+ . run ( ) ;
270
274
271
275
let mut f = File :: open ( & publish:: upload_path ( ) . join ( "api/v1/crates/new" ) ) . unwrap ( ) ;
272
276
// Skip the metadata payload and the size of the tarball
@@ -335,7 +339,8 @@ specify a crates.io version as a dependency or pull it into this \
335
339
repository and specify it with a path and version\n \
336
340
(crate `foo` has repository path `git://path/to/nowhere`)\
337
341
",
338
- ) . run ( ) ;
342
+ )
343
+ . run ( ) ;
339
344
}
340
345
341
346
#[ test]
@@ -371,7 +376,8 @@ fn path_dependency_no_version() {
371
376
[ERROR] all path dependencies must have a version specified when publishing.
372
377
dependency `bar` does not specify a version
373
378
" ,
374
- ) . run ( ) ;
379
+ )
380
+ . run ( ) ;
375
381
}
376
382
377
383
#[ test]
@@ -402,7 +408,8 @@ fn unpublishable_crate() {
402
408
[ERROR] some crates cannot be published.
403
409
`foo` is marked as unpublishable
404
410
" ,
405
- ) . run ( ) ;
411
+ )
412
+ . run ( ) ;
406
413
}
407
414
408
415
#[ test]
441
448
442
449
to proceed despite this, pass the `--allow-dirty` flag
443
450
" ,
444
- ) . run ( ) ;
451
+ )
452
+ . run ( ) ;
445
453
}
446
454
447
455
#[ test]
@@ -555,7 +563,8 @@ fn ignore_when_crate_ignored() {
555
563
homepage = "foo"
556
564
repository = "foo"
557
565
"# ,
558
- ) . nocommit_file ( "bar/src/main.rs" , "fn main() {}" ) ;
566
+ )
567
+ . nocommit_file ( "bar/src/main.rs" , "fn main() {}" ) ;
559
568
p. cargo ( "publish" )
560
569
. cwd ( p. root ( ) . join ( "bar" ) )
561
570
. arg ( "--index" )
@@ -583,7 +592,8 @@ fn new_crate_rejected() {
583
592
homepage = "foo"
584
593
repository = "foo"
585
594
"# ,
586
- ) . nocommit_file ( "src/main.rs" , "fn main() {}" ) ;
595
+ )
596
+ . nocommit_file ( "src/main.rs" , "fn main() {}" ) ;
587
597
p. cargo ( "publish --index" )
588
598
. arg ( publish:: registry ( ) . to_string ( ) )
589
599
. with_status ( 101 )
@@ -623,7 +633,8 @@ See [..]
623
633
[UPLOADING] foo v0.0.1 ([CWD])
624
634
[WARNING] aborting upload due to dry run
625
635
" ,
626
- ) . run ( ) ;
636
+ )
637
+ . run ( ) ;
627
638
628
639
// Ensure the API request wasn't actually made
629
640
assert ! ( !publish:: upload_path( ) . join( "api/v1/crates/new" ) . exists( ) ) ;
@@ -666,7 +677,8 @@ Caused by:
666
677
667
678
consider adding `cargo-features = [\" alternative-registries\" ]` to the manifest
668
679
" ,
669
- ) . run ( ) ;
680
+ )
681
+ . run ( ) ;
670
682
}
671
683
672
684
#[ test]
@@ -704,7 +716,8 @@ fn registry_not_in_publish_list() {
704
716
[ERROR] some crates cannot be published.
705
717
`foo` is marked as unpublishable
706
718
" ,
707
- ) . run ( ) ;
719
+ )
720
+ . run ( ) ;
708
721
}
709
722
710
723
#[ test]
@@ -737,7 +750,8 @@ fn publish_empty_list() {
737
750
[ERROR] some crates cannot be published.
738
751
`foo` is marked as unpublishable
739
752
" ,
740
- ) . run ( ) ;
753
+ )
754
+ . run ( ) ;
741
755
}
742
756
743
757
#[ test]
@@ -801,7 +815,8 @@ fn block_publish_no_registry() {
801
815
[ERROR] some crates cannot be published.
802
816
`foo` is marked as unpublishable
803
817
" ,
804
- ) . run ( ) ;
818
+ )
819
+ . run ( ) ;
805
820
}
806
821
807
822
#[ test]
@@ -871,3 +886,38 @@ fn publish_with_all_features() {
871
886
. with_stderr_contains ( "[UPLOADING] foo v0.0.1 ([CWD])" )
872
887
. run ( ) ;
873
888
}
889
+
890
+ #[ test]
891
+ fn publish_with_no_default_features ( ) {
892
+ publish:: setup ( ) ;
893
+
894
+ let p = project ( )
895
+ . file (
896
+ "Cargo.toml" ,
897
+ r#"
898
+ [project]
899
+ name = "foo"
900
+ version = "0.0.1"
901
+ authors = []
902
+ license = "MIT"
903
+ description = "foo"
904
+
905
+ [features]
906
+ default = ["required"]
907
+ required = []
908
+ "# ,
909
+ )
910
+ . file (
911
+ "src/main.rs" ,
912
+ "#[cfg(not(feature = \" required\" ))]
913
+ compile_error!(\" This crate requires `required` feature!\" );
914
+ fn main() {}" ,
915
+ )
916
+ . build ( ) ;
917
+
918
+ p. cargo ( "publish --no-default-features --index" )
919
+ . arg ( publish:: registry ( ) . to_string ( ) )
920
+ . with_stderr_contains ( "error: This crate requires `required` feature!" )
921
+ . with_status ( 101 )
922
+ . run ( ) ;
923
+ }
0 commit comments