2019-10-13 04:16:56 +00:00
|
|
|
use super::{Context, Module, RootModuleConfig};
|
|
|
|
|
|
|
|
use crate::configs::go::GoConfig;
|
2019-12-02 22:42:55 +00:00
|
|
|
use crate::utils;
|
2019-05-12 03:58:45 +00:00
|
|
|
|
2019-07-19 20:18:52 +00:00
|
|
|
/// Creates a module with the current Go version
|
2019-05-12 03:58:45 +00:00
|
|
|
///
|
2019-05-12 17:37:23 +00:00
|
|
|
/// Will display the Go version if any of the following criteria are met:
|
2019-05-12 03:58:45 +00:00
|
|
|
/// - Current directory contains a `go.mod` file
|
|
|
|
/// - Current directory contains a `go.sum` file
|
|
|
|
/// - Current directory contains a `glide.yaml` file
|
|
|
|
/// - Current directory contains a `Gopkg.yml` file
|
|
|
|
/// - Current directory contains a `Gopkg.lock` file
|
2019-05-12 17:37:23 +00:00
|
|
|
/// - Current directory contains a `Godeps` directory
|
2019-07-19 20:18:52 +00:00
|
|
|
/// - Current directory contains a file with the `.go` extension
|
2019-07-02 20:12:53 +00:00
|
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
2019-05-12 17:37:23 +00:00
|
|
|
let is_go_project = context
|
2019-09-14 14:23:53 +00:00
|
|
|
.try_begin_scan()?
|
2019-05-12 17:37:23 +00:00
|
|
|
.set_files(&["go.mod", "go.sum", "glide.yaml", "Gopkg.yml", "Gopkg.lock"])
|
|
|
|
.set_extensions(&["go"])
|
|
|
|
.set_folders(&["Godeps"])
|
2019-09-14 14:23:53 +00:00
|
|
|
.is_match();
|
2019-05-12 17:37:23 +00:00
|
|
|
|
2019-05-12 03:58:45 +00:00
|
|
|
if !is_go_project {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2019-11-01 01:53:28 +00:00
|
|
|
let mut module = context.new_module("golang");
|
|
|
|
let config: GoConfig = GoConfig::try_load(module.config);
|
2019-10-13 04:16:56 +00:00
|
|
|
|
2019-11-01 01:53:28 +00:00
|
|
|
module.set_style(config.style);
|
|
|
|
module.create_segment("symbol", &config.symbol);
|
2019-05-12 03:58:45 +00:00
|
|
|
|
2019-12-02 22:42:55 +00:00
|
|
|
let formatted_version =
|
|
|
|
format_go_version(&utils::exec_cmd("go", &["version"])?.stdout.as_str())?;
|
2019-11-01 01:53:28 +00:00
|
|
|
module.create_segment("version", &config.version.with_value(&formatted_version));
|
2019-05-12 03:58:45 +00:00
|
|
|
|
2019-11-01 01:53:28 +00:00
|
|
|
Some(module)
|
2019-05-12 03:58:45 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 23:48:51 +00:00
|
|
|
fn format_go_version(go_stdout: &str) -> Option<String> {
|
2019-11-01 01:53:28 +00:00
|
|
|
// go version output looks like this:
|
|
|
|
// go version go1.13.3 linux/amd64
|
|
|
|
|
2019-05-16 16:06:34 +00:00
|
|
|
let version = go_stdout
|
2019-05-12 03:58:45 +00:00
|
|
|
// split into ["", "1.12.4 linux/amd64"]
|
|
|
|
.splitn(2, "go version go")
|
|
|
|
// return "1.12.4 linux/amd64"
|
|
|
|
.nth(1)?
|
|
|
|
// split into ["1.12.4", "linux/amd64"]
|
|
|
|
.split_whitespace()
|
|
|
|
// return "1.12.4"
|
|
|
|
.next()?;
|
|
|
|
|
2019-11-01 01:53:28 +00:00
|
|
|
Some(format!("v{}", version))
|
2019-05-12 03:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-02-12 18:22:21 +00:00
|
|
|
use crate::modules::utils::test::render_module;
|
|
|
|
use ansi_term::Color;
|
|
|
|
use std::fs::{self, File};
|
|
|
|
use std::io;
|
|
|
|
use tempfile;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_without_go_files() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = None;
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_go_file() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("main.go"))?.sync_all()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_go_mod() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("go.mod"))?.sync_all()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_go_sum() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("go.sum"))?.sync_all()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_godeps() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let godeps = dir.path().join("Godeps");
|
|
|
|
fs::create_dir_all(&godeps)?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_glide_yaml() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("glide.yaml"))?.sync_all()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_gopkg_yml() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("Gopkg.yml"))?.sync_all()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn folder_with_gopkg_lock() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("Gopkg.lock"))?.sync_all()?;
|
|
|
|
|
|
|
|
let actual = render_module("golang", dir.path());
|
|
|
|
let expected = Some(format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1")));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-12 18:22:21 +00:00
|
|
|
}
|
2019-05-12 03:58:45 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_format_go_version() {
|
2019-07-31 23:48:51 +00:00
|
|
|
let input = "go version go1.12 darwin/amd64";
|
2019-05-12 03:58:45 +00:00
|
|
|
assert_eq!(format_go_version(input), Some("v1.12".to_string()));
|
|
|
|
}
|
|
|
|
}
|