@@ -16,14 +16,14 @@ mod test {
16
16
#[ tokio:: test]
17
17
#[ serial]
18
18
async fn test_basic ( ) {
19
- test_with_features ( & HashSet :: new ( ) ) . await . unwrap ( ) ;
19
+ test_with_features ( HashSet :: new ( ) ) . await . unwrap ( ) ;
20
20
}
21
21
22
22
#[ tokio:: test]
23
23
#[ serial]
24
24
#[ cfg( feature = "kerberos" ) ]
25
25
async fn test_security_kerberos ( ) {
26
- test_with_features ( & HashSet :: from ( [ DfsFeatures :: SECURITY ] ) )
26
+ test_with_features ( HashSet :: from ( [ DfsFeatures :: SECURITY ] ) )
27
27
. await
28
28
. unwrap ( ) ;
29
29
}
@@ -32,7 +32,7 @@ mod test {
32
32
#[ serial]
33
33
#[ cfg( feature = "token" ) ]
34
34
async fn test_security_token ( ) {
35
- test_with_features ( & HashSet :: from ( [ DfsFeatures :: SECURITY , DfsFeatures :: TOKEN ] ) )
35
+ test_with_features ( HashSet :: from ( [ DfsFeatures :: SECURITY , DfsFeatures :: TOKEN ] ) )
36
36
. await
37
37
. unwrap ( ) ;
38
38
}
@@ -42,7 +42,7 @@ mod test {
42
42
#[ serial]
43
43
#[ cfg( feature = "token" ) ]
44
44
async fn test_privacy_token ( ) {
45
- test_with_features ( & HashSet :: from ( [
45
+ test_with_features ( HashSet :: from ( [
46
46
DfsFeatures :: SECURITY ,
47
47
DfsFeatures :: TOKEN ,
48
48
DfsFeatures :: PRIVACY ,
@@ -55,18 +55,15 @@ mod test {
55
55
#[ serial]
56
56
#[ cfg( feature = "kerberos" ) ]
57
57
async fn test_privacy_kerberos ( ) {
58
- test_with_features ( & HashSet :: from ( [
59
- DfsFeatures :: SECURITY ,
60
- DfsFeatures :: PRIVACY ,
61
- ] ) )
62
- . await
63
- . unwrap ( ) ;
58
+ test_with_features ( HashSet :: from ( [ DfsFeatures :: SECURITY , DfsFeatures :: PRIVACY ] ) )
59
+ . await
60
+ . unwrap ( ) ;
64
61
}
65
62
66
63
#[ tokio:: test]
67
64
#[ serial]
68
65
async fn test_basic_ha ( ) {
69
- test_with_features ( & HashSet :: from ( [ DfsFeatures :: HA ] ) )
66
+ test_with_features ( HashSet :: from ( [ DfsFeatures :: HA ] ) )
70
67
. await
71
68
. unwrap ( ) ;
72
69
}
@@ -75,7 +72,7 @@ mod test {
75
72
#[ serial]
76
73
#[ cfg( feature = "kerberos" ) ]
77
74
async fn test_security_privacy_ha ( ) {
78
- test_with_features ( & HashSet :: from ( [
75
+ test_with_features ( HashSet :: from ( [
79
76
DfsFeatures :: SECURITY ,
80
77
DfsFeatures :: PRIVACY ,
81
78
DfsFeatures :: HA ,
@@ -88,7 +85,7 @@ mod test {
88
85
#[ serial]
89
86
#[ cfg( feature = "token" ) ]
90
87
async fn test_security_token_ha ( ) {
91
- test_with_features ( & HashSet :: from ( [
88
+ test_with_features ( HashSet :: from ( [
92
89
DfsFeatures :: SECURITY ,
93
90
DfsFeatures :: TOKEN ,
94
91
DfsFeatures :: HA ,
@@ -100,15 +97,17 @@ mod test {
100
97
#[ tokio:: test]
101
98
#[ serial]
102
99
async fn test_rbf ( ) {
103
- test_with_features ( & HashSet :: from ( [ DfsFeatures :: RBF ] ) )
100
+ test_with_features ( HashSet :: from ( [ DfsFeatures :: RBF ] ) )
104
101
. await
105
102
. unwrap ( ) ;
106
103
}
107
104
108
- pub async fn test_with_features ( features : & HashSet < DfsFeatures > ) -> Result < ( ) > {
105
+ pub async fn test_with_features ( mut features : HashSet < DfsFeatures > ) -> Result < ( ) > {
109
106
let _ = env_logger:: builder ( ) . is_test ( true ) . try_init ( ) ;
110
107
111
- let _dfs = MiniDfs :: with_features ( features) ;
108
+ features. insert ( DfsFeatures :: TESTFILE ) ;
109
+
110
+ let _dfs = MiniDfs :: with_features ( & features) ;
112
111
let client = Client :: default ( ) ;
113
112
114
113
test_file_info ( & client) . await ?;
0 commit comments