2019-04-11 15:41:24 -05:00
|
|
|
use crate::exercise::{Exercise, Mode};
|
2019-01-09 13:33:43 -06:00
|
|
|
use console::{style, Emoji};
|
|
|
|
use indicatif::ProgressBar;
|
|
|
|
|
2019-05-22 06:50:23 -05:00
|
|
|
pub fn verify<'a>(start_at: impl IntoIterator<Item = &'a Exercise>) -> Result<(), ()> {
|
2019-04-11 15:41:24 -05:00
|
|
|
for exercise in start_at {
|
|
|
|
match exercise.mode {
|
|
|
|
Mode::Test => test(&exercise)?,
|
|
|
|
Mode::Compile => compile_only(&exercise)?,
|
2019-03-06 14:47:00 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-09 13:33:43 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-04-11 15:41:24 -05:00
|
|
|
fn compile_only(exercise: &Exercise) -> Result<(), ()> {
|
2019-03-11 09:09:20 -05:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
2019-04-11 15:41:24 -05:00
|
|
|
progress_bar.set_message(format!("Compiling {}...", exercise).as_str());
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-11 15:41:24 -05:00
|
|
|
let compile_output = exercise.compile();
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.finish_and_clear();
|
2019-04-11 15:41:24 -05:00
|
|
|
if compile_output.status.success() {
|
2019-01-09 13:33:43 -06:00
|
|
|
let formatstr = format!(
|
|
|
|
"{} Successfully compiled {}!",
|
|
|
|
Emoji("✅", "✓"),
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise
|
2019-01-09 13:33:43 -06:00
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).green());
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise.clean();
|
2019-01-09 13:33:43 -06:00
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
let formatstr = format!(
|
|
|
|
"{} Compilation of {} failed! Compiler error message:\n",
|
|
|
|
Emoji("⚠️ ", "!"),
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise
|
2019-01-09 13:33:43 -06:00
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).red());
|
2019-04-11 15:41:24 -05:00
|
|
|
println!("{}", String::from_utf8_lossy(&compile_output.stderr));
|
|
|
|
exercise.clean();
|
2019-01-09 13:33:43 -06:00
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-11 15:41:24 -05:00
|
|
|
pub fn test(exercise: &Exercise) -> Result<(), ()> {
|
2019-03-11 09:09:20 -05:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
2019-04-11 15:41:24 -05:00
|
|
|
progress_bar.set_message(format!("Testing {}...", exercise).as_str());
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-11 15:41:24 -05:00
|
|
|
|
|
|
|
let compile_output = exercise.compile();
|
|
|
|
if compile_output.status.success() {
|
|
|
|
progress_bar.set_message(format!("Running {}...", exercise).as_str());
|
|
|
|
|
|
|
|
let runcmd = exercise.run();
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.finish_and_clear();
|
2019-02-15 05:06:05 -06:00
|
|
|
|
|
|
|
if runcmd.status.success() {
|
2019-04-11 15:41:24 -05:00
|
|
|
let formatstr = format!("{} Successfully tested {}!", Emoji("✅", "✓"), exercise);
|
2019-02-15 05:06:05 -06:00
|
|
|
println!("{}", style(formatstr).green());
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise.clean();
|
2019-02-15 05:06:05 -06:00
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
let formatstr = format!(
|
|
|
|
"{} Testing of {} failed! Please try again. Here's the output:",
|
|
|
|
Emoji("⚠️ ", "!"),
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise
|
2019-02-15 05:06:05 -06:00
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).red());
|
|
|
|
println!("{}", String::from_utf8_lossy(&runcmd.stdout));
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise.clean();
|
2019-02-15 05:06:05 -06:00
|
|
|
Err(())
|
|
|
|
}
|
2019-01-09 13:33:43 -06:00
|
|
|
} else {
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.finish_and_clear();
|
2019-01-09 13:33:43 -06:00
|
|
|
let formatstr = format!(
|
2019-02-15 05:06:05 -06:00
|
|
|
"{} Compiling of {} failed! Please try again. Here's the output:",
|
2019-01-09 13:33:43 -06:00
|
|
|
Emoji("⚠️ ", "!"),
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise
|
2019-01-09 13:33:43 -06:00
|
|
|
);
|
|
|
|
println!("{}", style(formatstr).red());
|
2019-04-11 15:41:24 -05:00
|
|
|
println!("{}", String::from_utf8_lossy(&compile_output.stderr));
|
|
|
|
exercise.clean();
|
2019-01-09 13:33:43 -06:00
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|