use IO::Prompter [ -style => 'bold', '-stdio', '-verbatim' ];
use File::Slurp qw/read_file write_file/;
-use JSON qw/encode_json/;
+use JSON qw/decode_json encode_json/;
+use List::Util qw/max min/;
use Term::ANSIColor qw/RED RESET/;
use Getopt::Long qw/:config require_order/;
END
}
+sub cmd_check {
+ my ($id) = @_;
+ my @jobs = $db->jobs->search({problem => $id, reference => { '!=', undef }})->all;
+ say 'Rerunning ' . @jobs . ' reference jobs...';
+ $_->rerun for @jobs;
+ sleep 1 while $db->jobs->search({problem => $id, result_text => undef})->count;
+
+ my (@good_times, @fail_times, $fail);
+
+ for (@jobs) {
+ $_->discard_changes;
+ my @times = map { $_->{time} } @{decode_json $_->results};
+ push @good_times, @times if $_->reference == 0;
+ push @fail_times, @times if $_->reference == 3;
+ if ($_->result == $_->reference) {
+ say 'Job ' . $_->id . ' OK'
+ } else {
+ say 'Job ' . $_->id . ' got ' . $_->result . ' instead of ' . $_->reference;
+ $fail = 1;
+ }
+ }
+
+ say 'Max time for AC: ' . max @good_times;
+ say 'Min time for TLE: ' . min @fail_times;
+ say $fail ? 'Test failed' : 'Test successful';
+ exit $fail;
+}
+
##################################################
my $cmd = 'cmd_' . shift;