@@ -54,9 +54,9 @@ Because there are some specific paths (depending on your setup) you need to adju
The database needs to contain a table to store this commands (for config see section config.json file, you can specify the table name there but the table needs to exists already).
**All arguments passed to the shell are wrapped by php `escapeshellarg`, Paths (and maybe other arguments) could contain spaces, wrap them inside double quotes `"a name"`**
...
...
@@ -136,10 +137,9 @@ Columns
- as this can get longer... for mysql mediumtext is recommended
#### Example
id | dateTime | traceString | processString | sourceCode
**Note** that the db config overwrites values in the config file!
...
...
@@ -269,14 +268,14 @@ If the config table has more than 1 row, the first row is taken!
### syntax
The request is a json object so the request should be from mime type application/json.
-**plang**: (string) the programming language to use (depends on the database table see database scheme / table / commands)
-**plang**: (string) the programming language to use (internal name) (depends on the database table see database scheme / table / commands)
-**allFiles**: (array) the files to use
-**fileName**: (string) the file name with extension
-**fileContent**: (string) the file content
-**mainFileNameWithExtension**: (string) the file with the main class / entry point
-**tests**: (array) the tests to execute
-**testId**: (int) is the id of the test to identify the test (and the related result)
-**testContent** (string/multi line string) the test content to use (depends on the used command) [MUST NO BE EMPTY (design decision)]
-**testId**: (int) is the id of the test to identify the test (and the related result) [any int is ok]
-**testContent** (string/multi line string) the test content to use (depends on the used command) [can be the empty string]
-**command**: (string) the command to call/execute (the test type e.g. blackBoxTest), see `constants.php > $s_supportedCommands` for supported test types
-**timeoutInMs**: (int) the timeout in ms for execution to wait before terminating the users program
-**compileTimeoutInMs** (int) the timeout in ms for compilation to wait before terminating the compiling
...
...
@@ -387,7 +386,7 @@ other fields
***runnerVersion**: (string | null) the test-runner version or null if the test-runner was not executed
***protocol**: (string) a string representing the output (could contain the error message. New line chars are encoded with **\\\r\\\n** (because json encode automaticall encodes \r\n to \\\n\\\n)
***protocol**: (string) a string representing the output (could contain the error message. New line chars are encoded with **\\\r\\\n** (because json encode automatically encodes \r\n to \\\n\\\n)
***testServerVersion**: (string) the test-server version
...
...
@@ -405,7 +404,7 @@ other fields
## Protocols
The Test-Runner uses `\n` new lines
The Test-Runner uses `\r\n` new lines
All protocols consists out of 2 parts
...
...
@@ -413,10 +412,10 @@ the first part is the header part and contains some misc data about the test run
the seconds part is the real conversion protocol between the test-runner and the user program
the two parts are separated by a `---\n` line
the two parts are separated by a `---\r\n` line
**the header part including the `---\n`** must be removed from the protocol!
**the header part including the `---\r\n`** must be removed from the protocol!
### Protocol Header part
...
...
@@ -494,7 +493,7 @@ but only if the user program actually ran and finished
* '**e**' is the expected user program exit code followed by a number (e.g. `e0`)
all other lines
* '**$**' are the arguments passed to the users program, starting with a $ sign (only if arguments were present)
* '**\$**' are the arguments passed to the users program, starting with a $ sign (only if arguments were present)
all other lines (meaning different by the first character):
* '**<**' indicating a line that was inputted to the users program
* '**>**' indicating a line that was read from the users program