dolphinscheduler/dolphinscheduler-api-test
Eric Gao 4545093c1b
[Improvement][API Test] Add API tests for worker group related APIs (#13936)
* Add worker group api test

* Add more cases

* Remove useless comments

* Remove useless code and add missing license header

* Remove debug logging

* Restore changes for testing
2023-04-26 12:03:42 +08:00
..
dolphinscheduler-api-test-case [Improvement][API Test] Add API tests for worker group related APIs (#13936) 2023-04-26 12:03:42 +08:00
dolphinscheduler-api-test-core [Improvement][API Test] Add API tests for worker group related APIs (#13936) 2023-04-26 12:03:42 +08:00
README.md [Doc][Style] Fix doc format once for all (#12006) 2022-09-17 11:33:32 +08:00
pom.xml [Feature][style] Add spotless maven plugin for automatic style fix. (#11272) 2022-08-06 19:29:23 +08:00

README.md

DolphinScheduler Backend API Test

Page Object Model

DolphinScheduler API test respects the Page Object Model (POM) design pattern. Every page of DolphinScheduler's api is abstracted into a class for better maintainability.

Example

The login page's api is abstracted as LoginPage , with the following fields,

public HttpResponse login(String username, String password) {
    Map<String, Object> params = new HashMap<>();

    params.put("userName", username);
    params.put("userPassword", password);

    RequestClient requestClient = new RequestClient();

    return requestClient.post("/login", null, params);
}

where userName, userPassword are the main elements on UI that we are interested in.

Test Environment Setup

DolphinScheduler API test uses testcontainers to set up the testing environment, with docker compose.

Typically, every test case needs one or more docker-compose.yaml files to set up all needed components, and expose the DolphinScheduler UI port for testing. You can use @DolphinScheduler(composeFiles = "") and pass the docker-compose.yaml files to automatically set up the environment in the test class.


@DolphinScheduler(composeFiles = "docker/tenant/docker-compose.yaml")
class TenantAPITest {
}