Jsonlenium is a tool to perform E2E tests using JSON files.
Java is necessary to execute (Java 8 or later). Please install it.
$> git clone https://github.com/mapserver2007/Jsonlenium.git
$> cd Jsonlenium
$> .\gradlew uiTest -Ddriver=phantomjs -Dpath=C:\jsonlenium_test_files\test.json
$> .\gradlew uiParallelTest -Ddriver=phantomjs -Dpath=C:\jsonlenium_test_files\test.json -Ddivision=5
Available Gradle tasks:
Task | Desctiption |
---|---|
uiTest | Execute the E2E test. |
uiParallelTest | Execute the E2E test in parallel. |
uiTestCompile | It is implicitly called by a uiTest and uiParallelTest task, therefore do not need to explicitly execute it. |
cleanAll | Delete the compiled files. When updating the JSON test file, it needs to be executed. |
unitTest | Execute unit test. |
coverageTest | Execute unit test and coverage mesurement. |
Parameter | Description | Example | Required |
---|---|---|---|
-Ddriver | Driver used for execution (WebDriver). phantomjs/chrome/headlesschrome can be specified. |
-Ddriver=chrome | ◯ |
-Dpath | JSON test file path or directory path. | -Dpath=C:\test.json | ◯ |
-Ddivision | Number of partitions to allocate to one process when executing tests in parallel. Increasing the value of the division as the total number of tests increases increases the execution speed. Only for uiParallelTest task. Default value is 5. |
-Ddivision=5 | - |
-Dtimeout | Maximum response time of running test (sec). If the response becomes longer than the timeout time, it ends as an NG test. Timeout is unlimited if not specified. |
-Dtimeout=300 | - |
-i | Output the log as standard output (info level). | -i | - |
-d | Output the log as standard output (debug level). | -d | - |
JDK name | OS | build version | testing result |
---|---|---|---|
OpenJDK | windows | 1.8 (1.8.0_201) | ok |
OpenJDK | macosx | 1.8 (1.8.0_192) | ok |
AdoptOpenJDK | windows | 1.8 (1.8.0_202) | ok |
AdoptOpenJDK | macosx | 1.8 (1.8.0_202) | ok |
AdoptOpenJDK | windows | 11.0.2_9 | ok |
AdoptOpenJDK | macosx | 11.0.8 | ok |
amazon-corretto | windows | 1.8 (Corretto-8.202.08.2) | ok |
amazon-corretto | macosx | 1.8 (Corretto-8.202.08.2) | ok |
amazon-corretto | windows | 11.0 | ok |
amazon-corretto | macosx | 11.0 | ok |
Licensed under the MIT http://www.opensource.org/licenses/mit-license.php