Skip to main content

CodEval for evaluating programming assignments

Project description

CodEval

Currently CodEval has 3 main components:

1. Test Simple I/O Programming Assignments on Canvas

codeval.ini contents

[SERVER]
url=<canvas API>
token=<canvas token>
[RUN]
precommand=
command=

Refer to a sample codeval.ini file here

Command to run:

python3 codeval.py grade-submissions <a unique part of course name> [FLAGS] Example:
If the course name on Canvas is CS 149 - Operating Systems, the command can be:
python3 codeval.py CS\ 149
or
python3 codeval.py "Operating Systems"
Use a part of the course name that can uniquely identify the course on Canvas.

Flags

  • --dry-run/--no-dry-run (Optional)
    • Default: --dry-run
    • Do not update the results on Canvas. Print the results to the terminal instead.
  • --verbose/--no-verbose (Optional)
    • Default: --no-verbose
    • Show detailed logs
  • --force/--no-force (Optional)
    • Default: --no-force
    • Grade submissions even if already graded
  • --copytmpdir/--no-copytmpdir (Optional)
    • Default: --no-copytmpdir
    • Copy temporary directory content to current directory for debugging

Specification Tags

Tags used in a spec file (<course name>.codeval)

Tag Meaning Function
C Compile Code Specifies the command to compile the submission code
CTO Compile Timeout Timeout in seconds for the compile command to run
RUN Run Script Specifies the script to use to evaluate the specification file. Defaults to evaluate.sh.
Z Download Zip Will be followed by zip files to download from Canvas to use when running the test cases.
CF Check Function Will be followed by a function name and a list of files to check to ensure that the function is used by one of those files.
CMD/TCMD Run Command Will be followed by a command to run. The TCMD will cause the evaluation to fail if the command exits with an error.
CMP Compare Will be followed by two files to compare.
T/HT Test Case Will be followed by the command to run to test the submission.
I/IF Supply Input Specifies the input for a test case. The IF version will read the input from a file.
O/OF Check Output Specifies the expected output for a test case. The OF version will read from a file.
E Check Error Specifies the expected error output for a test case.
TO Timeout Specifies the time limit in seconds for a test case to run. Defaults to 20 seconds.
X Exit Code Specifies the expected exit code for a test case. Defaults to zero.
SS Start Server Command containing timeout (wait until server starts), kill timeout (wait to kill the server), and the command to start a server

Refer to a sample spec file here

2. Test Distributed Programming Assignments

(or complex non I/O programs)

codeval.ini contents

[SERVER]
url=<canvas API>
token=<canvas token>
[RUN]
precommand=
command=
dist_command=
host_ip=
[MONGO]
url=
db=

Refer to a sample codeval.ini file here

Command to run

is the same as the command in #1:
python3 codeval.py grade-submissions <a unique part of course name> [FLAGS]

Distributed Specification Tags

Tag Meaning Function
--DT-- Distributed Tests Begin Marks the beginning of distributed tests. Is used to determine if the spec file has distributed tests
GTO Global timeout A total timeout for all distributed tests, for each of homogenous and heterogenous tests. Homogenous tests = GTO value. Heterogenous tests = 2 * GTO value
PORTS Exposed ports count Maximum number of ports needed to expose per docker container
ECMD/ECMDT SYNC/ASYNC External Command Command that runs in the a controller container, emulating a host machine. ECMDT: Evaluation fails if command returns an error. SYNC: CodEval waits for command to execute or fail. ASYNC: CodEval doesn't wait for command to execute, failure is checked if ECMDT
DTC $int [HOM] [HET] Distributed Test Config Group Signifies the start of a new group of Distributed tests. Replace $int with the number of containers that needs to be started for the test group. HOM denotes homogenous tests, i.e., user's own submissions will be executed in the contianers. HET denotes heterogenous tests, i.e., a combination of $int - 1 other users' and current user's submissions will be executed in the containers. Can enter either HOM or HET or both
ICMD/ICMDT SYNC/ASYNC */n1,n2,n3... Internal Command Command that runs in each of the containers. ICMDT: Evaluation fails if command returns an error. SYNC: wait for command to execute or fail. ASYNC: Don't wait for command to execute, failure is checked if ICMDT *: run command in all the containers. n1,n2..nx: Run command in containers indexed n1,n2..nx only. Containers follow zero-based indexing
TESTCMD Test Command Command run on the host machine to validate the submission(s)
--DTCLEAN-- Cleanup Commands Commands to execute after the tests have completed or failed. Can contain only ECMD or ECMDT

Special placeholders in commands

Placeholder Usage
TEMP_DIR used in ECMD/ECMDT to be replaced by the temporary directory generated by CodEval during execution
HOST_IP used in ECMD/ECMDT/ICMD/ICMDT to be replaced by the host's IP specified in codeval.ini
USERNAME used in ICMD/ICMDT to be replaced by the user's username whose submission is being evaluated
PORT_$int used in ICMD/ICMDT to be replaced by a port number assigned to the running docker continer. $int needs to be < PORT value in the specification

Refer to a sample spec file here

Notes

  • The config file codeval.ini needs to contain the extra entries only if the tag --DT-- exists in the specification file
  • Distributed tests need a running mongodb service to persists the progress of students running heterogenous tests

3. Test SQL Assignments

codeval.ini contents

[SERVER]
url=<canvas API>
token=<canvas token>
[RUN]
precommand=
command=
dist_command=
host_ip=
sql_command=

Refer to a sample codeval.ini file here

Command to run

is the same as the command in #1:
python3 codeval.py grade-submissions <a unique part of course name> [FLAGS]

SQL Specification Tags

Tag Meaning Function
--SQL-- SQL Tests Begin Marks the beginning of SQL tests. Is used to determine if the spec file has SQL based tests
INSERT Insert rows in DB Insert rows in the SQL database using files/ individual insert queries.
CONDITIONPRESENT Check condition in file Validate submission files for a required condition to be present in submissions.
SCHEMACHECK External Command Validate submission files for database related checks like constraints.
TSQL SQL Test Marks the SQL test, take input as a file or individual query and run it on submission files.

Refer to a sample spec file here

Notes

  • The config file codeval.ini needs to contain the extra entries only if the tag --SQL-- exists in the specification file
  • SQL tests need a separate container image to run SQL tests in MYSQL.

4. Create an assignment on Canvas

Command to create the assignment:

Syntax: python3 codeval.py create-assignment <course_name> <specification_file> [ --dry-run/--no-dry-run ] [ --verbose/--no-verbose ] [ --group_name ]
Example: python3 codeval.py create-assignment "Practice1" 'a_big_bag_of_strings.txt' --no-dry-run --verbose --group_name "exam 2"

Command to grade the assignment:

Syntax: python3 codeval.py grade-submissions <course_name> [ --dry-run/--no-dry-run ] [ --verbose/--no-verbose ] [ --force/--no-force][--copytmpdir/--no-copytmpdir]
Example: python3 codeval.py grade-submissions "Practice1" --no-dry-run --force --verbose

New tags introduced are :

CRT_HW START <Assignment_name>

CRT_HW END

DISCSN_URL

EXMPLS <no_of_test_cases>

URL_OF_HW "file_name"

MODIFICATIONS REQUIRED IN THE SPECIFICATION FILE.

  1. Start the specification file with the tag CRT_HW START followed by a space followed by the name of assignment. For ex: CRT_HW START Hello World

  2. The following lines after the first line will contain the description of the assignment in Markdown format.

  3. The description ends with the last line containing just the tag CRT_HW END . For ex: CRT_HW END

  4. After this tag, the content for grading the submission begins.

    Addition of the Discussion Topic in the assignment description.

    1. Insert the tag DISCUSSION_LINK wherever you want the corresponding discussion topic's link to appear. For ex: To access the discussion topic for this assignment you go here DISCUSSION_LINK

    Addition of sample examples in the assignment description.

    1. Insert the tag EXMPLS followed by single space followed by the value. Here value is the number of test cases to be displayed as sample examples. At maximum it will print all the non hidden test cases. For ex: EXMPLS 5

    Addition of the links to the files uploaded in the Codeval folder in the assignment description.

    1. In order to add hyperlink to a file the markdown format is as follows: file_name_to_be_displayed Here in the parenthesis where the Url is required,insert the tag URL_OF_HW followed by space followed by the file name of the file required to be linked in double quotes. For ex: URL_OF_HW "file name.extension" Note: The file should be present in the Codeval folder.

UPLOAD THE REQUIRED FILES IN CODEVAL FOLDER IN FILES SECTION.

  1. Create a folder called assignmentFiles which should conatin all the necessary files including the specification file.

EXAMPLE OF THE SPECIFICATION FILE.

CRT_HW START Bag Of Strings
# Description
## Problem Statement
- This Is An Example For The Description Of The Assignment In Markdown.
- To Download The File [Hello_World](URL_OF_HW "Helloworld.Txt")

## Sample Examples
EXMPLS 3

## Discussion Topic
Here Is The Link To The Discussion Topic: DISCSN_URL

### Rubric 
| Cases | Points|
| ----- |----- |
| Base Points | 50 |

CRT_HW END  

C cc -o bigbag --std=gnu11 bigbag.c

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

assignment_codeval-0.0.2.tar.gz (19.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

assignment_codeval-0.0.2-py3-none-any.whl (17.9 kB view details)

Uploaded Python 3

File details

Details for the file assignment_codeval-0.0.2.tar.gz.

File metadata

  • Download URL: assignment_codeval-0.0.2.tar.gz
  • Upload date:
  • Size: 19.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for assignment_codeval-0.0.2.tar.gz
Algorithm Hash digest
SHA256 9a0508921d309b136f75ef52ef3286c6fb22734e9cae7fba2af68ac0359c8405
MD5 b4c53dec7f714e27c0abb6aa5c603809
BLAKE2b-256 030e7bb6a5322d04a907b60e4e5c5a3a0baf6b85e2c6346c78d4666542ab852e

See more details on using hashes here.

File details

Details for the file assignment_codeval-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for assignment_codeval-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3f41af82d6ce7bb38b2b3e0902059b66ab4b9c8c819fce95ecac2894e793ab7a
MD5 8ed2b0bb51ee7d472d65aa0639da63aa
BLAKE2b-256 d12c3b0c28101fe4575d7beb77336aab2b7eea9e6ef267edb1cf0144348a781a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page