summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0004_post_shell_run.py
Commit message (Collapse)AuthorAgeFilesLines
* #915 Test malformed payload for POST /shell/runRoberto Hueso Gómez2019-11-131-0/+9
| | | | | This test covers requests that do not contain 1 of the parameters in their payloads.
* #915 Extend REST API POST no payload tests to all remaining tests.Roberto Hueso Gómez2019-11-131-0/+4
| | | | | | | | | | | | | | | | | This patch extends tests for requests without any payload in the following REST API POST functions: - /clients - /wol - /shell/run - /shell/output - /session - /poweroff - /reboot - /stop - /refresh - /hardware - /software
* #915 Adapt POST /shell/run test to the 'echo' parameterRoberto Hueso Gómez2019-11-121-1/+3
|
* #915: Fix incorrect method and code in invalid GET requestsRoberto Hueso Gómez2019-09-181-2/+2
| | | | | Some tests should perform GET requests however they incorrectly use POST. Return codes for these tests have also been fixed.
* #915 Improve test output using unittest discoverJavier Sánchez Parra2019-07-051-0/+20
* Call the tests with python module unittest. In particular, the discover function. * Rename tests files to meet the default requirements of discover function.