forked from DataDog/pup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthn_mappings.rs
More file actions
434 lines (393 loc) · 15.4 KB
/
Copy pathauthn_mappings.rs
File metadata and controls
434 lines (393 loc) · 15.4 KB
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
use anyhow::Result;
use datadog_api_client::datadogV2::api_authn_mappings::{
AuthNMappingsAPI, ListAuthNMappingsOptionalParams,
};
use datadog_api_client::datadogV2::model::{AuthNMappingCreateRequest, AuthNMappingUpdateRequest};
use crate::config::Config;
use crate::formatter;
use crate::util;
pub async fn list(cfg: &Config) -> Result<()> {
let api = crate::make_api!(AuthNMappingsAPI, cfg);
let resp = api
.list_authn_mappings(ListAuthNMappingsOptionalParams::default())
.await
.map_err(|e| anyhow::anyhow!("failed to list AuthN mappings: {e:?}"))?;
formatter::output(cfg, &resp)
}
pub async fn get(cfg: &Config, mapping_id: &str) -> Result<()> {
let api = crate::make_api!(AuthNMappingsAPI, cfg);
let resp = api
.get_authn_mapping(mapping_id.to_string())
.await
.map_err(|e| anyhow::anyhow!("failed to get AuthN mapping: {e:?}"))?;
formatter::output(cfg, &resp)
}
pub async fn create(cfg: &Config, file: &str) -> Result<()> {
let body: AuthNMappingCreateRequest = util::read_json_file(file)?;
let api = crate::make_api!(AuthNMappingsAPI, cfg);
let resp = api
.create_authn_mapping(body)
.await
.map_err(|e| anyhow::anyhow!("failed to create AuthN mapping: {e:?}"))?;
formatter::output(cfg, &resp)
}
pub async fn update(cfg: &Config, mapping_id: &str, file: &str) -> Result<()> {
let body: AuthNMappingUpdateRequest = util::read_json_file(file)?;
let api = crate::make_api!(AuthNMappingsAPI, cfg);
let resp = api
.update_authn_mapping(mapping_id.to_string(), body)
.await
.map_err(|e| anyhow::anyhow!("failed to update AuthN mapping: {e:?}"))?;
formatter::output(cfg, &resp)
}
pub async fn delete(cfg: &Config, mapping_id: &str) -> Result<()> {
let api = crate::make_api!(AuthNMappingsAPI, cfg);
api.delete_authn_mapping(mapping_id.to_string())
.await
.map_err(|e| anyhow::anyhow!("failed to delete AuthN mapping: {e:?}"))?;
println!("AuthN mapping '{mapping_id}' deleted.");
Ok(())
}
#[cfg(test)]
mod tests {
use crate::test_support::*;
/// Sample create-request body matching the AuthNMappingCreateRequest schema.
/// Used by create-path tests to exercise the JSON parser in `util::read_json_file`.
const SAMPLE_CREATE_JSON: &str = r#"{
"data": {
"type": "authn_mappings",
"attributes": {
"attribute_key": "member-of",
"attribute_value": "engineering"
},
"relationships": {
"role": {
"data": { "type": "roles", "id": "11111111-1111-1111-1111-111111111111" }
}
}
}
}"#;
/// Sample update-request body matching the AuthNMappingUpdateRequest schema.
const SAMPLE_UPDATE_JSON: &str = r#"{
"data": {
"type": "authn_mappings",
"id": "abc-123",
"attributes": {
"attribute_key": "member-of",
"attribute_value": "security"
},
"relationships": {
"role": {
"data": { "type": "roles", "id": "22222222-2222-2222-2222-222222222222" }
}
}
}
}"#;
// -----------------------------------------------------------------------
// list()
// -----------------------------------------------------------------------
#[tokio::test]
async fn test_authn_mappings_list_success() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = mock_any(&mut server, "GET", r#"{"data":[]}"#).await;
let result = super::list(&cfg).await;
assert!(
result.is_ok(),
"authn mappings list failed: {:?}",
result.err()
);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_list_accepts_oauth_bearer_token() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let mut cfg = test_config(&server.url());
// Simulate OAuth-only auth: bearer token configured, no API/APP keys.
cfg.api_key = None;
cfg.app_key = None;
cfg.access_token = Some("oauth-bearer-token".into());
std::env::remove_var("DD_API_KEY");
std::env::remove_var("DD_APP_KEY");
let _mock = server
.mock("GET", mockito::Matcher::Any)
.match_header("Authorization", "Bearer oauth-bearer-token")
.with_status(200)
.with_header("content-type", "application/json")
.with_body(r#"{"data":[]}"#)
.create_async()
.await;
let result = super::list(&cfg).await;
assert!(
result.is_ok(),
"authn mappings list with OAuth bearer failed: {:?}",
result.err()
);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_list_error() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = server
.mock("GET", mockito::Matcher::Any)
.with_status(403)
.with_header("content-type", "application/json")
.with_body(r#"{"errors":["Forbidden"]}"#)
.create_async()
.await;
let result = super::list(&cfg).await;
assert!(result.is_err(), "expected error for 403 response");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to list AuthN mappings"));
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
// -----------------------------------------------------------------------
// get()
// -----------------------------------------------------------------------
#[tokio::test]
async fn test_authn_mappings_get_success() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = mock_any(
&mut server,
"GET",
r#"{"data":{"type":"authn_mappings","id":"abc-123","attributes":{}}}"#,
)
.await;
let result = super::get(&cfg, "abc-123").await;
assert!(
result.is_ok(),
"authn mappings get failed: {:?}",
result.err()
);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_get_error_404() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = server
.mock("GET", mockito::Matcher::Any)
.with_status(404)
.with_header("content-type", "application/json")
.with_body(r#"{"errors":["Not Found"]}"#)
.create_async()
.await;
let result = super::get(&cfg, "missing").await;
assert!(result.is_err(), "expected error on 404");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to get AuthN mapping"));
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
// -----------------------------------------------------------------------
// create()
// -----------------------------------------------------------------------
#[tokio::test]
async fn test_authn_mappings_create_success() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = mock_any(
&mut server,
"POST",
r#"{"data":{"type":"authn_mappings","id":"new-1","attributes":{}}}"#,
)
.await;
let path = write_temp_json("pup_authn_create_ok.json", SAMPLE_CREATE_JSON);
let result = super::create(&cfg, path.to_str().unwrap()).await;
assert!(
result.is_ok(),
"authn mappings create failed: {:?}",
result.err()
);
let _ = std::fs::remove_file(&path);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_create_missing_file() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
// Nonexistent path — file read must fail before any HTTP call.
let result = super::create(&cfg, "/tmp/__pup_authn_missing_fixture__.json").await;
assert!(result.is_err(), "expected error for missing file");
let err_msg = result.unwrap_err().to_string();
assert!(
err_msg.contains("failed to read file"),
"error should mention file read failure: {err_msg}"
);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_create_invalid_json() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
// Well-formed JSON that doesn't match the expected schema.
let path = write_temp_json("pup_authn_create_bad.json", r#"{"nope":true}"#);
let result = super::create(&cfg, path.to_str().unwrap()).await;
assert!(result.is_err(), "expected error for invalid schema");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to parse JSON"));
let _ = std::fs::remove_file(&path);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_create_api_error() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = server
.mock("POST", mockito::Matcher::Any)
.with_status(409)
.with_header("content-type", "application/json")
.with_body(r#"{"errors":["Conflict"]}"#)
.create_async()
.await;
let path = write_temp_json("pup_authn_create_conflict.json", SAMPLE_CREATE_JSON);
let result = super::create(&cfg, path.to_str().unwrap()).await;
assert!(result.is_err(), "expected error on 409");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to create AuthN mapping"));
let _ = std::fs::remove_file(&path);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
// -----------------------------------------------------------------------
// update()
// -----------------------------------------------------------------------
#[tokio::test]
async fn test_authn_mappings_update_success() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = mock_any(
&mut server,
"PATCH",
r#"{"data":{"type":"authn_mappings","id":"abc-123","attributes":{}}}"#,
)
.await;
let path = write_temp_json("pup_authn_update_ok.json", SAMPLE_UPDATE_JSON);
let result = super::update(&cfg, "abc-123", path.to_str().unwrap()).await;
assert!(
result.is_ok(),
"authn mappings update failed: {:?}",
result.err()
);
let _ = std::fs::remove_file(&path);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_update_missing_file() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let result = super::update(&cfg, "abc-123", "/tmp/__pup_authn_update_missing__.json").await;
assert!(result.is_err(), "expected error for missing file");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to read file"));
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_update_api_error() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = server
.mock("PATCH", mockito::Matcher::Any)
.with_status(404)
.with_header("content-type", "application/json")
.with_body(r#"{"errors":["Not Found"]}"#)
.create_async()
.await;
let path = write_temp_json("pup_authn_update_404.json", SAMPLE_UPDATE_JSON);
let result = super::update(&cfg, "missing", path.to_str().unwrap()).await;
assert!(result.is_err(), "expected error on 404");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to update AuthN mapping"));
let _ = std::fs::remove_file(&path);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
// -----------------------------------------------------------------------
// delete()
// -----------------------------------------------------------------------
#[tokio::test]
async fn test_authn_mappings_delete_success() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = mock_any(&mut server, "DELETE", "").await;
let result = super::delete(&cfg, "abc-123").await;
assert!(
result.is_ok(),
"authn mappings delete failed: {:?}",
result.err()
);
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
#[tokio::test]
async fn test_authn_mappings_delete_error_404() {
let _lock = lock_env().await;
std::env::set_var("DD_TOKEN_STORAGE", "file");
let mut server = mockito::Server::new_async().await;
let cfg = test_config(&server.url());
let _mock = server
.mock("DELETE", mockito::Matcher::Any)
.with_status(404)
.with_header("content-type", "application/json")
.with_body(r#"{"errors":["Not Found"]}"#)
.create_async()
.await;
let result = super::delete(&cfg, "missing").await;
assert!(result.is_err(), "expected error on 404");
assert!(result
.unwrap_err()
.to_string()
.contains("failed to delete AuthN mapping"));
cleanup_env();
std::env::remove_var("DD_TOKEN_STORAGE");
}
}