rustlings/src/verify.rs

99 lines
3.2 KiB
Rust
Raw Normal View History

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