1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
//! MockClient helpers for Amazon S3 API.
//!
//! Auto-generated extension methods for ergonomic test setup.
//! **Do not edit manually** — modify the manifest and re-run codegen.
#[cfg(any(test, feature = "test-support"))]
use crate::mock_client::{ExpectationBuilder, MockClient};
/// Extension trait for MockClient with Amazon S3 helpers.
#[cfg(any(test, feature = "test-support"))]
pub trait S3MockHelpers {
/// Helper to expect `put_bucket_policy`: Applies an Amazon S3 bucket policy to an Amazon S3
/// bucket.
fn expect_put_bucket_policy(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `delete_bucket_policy`: Deletes the policy of a specified bucket.
fn expect_delete_bucket_policy(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `put_public_access_block`: Creates or modifies the PublicAccessBlock
/// configuration for an Amazon S3 bucket.
fn expect_put_public_access_block(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `put_bucket_lifecycle_configuration`: Creates a new lifecycle configuration
/// for the bucket or replaces an existing lifecycle configuration.
fn expect_put_bucket_lifecycle_configuration(&mut self, bucket: &str)
-> ExpectationBuilder<'_>;
/// Helper to expect `list_buckets`: Returns a list of all buckets owned by the authenticated
/// sender of the request.
fn expect_list_buckets(&mut self) -> ExpectationBuilder<'_>;
/// Helper to expect `get_bucket_versioning`: Returns the versioning state of a bucket.
fn expect_get_bucket_versioning(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `get_bucket_encryption`: Returns the default encryption configuration for
/// an Amazon S3 bucket.
fn expect_get_bucket_encryption(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `get_bucket_logging`: Returns the logging status of a bucket and the
/// permissions users have to view and modify that status.
fn expect_get_bucket_logging(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `get_bucket_acl`: Returns the access control list (ACL) of a bucket.
fn expect_get_bucket_acl(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `get_bucket_lifecycle_configuration`: Returns the lifecycle configuration
/// information set on the bucket.
fn expect_get_bucket_lifecycle_configuration(&mut self, bucket: &str)
-> ExpectationBuilder<'_>;
/// Helper to expect `get_public_access_block`: Retrieves the PublicAccessBlock configuration
/// for an Amazon S3 bucket.
fn expect_get_public_access_block(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `delete_bucket_lifecycle_configuration`: Deletes the lifecycle
/// configuration from the specified bucket.
fn expect_delete_bucket_lifecycle_configuration(
&mut self,
bucket: &str,
) -> ExpectationBuilder<'_>;
/// Helper to expect `put_bucket_versioning`: Sets the versioning state of an existing bucket.
fn expect_put_bucket_versioning(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `put_bucket_encryption`: Creates the default encryption configuration for
/// an Amazon S3 bucket.
fn expect_put_bucket_encryption(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `put_bucket_logging`: Set the logging parameters for a bucket.
fn expect_put_bucket_logging(&mut self, bucket: &str) -> ExpectationBuilder<'_>;
}
#[cfg(any(test, feature = "test-support"))]
impl S3MockHelpers for MockClient {
/// Helper to expect `put_bucket_policy`: Applies an Amazon S3 bucket policy to an Amazon S3
/// bucket.
fn expect_put_bucket_policy(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?policy");
self.expect_put(&path)
}
/// Helper to expect `delete_bucket_policy`: Deletes the policy of a specified bucket.
fn expect_delete_bucket_policy(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?policy");
self.expect_delete(&path)
}
/// Helper to expect `put_public_access_block`: Creates or modifies the PublicAccessBlock
/// configuration for an Amazon S3 bucket.
fn expect_put_public_access_block(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?publicAccessBlock");
self.expect_put(&path)
}
/// Helper to expect `put_bucket_lifecycle_configuration`: Creates a new lifecycle configuration
/// for the bucket or replaces an existing lifecycle configuration.
fn expect_put_bucket_lifecycle_configuration(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?lifecycle");
self.expect_put(&path)
}
/// Helper to expect `list_buckets`: Returns a list of all buckets owned by the authenticated
/// sender of the request.
fn expect_list_buckets(&mut self) -> crate::mock_client::ExpectationBuilder<'_> {
let path = "/".to_string();
self.expect_get(&path)
}
/// Helper to expect `get_bucket_versioning`: Returns the versioning state of a bucket.
fn expect_get_bucket_versioning(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?versioning");
self.expect_get(&path)
}
/// Helper to expect `get_bucket_encryption`: Returns the default encryption configuration for
/// an Amazon S3 bucket.
fn expect_get_bucket_encryption(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?encryption");
self.expect_get(&path)
}
/// Helper to expect `get_bucket_logging`: Returns the logging status of a bucket and the
/// permissions users have to view and modify that status.
fn expect_get_bucket_logging(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?logging");
self.expect_get(&path)
}
/// Helper to expect `get_bucket_acl`: Returns the access control list (ACL) of a bucket.
fn expect_get_bucket_acl(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?acl");
self.expect_get(&path)
}
/// Helper to expect `get_bucket_lifecycle_configuration`: Returns the lifecycle configuration
/// information set on the bucket.
fn expect_get_bucket_lifecycle_configuration(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?lifecycle");
self.expect_get(&path)
}
/// Helper to expect `get_public_access_block`: Retrieves the PublicAccessBlock configuration
/// for an Amazon S3 bucket.
fn expect_get_public_access_block(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?publicAccessBlock");
self.expect_get(&path)
}
/// Helper to expect `delete_bucket_lifecycle_configuration`: Deletes the lifecycle
/// configuration from the specified bucket.
fn expect_delete_bucket_lifecycle_configuration(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?lifecycle");
self.expect_delete(&path)
}
/// Helper to expect `put_bucket_versioning`: Sets the versioning state of an existing bucket.
fn expect_put_bucket_versioning(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?versioning");
self.expect_put(&path)
}
/// Helper to expect `put_bucket_encryption`: Creates the default encryption configuration for
/// an Amazon S3 bucket.
fn expect_put_bucket_encryption(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?encryption");
self.expect_put(&path)
}
/// Helper to expect `put_bucket_logging`: Set the logging parameters for a bucket.
fn expect_put_bucket_logging(
&mut self,
bucket: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/{bucket}?logging");
self.expect_put(&path)
}
}