2019-12-20 17:30:47 +00:00
|
|
|
use std::collections::HashMap;
|
2019-10-14 15:05:03 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
2021-05-13 00:43:46 +00:00
|
|
|
use chrono::DateTime;
|
|
|
|
|
2019-10-05 21:13:03 +00:00
|
|
|
use super::{Context, Module, RootModuleConfig};
|
2019-09-26 02:55:47 +00:00
|
|
|
|
2020-07-07 22:45:32 +00:00
|
|
|
use crate::configs::aws::AwsConfig;
|
|
|
|
use crate::formatter::StringFormatter;
|
2021-12-20 20:15:00 +00:00
|
|
|
use crate::utils::{read_file, render_time};
|
2019-10-04 12:42:33 +00:00
|
|
|
|
2019-11-02 11:08:54 +00:00
|
|
|
type Profile = String;
|
|
|
|
type Region = String;
|
|
|
|
|
2021-05-13 00:43:46 +00:00
|
|
|
fn get_credentials_file_path(context: &Context) -> Option<PathBuf> {
|
|
|
|
context
|
|
|
|
.get_env("AWS_CREDENTIALS_FILE")
|
|
|
|
.and_then(|path| PathBuf::from_str(&path).ok())
|
|
|
|
.or_else(|| {
|
|
|
|
let mut home = context.get_home()?;
|
|
|
|
home.push(".aws/credentials");
|
|
|
|
Some(home)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_config_file_path(context: &Context) -> Option<PathBuf> {
|
|
|
|
context
|
2020-08-07 19:13:12 +00:00
|
|
|
.get_env("AWS_CONFIG_FILE")
|
2019-10-14 15:05:03 +00:00
|
|
|
.and_then(|path| PathBuf::from_str(&path).ok())
|
|
|
|
.or_else(|| {
|
2021-01-19 22:23:27 +00:00
|
|
|
let mut home = context.get_home()?;
|
2019-10-14 15:05:03 +00:00
|
|
|
home.push(".aws/config");
|
|
|
|
Some(home)
|
2021-05-13 00:43:46 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_aws_region_from_config(context: &Context, aws_profile: Option<&str>) -> Option<Region> {
|
|
|
|
let config_location = get_config_file_path(context)?;
|
2019-10-14 15:05:03 +00:00
|
|
|
|
2021-12-20 20:15:00 +00:00
|
|
|
let contents = read_file(&config_location).ok()?;
|
2019-10-14 15:05:03 +00:00
|
|
|
|
2021-07-29 18:27:46 +00:00
|
|
|
let region_line = if let Some(aws_profile) = aws_profile {
|
2021-12-20 20:15:00 +00:00
|
|
|
contents
|
|
|
|
.lines()
|
2021-07-29 18:27:46 +00:00
|
|
|
.skip_while(|line| line != &format!("[profile {}]", &aws_profile))
|
2019-10-14 15:05:03 +00:00
|
|
|
.skip(1)
|
|
|
|
.take_while(|line| !line.starts_with('['))
|
|
|
|
.find(|line| line.starts_with("region"))
|
|
|
|
} else {
|
2021-12-20 20:15:00 +00:00
|
|
|
contents
|
|
|
|
.lines()
|
|
|
|
.skip_while(|&line| line != "[default]")
|
2019-10-14 15:05:03 +00:00
|
|
|
.skip(1)
|
|
|
|
.take_while(|line| !line.starts_with('['))
|
|
|
|
.find(|line| line.starts_with("region"))
|
|
|
|
}?;
|
|
|
|
|
|
|
|
let region = region_line.split('=').nth(1)?;
|
|
|
|
let region = region.trim();
|
|
|
|
|
|
|
|
Some(region.to_string())
|
|
|
|
}
|
|
|
|
|
2020-08-07 19:13:12 +00:00
|
|
|
fn get_aws_profile_and_region(context: &Context) -> (Option<Profile>, Option<Region>) {
|
2021-04-20 16:35:07 +00:00
|
|
|
let profile_env_vars = vec!["AWSU_PROFILE", "AWS_VAULT", "AWSUME_PROFILE", "AWS_PROFILE"];
|
2021-03-13 08:35:50 +00:00
|
|
|
let profile = profile_env_vars
|
|
|
|
.iter()
|
|
|
|
.find_map(|env_var| context.get_env(env_var));
|
|
|
|
let region = context
|
|
|
|
.get_env("AWS_DEFAULT_REGION")
|
|
|
|
.or_else(|| context.get_env("AWS_REGION"));
|
|
|
|
match (profile, region) {
|
2020-07-07 22:45:32 +00:00
|
|
|
(Some(p), Some(r)) => (Some(p), Some(r)),
|
|
|
|
(None, Some(r)) => (None, Some(r)),
|
2020-08-07 19:13:12 +00:00
|
|
|
(Some(ref p), None) => (
|
2021-07-29 18:27:46 +00:00
|
|
|
Some(p.clone()),
|
2020-08-07 19:13:12 +00:00
|
|
|
get_aws_region_from_config(context, Some(p)),
|
|
|
|
),
|
|
|
|
(None, None) => (None, get_aws_region_from_config(context, None)),
|
2019-11-02 11:08:54 +00:00
|
|
|
}
|
2019-10-14 15:05:03 +00:00
|
|
|
}
|
|
|
|
|
2021-05-13 00:43:46 +00:00
|
|
|
fn get_credentials_duration(context: &Context, aws_profile: Option<&Profile>) -> Option<i64> {
|
|
|
|
let expiration_env_vars = vec!["AWS_SESSION_EXPIRATION", "AWSUME_EXPIRATION"];
|
|
|
|
let expiration_date = if let Some(expiration_date) = expiration_env_vars
|
|
|
|
.iter()
|
|
|
|
.find_map(|env_var| context.get_env(env_var))
|
|
|
|
{
|
|
|
|
chrono::DateTime::parse_from_rfc3339(&expiration_date).ok()
|
|
|
|
} else {
|
2021-12-20 20:15:00 +00:00
|
|
|
let contents = read_file(get_credentials_file_path(context)?).ok()?;
|
2021-05-13 00:43:46 +00:00
|
|
|
|
|
|
|
let profile_line = if let Some(aws_profile) = aws_profile {
|
|
|
|
format!("[{}]", aws_profile)
|
|
|
|
} else {
|
|
|
|
"[default]".to_string()
|
|
|
|
};
|
|
|
|
|
2021-12-20 20:15:00 +00:00
|
|
|
let expiration_date_line = contents
|
|
|
|
.lines()
|
2021-05-13 00:43:46 +00:00
|
|
|
.skip_while(|line| line != &profile_line)
|
|
|
|
.skip(1)
|
|
|
|
.take_while(|line| !line.starts_with('['))
|
|
|
|
.find(|line| line.starts_with("expiration"))?;
|
|
|
|
|
|
|
|
let expiration_date = expiration_date_line.split('=').nth(1)?.trim();
|
|
|
|
DateTime::parse_from_rfc3339(expiration_date).ok()
|
|
|
|
}?;
|
|
|
|
|
|
|
|
Some(expiration_date.timestamp() - chrono::Local::now().timestamp())
|
|
|
|
}
|
|
|
|
|
2020-07-07 22:45:32 +00:00
|
|
|
fn alias_region(region: String, aliases: &HashMap<String, &str>) -> String {
|
|
|
|
match aliases.get(®ion) {
|
|
|
|
None => region,
|
2019-12-20 17:58:52 +00:00
|
|
|
Some(alias) => (*alias).to_string(),
|
2019-12-20 17:30:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-16 22:19:13 +00:00
|
|
|
fn get_credential_process(context: &Context, aws_profile: Option<&Profile>) -> Option<String> {
|
|
|
|
let contents = read_file(get_config_file_path(context)?).ok()?;
|
|
|
|
|
|
|
|
let profile_line = if let Some(aws_profile) = aws_profile {
|
|
|
|
format!("[profile {}]", aws_profile)
|
|
|
|
} else {
|
|
|
|
"[default]".to_string()
|
|
|
|
};
|
|
|
|
|
|
|
|
let cred_proc_line = contents
|
|
|
|
.lines()
|
|
|
|
.skip_while(|line| line != &profile_line)
|
|
|
|
.skip(1)
|
|
|
|
.take_while(|line| !line.starts_with('['))
|
|
|
|
.find(|line| line.starts_with("credential_process"))?;
|
|
|
|
|
|
|
|
let cred_proc = cred_proc_line.split('=').nth(1)?.trim();
|
|
|
|
Some(cred_proc.to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_defined_credentials(context: &Context, aws_profile: Option<&Profile>) -> Option<String> {
|
|
|
|
let valid_env_vars = vec![
|
|
|
|
"AWS_ACCESS_KEY_ID",
|
|
|
|
"AWS_SECRET_ACCESS_KEY",
|
|
|
|
"AWS_SESSION_TOKEN",
|
|
|
|
];
|
|
|
|
|
|
|
|
// accept if set through environment variable
|
|
|
|
if let Some(aws_identity_cred) = valid_env_vars
|
|
|
|
.iter()
|
|
|
|
.find_map(|env_var| context.get_env(env_var))
|
|
|
|
{
|
|
|
|
return Some(aws_identity_cred);
|
|
|
|
}
|
|
|
|
|
|
|
|
let contents = read_file(get_credentials_file_path(context)?).ok()?;
|
|
|
|
|
|
|
|
let profile_line = if let Some(aws_profile) = aws_profile {
|
|
|
|
format!("[{}]", aws_profile)
|
|
|
|
} else {
|
|
|
|
"[default]".to_string()
|
|
|
|
};
|
|
|
|
|
|
|
|
let aws_key_id_line = contents
|
|
|
|
.lines()
|
|
|
|
.skip_while(|line| line != &profile_line)
|
|
|
|
.skip(1)
|
|
|
|
.take_while(|line| !line.starts_with('['))
|
|
|
|
.find(|line| line.starts_with("aws_access_key_id"))?;
|
|
|
|
let aws_key_id = aws_key_id_line.split('=').nth(1)?.trim();
|
|
|
|
Some(aws_key_id.to_string())
|
|
|
|
}
|
|
|
|
|
2019-09-26 02:55:47 +00:00
|
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|
|
|
let mut module = context.new_module("aws");
|
2019-10-04 12:42:33 +00:00
|
|
|
let config: AwsConfig = AwsConfig::try_load(module.config);
|
2019-09-26 02:55:47 +00:00
|
|
|
|
2020-08-07 19:13:12 +00:00
|
|
|
let (aws_profile, aws_region) = get_aws_profile_and_region(context);
|
2020-07-07 22:45:32 +00:00
|
|
|
if aws_profile.is_none() && aws_region.is_none() {
|
|
|
|
return None;
|
|
|
|
}
|
2019-11-02 11:08:54 +00:00
|
|
|
|
2022-02-16 22:19:13 +00:00
|
|
|
// only display if credential_process is defined or has valid credentials
|
|
|
|
if get_credential_process(context, aws_profile.as_ref()).is_none()
|
|
|
|
&& get_defined_credentials(context, aws_profile.as_ref()).is_none()
|
|
|
|
{
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2020-07-07 22:45:32 +00:00
|
|
|
let mapped_region = if let Some(aws_region) = aws_region {
|
|
|
|
Some(alias_region(aws_region, &config.region_aliases))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2019-11-02 11:08:54 +00:00
|
|
|
|
2021-05-13 00:43:46 +00:00
|
|
|
let duration = {
|
|
|
|
get_credentials_duration(context, aws_profile.as_ref()).map(|duration| {
|
|
|
|
if duration > 0 {
|
|
|
|
render_time((duration * 1000) as u128, false)
|
|
|
|
} else {
|
|
|
|
config.expiration_symbol.to_string()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
2020-07-07 22:45:32 +00:00
|
|
|
let parsed = StringFormatter::new(config.format).and_then(|formatter| {
|
|
|
|
formatter
|
|
|
|
.map_meta(|variable, _| match variable {
|
|
|
|
"symbol" => Some(config.symbol),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.map_style(|variable| match variable {
|
|
|
|
"style" => Some(Ok(config.style)),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.map(|variable| match variable {
|
|
|
|
"profile" => aws_profile.as_ref().map(Ok),
|
|
|
|
"region" => mapped_region.as_ref().map(Ok),
|
2021-05-13 00:43:46 +00:00
|
|
|
"duration" => duration.as_ref().map(Ok),
|
2020-07-07 22:45:32 +00:00
|
|
|
_ => None,
|
|
|
|
})
|
2021-11-01 21:18:45 +00:00
|
|
|
.parse(None, Some(context))
|
2020-07-07 22:45:32 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.set_segments(match parsed {
|
|
|
|
Ok(segments) => segments,
|
|
|
|
Err(error) => {
|
2020-09-28 20:38:50 +00:00
|
|
|
log::warn!("Error in module `aws`: \n{}", error);
|
2020-07-07 22:45:32 +00:00
|
|
|
return None;
|
2019-11-02 11:08:54 +00:00
|
|
|
}
|
2020-07-07 22:45:32 +00:00
|
|
|
});
|
2019-09-26 02:55:47 +00:00
|
|
|
|
|
|
|
Some(module)
|
|
|
|
}
|
2020-08-07 19:13:12 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::test::ModuleRenderer;
|
|
|
|
use ansi_term::Color;
|
2021-12-20 20:15:00 +00:00
|
|
|
use std::fs::{create_dir, File};
|
2020-08-07 19:13:12 +00:00
|
|
|
use std::io::{self, Write};
|
|
|
|
|
|
|
|
#[test]
|
2020-10-14 16:21:35 +00:00
|
|
|
#[ignore]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn no_region_set() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws").collect();
|
|
|
|
let expected = None;
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn region_set() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ (ap-northeast-2) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn region_set_with_alias() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_REGION", "ap-southeast-2")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.config(toml::toml! {
|
|
|
|
[aws.region_aliases]
|
|
|
|
ap-southeast-2 = "au"
|
|
|
|
})
|
|
|
|
.collect();
|
2021-03-06 19:47:06 +00:00
|
|
|
let expected = Some(format!("on {}", Color::Yellow.bold().paint("☁️ (au) ")));
|
2020-08-07 19:13:12 +00:00
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn default_region_set() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
|
|
|
.env("AWS_DEFAULT_REGION", "ap-northeast-1")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ (ap-northeast-1) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_set() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_set_from_aws_vault() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_VAULT", "astronauts-vault")
|
|
|
|
.env("AWS_PROFILE", "astronauts-profile")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts-vault ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
2021-03-13 08:35:50 +00:00
|
|
|
#[test]
|
|
|
|
fn profile_set_from_awsu() {
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWSU_PROFILE", "astronauts-awsu")
|
|
|
|
.env("AWS_PROFILE", "astronauts-profile")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2021-03-13 08:35:50 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts-awsu ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:35:07 +00:00
|
|
|
#[test]
|
|
|
|
fn profile_set_from_awsume() {
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWSUME_PROFILE", "astronauts-awsume")
|
|
|
|
.env("AWS_PROFILE", "astronauts-profile")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2021-04-20 16:35:07 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts-awsume ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
2020-08-07 19:13:12 +00:00
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_and_region_set() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow
|
|
|
|
.bold()
|
|
|
|
.paint("☁️ astronauts (ap-northeast-2) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
2021-12-20 20:15:00 +00:00
|
|
|
#[test]
|
|
|
|
fn credentials_file_is_ignored_when_is_directory() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let config_path = dir.path().join("credentials");
|
|
|
|
create_dir(&config_path)?;
|
|
|
|
|
|
|
|
assert!(ModuleRenderer::new("aws")
|
|
|
|
.env(
|
|
|
|
"AWS_CREDENTIALS_FILE",
|
|
|
|
config_path.to_string_lossy().as_ref(),
|
|
|
|
)
|
|
|
|
.collect()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn config_file_path_is_ignored_when_is_directory() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let config_path = dir.path().join("config");
|
|
|
|
create_dir(&config_path)?;
|
|
|
|
|
|
|
|
assert!(ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_CONFIG_FILE", config_path.to_string_lossy().as_ref())
|
|
|
|
.collect()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
2020-08-07 19:13:12 +00:00
|
|
|
#[test]
|
|
|
|
fn default_profile_set() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let config_path = dir.path().join("config");
|
|
|
|
let mut file = File::create(&config_path)?;
|
|
|
|
|
|
|
|
file.write_all(
|
|
|
|
"[default]
|
|
|
|
region = us-east-1
|
2022-02-16 22:19:13 +00:00
|
|
|
credential_process = /opt/bin/awscreds-retriever
|
2020-08-07 19:13:12 +00:00
|
|
|
|
|
|
|
[profile astronauts]
|
|
|
|
region = us-east-2
|
|
|
|
"
|
|
|
|
.as_bytes(),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_CONFIG_FILE", config_path.to_string_lossy().as_ref())
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ (us-east-1) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn profile_and_config_set() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let config_path = dir.path().join("config");
|
|
|
|
let mut file = File::create(&config_path)?;
|
|
|
|
|
|
|
|
file.write_all(
|
|
|
|
"[default]
|
|
|
|
region = us-east-1
|
|
|
|
|
|
|
|
[profile astronauts]
|
|
|
|
region = us-east-2
|
2022-02-16 22:19:13 +00:00
|
|
|
credential_process = /opt/bin/awscreds-retriever
|
2020-08-07 19:13:12 +00:00
|
|
|
"
|
|
|
|
.as_bytes(),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_CONFIG_FILE", config_path.to_string_lossy().as_ref())
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts (us-east-2) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_and_region_set_with_display_all() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-1")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow
|
|
|
|
.bold()
|
|
|
|
.paint("☁️ astronauts (ap-northeast-1) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_set_with_display_all() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn region_set_with_display_all() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_REGION", "ap-northeast-1")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
2021-03-06 19:47:06 +00:00
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ (ap-northeast-1) ")
|
2020-08-07 19:13:12 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_and_region_set_with_display_region() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_DEFAULT_REGION", "ap-northeast-1")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
format = "on [$symbol$region]($style) "
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {} ",
|
|
|
|
Color::Yellow.bold().paint("☁️ ap-northeast-1")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn profile_and_region_set_with_display_profile() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-1")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
format = "on [$symbol$profile]($style) "
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {} ",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn region_set_with_display_profile() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_REGION", "ap-northeast-1")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2020-08-07 19:13:12 +00:00
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
format = "on [$symbol$profile]($style) "
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!("on {} ", Color::Yellow.bold().paint("☁️ ")));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
2021-05-13 00:43:46 +00:00
|
|
|
#[test]
|
|
|
|
fn expiration_date_set() {
|
|
|
|
use chrono::{DateTime, NaiveDateTime, SecondsFormat, Utc};
|
|
|
|
|
|
|
|
let now_plus_half_hour: DateTime<Utc> = chrono::DateTime::from_utc(
|
|
|
|
NaiveDateTime::from_timestamp(chrono::Local::now().timestamp() + 1800, 0),
|
|
|
|
Utc,
|
|
|
|
);
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
show_duration = true
|
|
|
|
})
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2021-05-13 00:43:46 +00:00
|
|
|
.env(
|
|
|
|
"AWS_SESSION_EXPIRATION",
|
|
|
|
now_plus_half_hour.to_rfc3339_opts(SecondsFormat::Secs, true),
|
|
|
|
)
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow
|
|
|
|
.bold()
|
|
|
|
.paint("☁️ astronauts (ap-northeast-2) [30m]")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn expiration_date_set_from_file() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let credentials_path = dir.path().join("credentials");
|
|
|
|
let mut file = File::create(&credentials_path)?;
|
|
|
|
|
|
|
|
use chrono::{DateTime, NaiveDateTime, Utc};
|
|
|
|
|
|
|
|
let now_plus_half_hour: DateTime<Utc> = chrono::DateTime::from_utc(
|
|
|
|
NaiveDateTime::from_timestamp(chrono::Local::now().timestamp() + 1800, 0),
|
|
|
|
Utc,
|
|
|
|
);
|
|
|
|
|
|
|
|
let expiration_date = now_plus_half_hour.to_rfc3339_opts(chrono::SecondsFormat::Secs, true);
|
|
|
|
|
|
|
|
file.write_all(
|
|
|
|
format!(
|
|
|
|
"[astronauts]
|
|
|
|
aws_access_key_id=dummy
|
|
|
|
aws_secret_access_key=dummy
|
|
|
|
expiration={}
|
|
|
|
",
|
|
|
|
expiration_date
|
|
|
|
)
|
|
|
|
.as_bytes(),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
show_duration = true
|
|
|
|
})
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
|
|
|
.env(
|
|
|
|
"AWS_CREDENTIALS_FILE",
|
|
|
|
credentials_path.to_string_lossy().as_ref(),
|
|
|
|
)
|
|
|
|
.collect();
|
|
|
|
|
2022-01-22 11:54:04 +00:00
|
|
|
// In principle, "30m" should be correct. However, bad luck in scheduling
|
|
|
|
// on shared runners may delay it. Allow for up to 2 seconds of delay.
|
|
|
|
let possible_values = ["30m", "29m59s", "29m58s"];
|
|
|
|
let possible_values = possible_values.map(|duration| {
|
|
|
|
let segment_colored = format!("☁️ astronauts (ap-northeast-2) [{}]", duration);
|
|
|
|
Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint(segment_colored)
|
|
|
|
))
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(possible_values.contains(&actual));
|
2021-05-13 00:43:46 +00:00
|
|
|
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn profile_and_region_set_show_duration() {
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
show_duration = true
|
|
|
|
})
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2021-05-13 00:43:46 +00:00
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow
|
|
|
|
.bold()
|
|
|
|
.paint("☁️ astronauts (ap-northeast-2) ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn expiration_date_set_expired() {
|
|
|
|
use chrono::{DateTime, NaiveDateTime, SecondsFormat, Utc};
|
|
|
|
|
|
|
|
let now: DateTime<Utc> = chrono::DateTime::from_utc(
|
|
|
|
NaiveDateTime::from_timestamp(chrono::Local::now().timestamp() - 1800, 0),
|
|
|
|
Utc,
|
|
|
|
);
|
|
|
|
|
|
|
|
let symbol = "!!!";
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
show_duration = true
|
|
|
|
expiration_symbol = symbol
|
|
|
|
})
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
2022-02-16 22:19:13 +00:00
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
2021-05-13 00:43:46 +00:00
|
|
|
.env(
|
|
|
|
"AWS_SESSION_EXPIRATION",
|
|
|
|
now.to_rfc3339_opts(SecondsFormat::Secs, true),
|
|
|
|
)
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow
|
|
|
|
.bold()
|
|
|
|
.paint(format!("☁️ astronauts (ap-northeast-2) [{}]", symbol))
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
2020-08-07 19:13:12 +00:00
|
|
|
#[test]
|
2020-10-14 16:21:35 +00:00
|
|
|
#[ignore]
|
2021-02-11 20:08:17 +00:00
|
|
|
fn region_not_set_with_display_region() {
|
2020-08-07 19:13:12 +00:00
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.config(toml::toml! {
|
|
|
|
[aws]
|
|
|
|
format = "on [$symbol$region]($style) "
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let expected = None;
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
2022-02-16 22:19:13 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn missing_any_credentials() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let config_path = dir.path().join("config");
|
|
|
|
let mut file = File::create(&config_path)?;
|
|
|
|
|
|
|
|
file.write_all(
|
|
|
|
"[default]
|
|
|
|
region = us-east-1
|
|
|
|
output = json
|
|
|
|
|
|
|
|
[profile astronauts]
|
|
|
|
region = us-east-2
|
|
|
|
"
|
|
|
|
.as_bytes(),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_CONFIG_FILE", config_path.to_string_lossy().as_ref())
|
|
|
|
.collect();
|
|
|
|
let expected = None;
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn access_key_credential_set() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let credentials_path = dir.path().join("credentials");
|
|
|
|
let mut file = File::create(&credentials_path)?;
|
|
|
|
|
|
|
|
file.write_all(
|
|
|
|
"[astronauts]
|
|
|
|
aws_access_key_id=dummy
|
|
|
|
aws_secret_access_key=dummy
|
|
|
|
"
|
|
|
|
.as_bytes(),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_REGION", "ap-northeast-2")
|
|
|
|
.env(
|
|
|
|
"AWS_CREDENTIALS_FILE",
|
|
|
|
credentials_path.to_string_lossy().as_ref(),
|
|
|
|
)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow
|
|
|
|
.bold()
|
|
|
|
.paint("☁️ astronauts (ap-northeast-2) ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn credential_process_set() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let config_path = dir.path().join("config");
|
|
|
|
let mut file = File::create(&config_path)?;
|
|
|
|
|
|
|
|
file.write_all(
|
|
|
|
"[default]
|
|
|
|
region = ap-northeast-2
|
|
|
|
credential_process = /opt/bin/awscreds-retriever
|
|
|
|
"
|
|
|
|
.as_bytes(),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_CONFIG_FILE", config_path.to_string_lossy().as_ref())
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ (ap-northeast-2) ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn access_key_env_var_set() {
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_ACCESS_KEY_ID", "dummy")
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn secret_access_key_env_var_set() {
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_SECRET_ACCESS_KEY", "dummy")
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn session_token_env_var_set() {
|
|
|
|
let actual = ModuleRenderer::new("aws")
|
|
|
|
.env("AWS_PROFILE", "astronauts")
|
|
|
|
.env("AWS_SESSION_TOKEN", "dummy")
|
|
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
|
|
"on {}",
|
|
|
|
Color::Yellow.bold().paint("☁️ astronauts ")
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
}
|
2020-08-07 19:13:12 +00:00
|
|
|
}
|