2019-01-09 19:33:58 +00:00
|
|
|
use crate::util::clean;
|
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;
|
2019-01-09 19:33:43 +00:00
|
|
|
use std::process::Command;
|
2019-03-06 20:47:00 +00:00
|
|
|
use toml::Value;
|
2019-01-09 19:33:43 +00:00
|
|
|
|
|
|
|
pub fn verify() -> 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();
|
|
|
|
for i in tomlvec {
|
|
|
|
match i.get("mode").unwrap().as_str().unwrap() {
|
|
|
|
"test" => test(i.get("path").unwrap().as_str().unwrap())?,
|
|
|
|
"compile" => compile_only(i.get("path").unwrap().as_str().unwrap())?,
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
2019-01-09 19:33:43 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compile_only(filename: &str) -> Result<(), ()> {
|
|
|
|
let bar = ProgressBar::new_spinner();
|
|
|
|
bar.set_message(format!("Compiling {}...", filename).as_str());
|
|
|
|
bar.enable_steady_tick(100);
|
|
|
|
let compilecmd = Command::new("rustc")
|
|
|
|
.args(&[filename, "-o", "temp", "--color", "always"])
|
|
|
|
.output()
|
|
|
|
.expect("fail");
|
|
|
|
bar.finish_and_clear();
|
|
|
|
if compilecmd.status.success() {
|
|
|
|
let formatstr = format!(
|
|
|
|
"{} Successfully compiled {}!",
|
|
|
|
Emoji("✅", "✓"),
|
|
|
|
filename
|
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).green());
|
|
|
|
clean();
|
|
|
|
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));
|
|
|
|
clean();
|
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 21:04:08 +00:00
|
|
|
pub fn test(filename: &str) -> Result<(), ()> {
|
2019-01-09 19:33:43 +00:00
|
|
|
let bar = ProgressBar::new_spinner();
|
|
|
|
bar.set_message(format!("Testing {}...", filename).as_str());
|
|
|
|
bar.enable_steady_tick(100);
|
|
|
|
let testcmd = Command::new("rustc")
|
2019-01-25 14:11:23 +00:00
|
|
|
.args(&["--test", filename, "-o", "temp", "--color", "always"])
|
2019-01-09 19:33:43 +00:00
|
|
|
.output()
|
|
|
|
.expect("fail");
|
|
|
|
if testcmd.status.success() {
|
2019-02-15 11:06:05 +00:00
|
|
|
bar.set_message(format!("Running {}...", filename).as_str());
|
|
|
|
let runcmd = Command::new("./temp").output().expect("fail");
|
|
|
|
bar.finish_and_clear();
|
|
|
|
|
|
|
|
if runcmd.status.success() {
|
|
|
|
let formatstr = format!("{} Successfully tested {}!", Emoji("✅", "✓"), filename);
|
|
|
|
println!("{}", style(formatstr).green());
|
|
|
|
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));
|
|
|
|
clean();
|
|
|
|
Err(())
|
|
|
|
}
|
2019-01-09 19:33:43 +00:00
|
|
|
} else {
|
2019-02-15 11:06:05 +00:00
|
|
|
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-01-09 19:33:43 +00:00
|
|
|
clean();
|
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|