#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Context {
Dir(PathBuf),
GitUrl(String),
}
impl Context {
pub fn new(s: &str) -> Context {
lazy_static! {
static ref GIT_PREFIX: Regex =
Regex::new("^(https?://|git://|github.com/|git@)").unwrap();
}
if GIT_PREFIX.is_match(&s) {
Context::GitUrl(s.to_owned())
} else {
Context::Dir(Path::new(&s).to_owned())
}
}
}
impl_interpolatable_value!(Context);
impl FromStr for Context {
type Err = Void;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(Context::new(s))
}
}
impl fmt::Display for Context {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
match self {
&Context::Dir(ref path) => write!(f, "{}", path.display()),
&Context::GitUrl(ref url) => write!(f, "{}", url),
}
}
}
#[test]
fn context_may_contain_git_urls() {
let urls =
vec!("git://github.com/docker/docker",
"git@github.com:docker/docker.git",
"git@bitbucket.org:atlassianlabs/atlassian-docker.git",
"https://github.com/docker/docker.git",
"http://github.com/docker/docker.git",
"github.com/docker/docker.git");
for url in urls {
let context: Context = FromStr::from_str(url).unwrap();
assert_eq!(context, Context::GitUrl(url.to_string()));
assert_eq!(context.to_string(), url);
}
}
#[test]
fn context_may_contain_dir_paths() {
let paths = vec!(".", "./foo", "./foo/bar/");
for path in paths {
let context: Context = FromStr::from_str(path).unwrap();
assert_eq!(context, Context::Dir(Path::new(path).to_owned()));
assert_eq!(context.to_string(), path);
}
}