summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use 'bash' as the default shell for operations scriptsRoberto Hueso Gómez2020-02-091-12/+28
|
* Use 'with' keyword for file readingRoberto Hueso Gómez2020-02-051-9/+4
| | | | | | This is applied to /software and /hardware file reads. We should use 'with' instead of opening and closing a file since this prevents that files stay open after an exception is raised.
* Use python f-strings for commands compositionRoberto Hueso Gómez2020-02-051-14/+13
|
* Fix /session executionRoberto Hueso Gómez2020-02-051-1/+4
| | | | The script now reads arguments correctly.
* Fix /image/restore execution and responseRoberto Hueso Gómez2020-02-052-1/+10
|
* Fix /image/create execution and responseRoberto Hueso Gómez2020-02-052-7/+12
|
* Convert main file from dos format to unix formatAlvaro Neira Ayuso2020-02-041-28/+28
| | | | Change from dos format to unix the whole main file.
* (BUG) Rename OG_SCRIPT_PATH to OG_PATHAlvaro Neira Ayuso2020-02-041-2/+2
|
* Fix /setup execution and responseRoberto Hueso Gómez2020-02-032-16/+17
|
* Fix parseGetConf(...) configuration parsingRoberto Hueso Gómez2020-02-033-27/+29
| | | | This patch also reformats the response to the /refresh command.
* add space after Content-Length and Content-TypeOpenGnSys Support Team2020-01-289-36/+36
| | | | ogAdmServer needs this space to work fine.
* Add /refresh testRoberto Hueso Gómez2020-01-211-0/+43
| | | | This test covers a correct request.
* Change POST /refresh to GET /refreshRoberto Hueso Gómez2020-01-212-6/+6
| | | | | This patch changes the HTTP method for /refresh and cleans up the implementation of the /refresh Linux operator.
* Fix /software command Linux operationRoberto Hueso Gómez2020-01-213-5/+12
| | | | | This patch runs the script InventarioSoftware with the right arguments. This also increases the recv buffer size for the test server.
* Add /software testRoberto Hueso Gómez2020-01-211-0/+38
| | | | This test covers a correct request.
* Fix /shell/run commands splittingRoberto Hueso Gómez2020-01-213-3/+3
| | | | This patch splits shell commands either with ';' or '\n'.
* Fix /hardware command Linux operationRoberto Hueso Gómez2020-01-212-3/+6
| | | | This patch runs the script InventarioHardware with the right arguments.
* Add /hardware testsRoberto Hueso Gómez2020-01-211-0/+32
| | | | This tests covers a correct request.
* Add test for /run/scheduleRoberto Hueso Gómez2020-01-191-0/+28
| | | | This test covers a correct request.
* Add test for non-existent functionRoberto Hueso Gómez2020-01-191-0/+33
|
* Add test for sequential /shell/run requestsRoberto Hueso Gómez2020-01-191-2/+25
| | | | | | This also fixes test bugs in the cases: - Malformed json - No json
* Add /probe tests for multiple probes and extra parameter in jsonRoberto Hueso Gómez2020-01-191-3/+32
|
* Remove unnecessary variables from test serverRoberto Hueso Gómez2020-01-191-3/+0
|
* (Clean-Up) Rename all the functions in ogRest to new ones more clearsAlvaro Neira Ayuso2020-01-192-42/+32
|
* (Clean-Up) Rename HTTPParser file to restRequestAlvaro Neira Ayuso2020-01-192-1/+1
|
* (Clean-Up) Modify restResponse to get the response using constructor and get ↵Alvaro Neira Ayuso2020-01-191-40/+81
| | | | function
* (Clean-Up) Rename HTTPParser to restRequestAlvaro Neira Ayuso2020-01-194-79/+79
|
* (Clean-Up) Rename cmd variable to bodyAlvaro Neira Ayuso2020-01-191-15/+15
|
* (Clean-Up) Rename cmd function/variables to use "run" syntaxAlvaro Neira Ayuso2020-01-193-6/+6
|
* (Clean-Up) Rename jsoncmd variable to json_paramAlvaro Neira Ayuso2020-01-191-14/+14
|
* Improve /image/create command responseAlvaro Neira Ayuso2020-01-192-0/+14
| | | | | | | | | | | With this new patch, the image/create command will create a response message with more information for the server. The new format is: {"disk" : "1", "partition" : "1", "code" : "1", "id" : "1", "name" : "test", "repository" : "192.168.2.4", "software" : "xyz"} "xyz" will be the output saved during the execution of InventarioSoftware in a specific path.
* Add Refresh commandAlvaro Neira Ayuso2020-01-192-16/+57
| | | | | | | | | | | | This patch allows us to execute refresh command using ogClient. This command gets all the configuration in our machine and send this information to the server. The format of the message that ogClient will send to the server will be: {"disk": "1", "partition_setup": [{"partition": "1", "code": "LINUX", "filesystem": "NTFS", "size": "498688", "format": "0"}, {"partition": "2", "code": "LINUX", "filesystem": "NTFS", "size": "498688", "format": "0"}, {"partition": "3", "code": "LINUX", "filesystem": "NTFS", "size": "498688", "format": "0"}]}
* Add image/create command for creating a new imageAlvaro Neira Ayuso2020-01-192-0/+43
| | | | | | | | | | | | | | | | This patch allows us to use a new support for creating images using ogClient. ogClient receives from the server a message which json body must be: {"disk" : "1", "partition" : "1", "code" : "1", "id" : "1", "name" : "test", "repository" : "192.168.2.4" } ogClient returns to the server the software inventory executed before create the image. The message for the server is: { "disk" : "0", "partition" : "1", "software" : "xyz" } "xyz" will be the output saved during the execution of InventarioSoftware in a specific path.
* (BUG) Include client parameter in restore commandAlvaro Neira Ayuso2020-01-191-1/+1
|
* Include License headerAlvaro Neira Ayuso2020-01-1914-1/+109
|
* Add stop commandAlvaro Neira Ayuso2020-01-192-35/+71
| | | | | This patch includes a new support for stopping all the process running on the ogClient.
* Execute cmd command using threadAlvaro Neira Ayuso2020-01-191-19/+18
| | | | This patch prepares the code for future stop command.
* Fix echo check for process_shellrun in ogRestRoberto Hueso Gómez2020-01-191-1/+1
|
* Add /shell/run testsRoberto Hueso Gómez2020-01-191-0/+65
| | | | | | | | These tests cover: - Correct request with echo - Correct request without echo - No json request - Malformed json request
* Change /probe from GET to POST in ogClientRoberto Hueso Gómez2020-01-191-3/+3
|
* Adapt client responses to the server'sRoberto Hueso Gómez2020-01-191-6/+9
| | | | Header parameters need to be sorted for the test server.
* Fix ogClient socket.error typoRoberto Hueso Gómez2020-01-191-1/+2
|
* Add /probe testsRoberto Hueso Gómez2020-01-191-0/+42
| | | | | | | These tests cover: - Correct request - No json request - Malformed json request
* Add unit testing basic structureRoberto Hueso Gómez2020-01-194-0/+66
|
* Change ogClient.py encoding from dos to unixRoberto Hueso gomez2020-01-191-123/+123
|
* Include echo option for returning shell outputAlvaro Neira Ayuso2020-01-192-17/+15
| | | | | | | | | This patch adds a new echo option in /shell/run command. In case that the option is set up to true, the server will receive in the response a json with the shell output. Otherwise, the server will receive a response message without json body. A side effect of this change is that the command /shell/output/ disapears.
* Send OPG (opengnsys) status when a probe command is receivedAlvaro Neira Ayuso2020-01-191-1/+3
|
* Improve setup command responseAlvaro Neira Ayuso2020-01-192-5/+31
| | | | | | | | | | This patch adds a new response support. This way allows us to send a new response message with more information about the partitions already set up. The format of the response is: { "disk" : "1", "cache" : "1", "cache_size" : "0", "partition_setup": [{"partition": "1", "code": "LINUX", "filesystem": "EMPTY", "size": "498688", "format": "0"}...]
* Catch execution errors during restore image commandAlvaro Neira Ayuso2020-01-192-6/+14
| | | | | | This patch allows us to send feedback to the server in case of error during the execution of the command. In case of error, ogClient will send an "Internal Error" http message.
* Improve hardware command response behaviorAlvaro Neira Ayuso2020-01-192-6/+19
| | | | | | | | | | | This patch give us a better support in case of error or success execution. In error cases, the new behavior is to send an Internal Error http message (500). Otherwise, the server will receive a message with a json with this format: { "hardware" : "xyz" } "xyz" is the output saved in a specific path during the execution of InventarioHardware.