2019-04-07 16:12:03 +00:00
|
|
|
use crate::util;
|
2019-01-09 19:33:43 +00:00
|
|
|
use console::{style, Emoji};
|
|
|
|
use indicatif::ProgressBar;
|
2019-03-06 20:47:00 +00:00
|
|
|
use std::fs;
|
|
|
|
use toml::Value;
|
2019-01-09 19:33:43 +00:00
|
|
|
|
2019-03-13 20:50:54 +00:00
|
|
|
pub fn verify(start_at: Option<&str>) -> Result<(), ()> {
|
2019-03-06 20:47:00 +00:00
|
|
|
let toml: Value = fs::read_to_string("info.toml").unwrap().parse().unwrap();
|
|
|
|
let tomlvec: &Vec<Value> = toml.get("exercises").unwrap().as_array().unwrap();
|
2019-03-13 20:50:54 +00:00
|
|
|
let mut hit_start_at = false;
|
|
|
|
|
2019-03-06 20:47:00 +00:00
|
|
|
for i in tomlvec {
|
2019-03-13 20:50:54 +00:00
|
|
|
let path = i.get("path").unwrap().as_str().unwrap();
|
|
|
|
|
|
|
|
if let Some(start_at) = start_at {
|
|
|
|
if start_at.ends_with(path) {
|
|
|
|
hit_start_at = true;
|
|
|
|
} else if !hit_start_at {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 20:47:00 +00:00
|
|
|
match i.get("mode").unwrap().as_str().unwrap() {
|
2019-03-13 20:53:24 +00:00
|
|
|
"test" => test(path)?,
|
|
|
|
"compile" => compile_only(path)?,
|
2019-03-06 20:47:00 +00:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
2019-01-09 19:33:43 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compile_only(filename: &str) -> Result<(), ()> {
|
2019-03-11 14:09:20 +00:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
|
|
|
progress_bar.set_message(format!("Compiling {}...", filename).as_str());
|
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-07 16:12:03 +00:00
|
|
|
let compilecmd = util::compile_cmd(filename);
|
2019-03-11 14:09:20 +00:00
|
|
|
progress_bar.finish_and_clear();
|
2019-01-09 19:33:43 +00:00
|
|
|
if compilecmd.status.success() {
|
|
|
|
let formatstr = format!(
|
|
|
|
"{} Successfully compiled {}!",
|
|
|
|
Emoji("✅", "✓"),
|
|
|
|
filename
|
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).green());
|
2019-04-07 16:12:03 +00:00
|
|
|
util::clean();
|
2019-01-09 19:33:43 +00:00
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
let formatstr = format!(
|
|
|
|
"{} Compilation of {} failed! Compiler error message:\n",
|
|
|
|
Emoji("⚠️ ", "!"),
|
|
|
|
filename
|
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).red());
|
|
|
|
println!("{}", String::from_utf8_lossy(&compilecmd.stderr));
|
2019-04-07 16:12:03 +00:00
|
|
|
util::clean();
|
2019-01-09 19:33:43 +00:00
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 21:04:08 +00:00
|
|
|
pub fn test(filename: &str) -> Result<(), ()> {
|
2019-03-11 14:09:20 +00:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
|
|
|
progress_bar.set_message(format!("Testing {}...", filename).as_str());
|
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-07 16:12:03 +00:00
|
|
|
let testcmd = util::compile_test_cmd(filename);
|
2019-01-09 19:33:43 +00:00
|
|
|
if testcmd.status.success() {
|
2019-03-11 14:09:20 +00:00
|
|
|
progress_bar.set_message(format!("Running {}...", filename).as_str());
|
2019-04-07 16:12:03 +00:00
|
|
|
let runcmd = util::run_cmd();
|
2019-03-11 14:09:20 +00:00
|
|
|
progress_bar.finish_and_clear();
|
2019-02-15 11:06:05 +00:00
|
|
|
|
|
|
|
if runcmd.status.success() {
|
|
|
|
let formatstr = format!("{} Successfully tested {}!", Emoji("✅", "✓"), filename);
|
|
|
|
println!("{}", style(formatstr).green());
|
2019-04-07 16:12:03 +00:00
|
|
|
util::clean();
|
2019-02-15 11:06:05 +00:00
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
let formatstr = format!(
|
|
|
|
"{} Testing of {} failed! Please try again. Here's the output:",
|
|
|
|
Emoji("⚠️ ", "!"),
|
|
|
|
filename
|
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).red());
|
|
|
|
println!("{}", String::from_utf8_lossy(&runcmd.stdout));
|
2019-04-07 16:12:03 +00:00
|
|
|
util::clean();
|
2019-02-15 11:06:05 +00:00
|
|
|
Err(())
|
|
|
|
}
|
2019-01-09 19:33:43 +00:00
|
|
|
} else {
|
2019-03-11 14:09:20 +00:00
|
|
|
progress_bar.finish_and_clear();
|
2019-01-09 19:33:43 +00:00
|
|
|
let formatstr = format!(
|
2019-02-15 11:06:05 +00:00
|
|
|
"{} Compiling of {} failed! Please try again. Here's the output:",
|
2019-01-09 19:33:43 +00:00
|
|
|
Emoji("⚠️ ", "!"),
|
|
|
|
filename
|
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).red());
|
2019-02-15 11:06:05 +00:00
|
|
|
println!("{}", String::from_utf8_lossy(&testcmd.stderr));
|
2019-04-07 16:12:03 +00:00
|
|
|
util::clean();
|
2019-01-09 19:33:43 +00:00
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|