@@ -21,185 +21,185 @@ const TEST_REGION: &str = "us-east-1";
21
21
const TEST_SERVICE : & str = "service" ;
22
22
23
23
#[ tokio:: test]
24
- #[ test_env_log :: test]
24
+ #[ test_log :: test]
25
25
async fn get_header_key_duplicate_get_header_key_duplicate ( ) {
26
26
run ( "get-header-key-duplicate/get-header-key-duplicate" ) . await ;
27
27
}
28
28
29
29
// Canonical request is contrary to RFC 2616
30
30
// #[tokio::test]
31
- // #[test_env_log ::test]
31
+ // #[test_log ::test]
32
32
// async fn get_header_value_multiline_get_header_value_multiline() {
33
33
// run("get-header-value-multiline/get-header-value-multiline").await;
34
34
// }
35
35
36
36
#[ tokio:: test]
37
- #[ test_env_log :: test]
37
+ #[ test_log :: test]
38
38
async fn get_header_value_order_get_header_value_order ( ) {
39
39
run ( "get-header-value-order/get-header-value-order" ) . await ;
40
40
}
41
41
42
42
#[ tokio:: test]
43
- #[ test_env_log :: test]
43
+ #[ test_log :: test]
44
44
async fn get_header_value_trim_get_header_value_trim ( ) {
45
45
run ( "get-header-value-trim/get-header-value-trim" ) . await ;
46
46
}
47
47
48
48
#[ tokio:: test]
49
- #[ test_env_log :: test]
49
+ #[ test_log :: test]
50
50
async fn get_unreserved_get_unreserved ( ) {
51
51
run ( "get-unreserved/get-unreserved" ) . await ;
52
52
}
53
53
54
54
// This encoding issue is taken care of by the frontend.
55
55
// #[tokio::test]
56
- // #[test_env_log ::test]
56
+ // #[test_log ::test]
57
57
// async fn get_utf8_get_utf8() {
58
58
// run("get-utf8/get-utf8").await;
59
59
// }
60
60
61
61
#[ tokio:: test]
62
- #[ test_env_log :: test]
62
+ #[ test_log :: test]
63
63
async fn get_vanilla_empty_query_key_get_vanilla_empty_query_key ( ) {
64
64
run ( "get-vanilla-empty-query-key/get-vanilla-empty-query-key" ) . await ;
65
65
}
66
66
67
67
#[ tokio:: test]
68
- #[ test_env_log :: test]
68
+ #[ test_log :: test]
69
69
async fn get_vanilla_query_order_key_case_get_vanilla_query_order_key_case ( ) {
70
70
run ( "get-vanilla-query-order-key-case/get-vanilla-query-order-key-case" ) . await ;
71
71
}
72
72
73
73
#[ tokio:: test]
74
- #[ test_env_log :: test]
74
+ #[ test_log :: test]
75
75
async fn get_vanilla_query_order_key_get_vanilla_query_order_key ( ) {
76
76
run ( "get-vanilla-query-order-key/get-vanilla-query-order-key" ) . await ;
77
77
}
78
78
79
79
#[ tokio:: test]
80
- #[ test_env_log :: test]
80
+ #[ test_log :: test]
81
81
async fn get_vanilla_query_order_value_get_vanilla_query_order_value ( ) {
82
82
run ( "get-vanilla-query-order-value/get-vanilla-query-order-value" ) . await ;
83
83
}
84
84
85
85
#[ tokio:: test]
86
- #[ test_env_log :: test]
86
+ #[ test_log :: test]
87
87
async fn get_vanilla_query_unreserved_get_vanilla_query_unreserved ( ) {
88
88
run ( "get-vanilla-query-unreserved/get-vanilla-query-unreserved" ) . await ;
89
89
}
90
90
91
91
#[ tokio:: test]
92
- #[ test_env_log :: test]
92
+ #[ test_log :: test]
93
93
async fn get_vanilla_query_get_vanilla_query ( ) {
94
94
run ( "get-vanilla-query/get-vanilla-query" ) . await ;
95
95
}
96
96
97
97
// This encoding issue is taken care of/rejected by the frontend.
98
98
// #[tokio::test]
99
- // #[test_env_log ::test]
99
+ // #[test_log ::test]
100
100
// async fn get_vanilla_utf8_query_get_vanilla_utf8_query() {
101
101
// run("get-vanilla-utf8-query/get-vanilla-utf8-query").await;
102
102
// }
103
103
104
104
#[ tokio:: test]
105
- #[ test_env_log :: test]
105
+ #[ test_log :: test]
106
106
async fn get_vanilla_get_vanilla ( ) {
107
107
run ( "get-vanilla/get-vanilla" ) . await ;
108
108
}
109
109
110
110
#[ tokio:: test]
111
- #[ test_env_log :: test]
111
+ #[ test_log :: test]
112
112
async fn normalize_path_get_relative_relative_get_relative_relative ( ) {
113
113
run ( "normalize-path/get-relative-relative/get-relative-relative" ) . await ;
114
114
}
115
115
116
116
#[ tokio:: test]
117
- #[ test_env_log :: test]
117
+ #[ test_log :: test]
118
118
async fn normalize_path_get_relative_get_relative ( ) {
119
119
run ( "normalize-path/get-relative/get-relative" ) . await ;
120
120
}
121
121
122
122
#[ tokio:: test]
123
- #[ test_env_log :: test]
123
+ #[ test_log :: test]
124
124
async fn normalize_path_get_slash_dot_slash_get_slash_dot_slash ( ) {
125
125
run ( "normalize-path/get-slash-dot-slash/get-slash-dot-slash" ) . await ;
126
126
}
127
127
128
128
#[ tokio:: test]
129
- #[ test_env_log :: test]
129
+ #[ test_log :: test]
130
130
async fn normalize_path_get_slash_pointless_dot_get_slash_pointless_dot ( ) {
131
131
run ( "normalize-path/get-slash-pointless-dot/get-slash-pointless-dot" ) . await ;
132
132
}
133
133
134
134
#[ tokio:: test]
135
- #[ test_env_log :: test]
135
+ #[ test_log :: test]
136
136
async fn normalize_path_get_slash_get_slash ( ) {
137
137
run ( "normalize-path/get-slash/get-slash" ) . await ;
138
138
}
139
139
140
140
#[ tokio:: test]
141
- #[ test_env_log :: test]
141
+ #[ test_log :: test]
142
142
async fn normalize_path_get_slashes_get_slashes ( ) {
143
143
run ( "normalize-path/get-slashes/get-slashes" ) . await ;
144
144
}
145
145
146
146
// This encoding issue is taken care of by the HTTP frontend.
147
147
// #[tokio::test]
148
- // #[test_env_log ::test]
148
+ // #[test_log ::test]
149
149
// async fn normalize_path_get_space_get_space() {
150
150
// run("normalize-path/get-space/get-space").await;
151
151
// }
152
152
153
153
#[ tokio:: test]
154
- #[ test_env_log :: test]
154
+ #[ test_log :: test]
155
155
async fn post_header_key_case_post_header_key_case ( ) {
156
156
run ( "post-header-key-case/post-header-key-case" ) . await ;
157
157
}
158
158
159
159
#[ tokio:: test]
160
- #[ test_env_log :: test]
160
+ #[ test_log :: test]
161
161
async fn post_header_key_sort_post_header_key_sort ( ) {
162
162
run ( "post-header-key-sort/post-header-key-sort" ) . await ;
163
163
}
164
164
165
165
#[ tokio:: test]
166
- #[ test_env_log :: test]
166
+ #[ test_log :: test]
167
167
async fn post_header_value_case_post_header_value_case ( ) {
168
168
run ( "post-header-value-case/post-header-value-case" ) . await ;
169
169
}
170
170
171
171
#[ tokio:: test]
172
- #[ test_env_log :: test]
172
+ #[ test_log :: test]
173
173
async fn post_sts_token_post_sts_header_after_post_sts_header_after ( ) {
174
174
run ( "post-sts-token/post-sts-header-after/post-sts-header-after" ) . await ;
175
175
}
176
176
177
177
#[ tokio:: test]
178
- #[ test_env_log :: test]
178
+ #[ test_log :: test]
179
179
async fn post_sts_token_post_sts_header_before_post_sts_header_before ( ) {
180
180
run ( "post-sts-token/post-sts-header-before/post-sts-header-before" ) . await ;
181
181
}
182
182
183
183
#[ tokio:: test]
184
- #[ test_env_log :: test]
184
+ #[ test_log :: test]
185
185
async fn post_vanilla_empty_query_value_post_vanilla_empty_query_value ( ) {
186
186
run ( "post-vanilla-empty-query-value/post-vanilla-empty-query-value" ) . await ;
187
187
}
188
188
189
189
#[ tokio:: test]
190
- #[ test_env_log :: test]
190
+ #[ test_log :: test]
191
191
async fn post_vanilla_query_post_vanilla_query ( ) {
192
192
run ( "post-vanilla-query/post-vanilla-query" ) . await ;
193
193
}
194
194
195
195
#[ tokio:: test]
196
- #[ test_env_log :: test]
196
+ #[ test_log :: test]
197
197
async fn post_vanilla_post_vanilla ( ) {
198
198
run ( "post-vanilla/post-vanilla" ) . await ;
199
199
}
200
200
201
201
#[ tokio:: test]
202
- #[ test_env_log :: test]
202
+ #[ test_log :: test]
203
203
async fn post_x_www_form_urlencoded_parameters_post_x_www_form_urlencoded_parameters ( ) {
204
204
run ( "post-x-www-form-urlencoded-parameters/post-x-www-form-urlencoded-parameters" ) . await ;
205
205
}
@@ -209,7 +209,7 @@ This test is disabled for now -- it does not seem to encode the signed request
209
209
properly.
210
210
211
211
#[tokio::test]
212
- #[test_env_log ::test]
212
+ #[test_log ::test]
213
213
async fn post_x_www_form_urlencoded_post_x_www_form_urlencoded() {
214
214
run("post-x-www-form-urlencoded/post-x-www-form-urlencoded").await;
215
215
}
0 commit comments