|
33 | 33 | run: cat /proc/cmdline && echo && cat /proc/mounts && echo && ls -al /sys/fs/cgroup && echo && uname -a && echo && stat -fc %T /sys/fs/cgroup && echo && cat /proc/self/cgroup
|
34 | 34 | - name: Install DOMjudge
|
35 | 35 | run: .github/jobs/baseinstall.sh all
|
| 36 | + - name: Verifying submissions |
| 37 | + shell: bash |
| 38 | + run: | |
| 39 | + set -x |
| 40 | + export CURLOPTS="--fail -sq -m 30 -b /tmp/cookiejar" |
| 41 | + # Make an initial request which will get us a session id, and grab the csrf token from it |
| 42 | + CSRFTOKEN=$(curl $CURLOPTS -c /tmp/cookiejar "http://localhost/domjudge/login" | sed -n 's/.*_csrf_token.*value="\(.*\)".*/\1/p') |
| 43 | + # Make a second request with our session + csrf token to actually log in |
| 44 | + curl $CURLOPTS -c /tmp/cookiejar -F "_csrf_token=$CSRFTOKEN" -F "_username=admin" -F "_password=password" "http://localhost/domjudge/login" |
| 45 | + # Send a general clarification to later test if we see the event. |
| 46 | + curl $CURLOPTS -F "sendto=" -F "problem=1-" -F "bodytext=Testing" -F "submit=Send" \ |
| 47 | + "http://localhost/domjudge/jury/clarifications/send" -o /dev/null |
| 48 | + NUMNOTVERIFIED=$(curl $CURLOPTS "http://localhost/domjudge/jury/judging-verifier" | grep "submissions checked" | sed -r 's/^.* ([0-9]+) submissions checked.*$/\1/') |
| 49 | + NUMVERIFIED=$( curl $CURLOPTS "http://localhost/domjudge/jury/judging-verifier" | grep "submissions not checked" | sed -r 's/^.* ([0-9]+) submissions not checked.*$/\1/') |
| 50 | + NUMNOMAGIC=$( curl $CURLOPTS "http://localhost/domjudge/jury/judging-verifier" | grep "without magic string" | sed -r 's/^.* ([0-9]+) without magic string.*$/\1/') |
| 51 | + NUMSUBS=$(curl $CURLOPTS http://localhost/domjudge/api/contests/1/submissions | python3 -mjson.tool | grep -c '"id":') |
| 52 | + # We expect |
| 53 | + # - two submissions with ambiguous outcome, |
| 54 | + # - one submissions submitted through the submit client, and thus the magic string ignored, |
| 55 | + # - and all submissions to be judged. |
| 56 | + if [ $NUMNOTVERIFIED -ne 2 ] || [ $NUMNOMAGIC -ne 1 ] || [ $NUMSUBS -gt $((NUMVERIFIED+NUMNOTVERIFIED)) ]; then |
| 57 | + echo "verified subs: $NUMVERIFIED, unverified subs: $NUMNOTVERIFIED, total subs: $NUMSUBS" |
| 58 | + echo "(expected 2 submissions to be unverified, but all to be processed)" |
| 59 | + echo "Of these $NUMNOMAGIC do not have the EXPECTED_RESULTS string (should be 1)." |
| 60 | + curl $CURLOPTS "http://localhost/domjudge/jury/judging-verifier?verify_multiple=1" | w3m -dump -T text/html |
| 61 | + exit 1 |
| 62 | + fi |
36 | 63 | - name: Set up chroot
|
37 | 64 | run: sudo misc-tools/dj_make_chroot -a amd64
|
38 | 65 | - name: Check nginx
|
|
0 commit comments