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
use super::profile_file::ProfileFiles;
use crate::provider_config::ProviderConfig;
use aws_types::app_name::AppName;
#[doc = include_str!("location_of_profile_files.md")]
#[derive(Debug, Default)]
pub struct ProfileFileAppNameProvider {
provider_config: ProviderConfig,
}
impl ProfileFileAppNameProvider {
pub fn new() -> Self {
Self {
provider_config: ProviderConfig::default(),
}
}
pub fn builder() -> Builder {
Builder::default()
}
pub async fn app_name(&self) -> Option<AppName> {
let app_id = self.provider_config.profile().await?.get("sdk-ua-app-id")?;
match AppName::new(app_id.to_owned()) {
Ok(app_name) => Some(app_name),
Err(err) => {
tracing::warn!(err = %err, "`sdk-ua-app-id` property `{}` was invalid", app_id);
None
}
}
}
}
#[derive(Debug, Default)]
pub struct Builder {
config: Option<ProviderConfig>,
profile_override: Option<String>,
profile_files: Option<ProfileFiles>,
}
impl Builder {
pub fn configure(mut self, config: &ProviderConfig) -> Self {
self.config = Some(config.clone());
self
}
pub fn profile_name(mut self, profile_name: impl Into<String>) -> Self {
self.profile_override = Some(profile_name.into());
self
}
pub fn build(self) -> ProfileFileAppNameProvider {
let conf = self
.config
.unwrap_or_default()
.with_profile_config(self.profile_files, self.profile_override);
ProfileFileAppNameProvider {
provider_config: conf,
}
}
}
#[cfg(test)]
mod tests {
use super::ProfileFileAppNameProvider;
use crate::provider_config::ProviderConfig;
use crate::test_case::no_traffic_connector;
use aws_sdk_sts::AppName;
use aws_types::os_shim_internal::{Env, Fs};
use tracing_test::traced_test;
fn provider_config(config_contents: &str) -> ProviderConfig {
let fs = Fs::from_slice(&[("test_config", config_contents)]);
let env = Env::from_slice(&[("AWS_CONFIG_FILE", "test_config")]);
ProviderConfig::empty()
.with_fs(fs)
.with_env(env)
.with_http_connector(no_traffic_connector())
}
fn default_provider(config_contents: &str) -> ProfileFileAppNameProvider {
ProfileFileAppNameProvider::builder()
.configure(&provider_config(config_contents))
.build()
}
#[tokio::test]
async fn no_app_name() {
assert_eq!(None, default_provider("[default]\n").app_name().await);
}
#[tokio::test]
async fn app_name_default_profile() {
assert_eq!(
Some(AppName::new("test").unwrap()),
default_provider("[default]\nsdk-ua-app-id = test")
.app_name()
.await
);
}
#[tokio::test]
async fn app_name_other_profiles() {
let config = "\
[default]\n\
sdk-ua-app-id = test\n\
\n\
[profile other]\n\
sdk-ua-app-id = bar\n
";
assert_eq!(
Some(AppName::new("bar").unwrap()),
ProfileFileAppNameProvider::builder()
.profile_name("other")
.configure(&provider_config(config))
.build()
.app_name()
.await
);
}
#[traced_test]
#[tokio::test]
async fn invalid_app_name() {
assert_eq!(
None,
default_provider("[default]\nsdk-ua-app-id = definitely invalid")
.app_name()
.await
);
assert!(logs_contain(
"`sdk-ua-app-id` property `definitely invalid` was invalid"
));
}
}