kezhenxu94
3 years ago
committed by
GitHub
11 changed files with 321 additions and 17 deletions
@ -0,0 +1,139 @@
|
||||
/* |
||||
* Licensed to Apache Software Foundation (ASF) under one or more contributor |
||||
* license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright |
||||
* ownership. Apache Software Foundation (ASF) licenses this file to you under |
||||
* the Apache License, Version 2.0 (the "License"); you may |
||||
* not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, |
||||
* software distributed under the License is distributed on an |
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
||||
* KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations |
||||
* under the License. |
||||
*/ |
||||
|
||||
package org.apache.dolphinscheduler.e2e.cases; |
||||
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
import static org.awaitility.Awaitility.await; |
||||
|
||||
import org.apache.dolphinscheduler.e2e.core.DolphinScheduler; |
||||
import org.apache.dolphinscheduler.e2e.pages.LoginPage; |
||||
import org.apache.dolphinscheduler.e2e.pages.security.SecurityPage; |
||||
import org.apache.dolphinscheduler.e2e.pages.security.TenantPage; |
||||
import org.apache.dolphinscheduler.e2e.pages.security.UserPage; |
||||
|
||||
import org.junit.jupiter.api.AfterAll; |
||||
import org.junit.jupiter.api.BeforeAll; |
||||
import org.junit.jupiter.api.Order; |
||||
import org.junit.jupiter.api.Test; |
||||
import org.openqa.selenium.By; |
||||
import org.openqa.selenium.WebElement; |
||||
import org.openqa.selenium.remote.RemoteWebDriver; |
||||
|
||||
@DolphinScheduler(composeFiles = "docker/basic/docker-compose.yaml") |
||||
class UserE2ETest { |
||||
private static final String tenant = System.getProperty("user.name"); |
||||
private static final String user = "test_user"; |
||||
private static final String password = "test_user123"; |
||||
private static final String email = "test_user@gmail.com"; |
||||
private static final String phone = "15800000000"; |
||||
|
||||
private static final String editUser = "edit_test_user"; |
||||
private static final String editPassword = "edit_test_user123"; |
||||
private static final String editEmail = "edit_test_user@gmail.com"; |
||||
private static final String editPhone = "15800000001"; |
||||
|
||||
private static RemoteWebDriver browser; |
||||
|
||||
@BeforeAll |
||||
public static void setup() { |
||||
new LoginPage(browser) |
||||
.login("admin", "dolphinscheduler123") |
||||
.goToNav(SecurityPage.class) |
||||
.goToTab(TenantPage.class) |
||||
.create(tenant) |
||||
.goToNav(SecurityPage.class) |
||||
.goToTab(UserPage.class); |
||||
} |
||||
|
||||
@AfterAll |
||||
public static void cleanup() { |
||||
new SecurityPage(browser) |
||||
.goToTab(TenantPage.class) |
||||
.delete(tenant) |
||||
; |
||||
} |
||||
|
||||
@Test |
||||
@Order(1) |
||||
void testCreateUser() { |
||||
final UserPage page = new UserPage(browser); |
||||
|
||||
page.create(user, password, email, phone); |
||||
|
||||
await().untilAsserted(() -> { |
||||
browser.navigate().refresh(); |
||||
|
||||
assertThat(page.userList()) |
||||
.as("User list should contain newly-created user") |
||||
.extracting(WebElement::getText) |
||||
.anyMatch(it -> it.contains(user)); |
||||
}); |
||||
} |
||||
|
||||
@Test |
||||
@Order(20) |
||||
void testCreateDuplicateUser() { |
||||
final UserPage page = new UserPage(browser); |
||||
|
||||
page.create(user, password, email, phone); |
||||
|
||||
await().untilAsserted(() -> |
||||
assertThat(browser.findElement(By.tagName("body")).getText()) |
||||
.contains("already exists") |
||||
); |
||||
|
||||
page.createUserForm().buttonCancel().click(); |
||||
} |
||||
|
||||
@Test |
||||
@Order(30) |
||||
void testEditUser() { |
||||
final UserPage page = new UserPage(browser); |
||||
page.update(user, editUser, editPassword, editEmail, editPhone); |
||||
|
||||
await().untilAsserted(() -> { |
||||
browser.navigate().refresh(); |
||||
assertThat(page.userList()) |
||||
.as("User list should contain newly-modified User") |
||||
.extracting(WebElement::getText) |
||||
.anyMatch(it -> it.contains(editUser)); |
||||
}); |
||||
} |
||||
|
||||
|
||||
@Test |
||||
@Order(40) |
||||
void testDeleteUser() { |
||||
final UserPage page = new UserPage(browser); |
||||
|
||||
page.delete(editUser); |
||||
|
||||
await().untilAsserted(() -> { |
||||
browser.navigate().refresh(); |
||||
|
||||
assertThat( |
||||
page.userList() |
||||
).noneMatch( |
||||
it -> it.getText().contains(user) || it.getText().contains(editUser) |
||||
); |
||||
}); |
||||
} |
||||
} |
@ -0,0 +1,148 @@
|
||||
/* |
||||
* Licensed to Apache Software Foundation (ASF) under one or more contributor |
||||
* license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright |
||||
* ownership. Apache Software Foundation (ASF) licenses this file to you under |
||||
* the Apache License, Version 2.0 (the "License"); you may |
||||
* not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, |
||||
* software distributed under the License is distributed on an |
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
||||
* KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations |
||||
* under the License. |
||||
*/ |
||||
|
||||
package org.apache.dolphinscheduler.e2e.pages.security; |
||||
|
||||
import org.apache.dolphinscheduler.e2e.pages.common.NavBarPage; |
||||
|
||||
import java.util.List; |
||||
|
||||
import org.openqa.selenium.By; |
||||
import org.openqa.selenium.WebElement; |
||||
import org.openqa.selenium.remote.RemoteWebDriver; |
||||
import org.openqa.selenium.support.FindBy; |
||||
import org.openqa.selenium.support.FindBys; |
||||
import org.openqa.selenium.support.PageFactory; |
||||
|
||||
import lombok.Getter; |
||||
|
||||
@Getter |
||||
public final class UserPage extends NavBarPage implements SecurityPage.Tab { |
||||
@FindBy(id = "btnCreateUser") |
||||
private WebElement buttonCreateUser; |
||||
|
||||
@FindBy(className = "items") |
||||
private List<WebElement> userList; |
||||
|
||||
@FindBys({ |
||||
@FindBy(className = "el-popconfirm"), |
||||
@FindBy(className = "el-button--primary"), |
||||
}) |
||||
private List<WebElement> buttonConfirm; |
||||
|
||||
private final UserForm createUserForm = new UserForm(); |
||||
private final UserForm editUserForm = new UserForm(); |
||||
|
||||
|
||||
public UserPage(RemoteWebDriver driver) { |
||||
super(driver); |
||||
} |
||||
|
||||
public UserPage create(String user, String password, String email, String phone) { |
||||
buttonCreateUser().click(); |
||||
|
||||
createUserForm().inputUserName().sendKeys(user); |
||||
createUserForm().inputUserPassword().sendKeys(password); |
||||
createUserForm().inputEmail().sendKeys(email); |
||||
createUserForm().inputPhone().sendKeys(phone); |
||||
createUserForm().buttonSubmit().click(); |
||||
|
||||
return this; |
||||
} |
||||
|
||||
public UserPage update(String user, String editUser, String editPassword, String editEmail, String editPhone) { |
||||
userList() |
||||
.stream() |
||||
.filter(it -> it.findElement(By.className("name")).getAttribute("innerHTML").contains(user)) |
||||
.flatMap(it -> it.findElements(By.className("edit")).stream()) |
||||
.filter(WebElement::isDisplayed) |
||||
.findFirst() |
||||
.orElseThrow(() -> new RuntimeException("No edit button in user list")) |
||||
.click(); |
||||
|
||||
editUserForm().inputUserName().clear(); |
||||
editUserForm().inputUserName().sendKeys(editUser); |
||||
editUserForm().inputUserPassword().clear(); |
||||
editUserForm().inputUserPassword().sendKeys(editPassword); |
||||
editUserForm().inputEmail().clear(); |
||||
editUserForm().inputEmail().sendKeys(editEmail); |
||||
editUserForm().inputPhone().clear(); |
||||
editUserForm().inputPhone().sendKeys(editPhone); |
||||
editUserForm().buttonSubmit().click(); |
||||
|
||||
return this; |
||||
} |
||||
|
||||
public UserPage delete(String user) { |
||||
userList() |
||||
.stream() |
||||
.filter(it -> it.findElement(By.className("name")).getAttribute("innerHTML").contains(user)) |
||||
.flatMap(it -> it.findElements(By.className("delete")).stream()) |
||||
.filter(WebElement::isDisplayed) |
||||
.findFirst() |
||||
.orElseThrow(() -> new RuntimeException("No delete button in user list")) |
||||
.click(); |
||||
|
||||
buttonConfirm() |
||||
.stream() |
||||
.filter(WebElement::isDisplayed) |
||||
.findFirst() |
||||
.orElseThrow(() -> new RuntimeException("No confirm button when deleting")) |
||||
.click(); |
||||
|
||||
return this; |
||||
} |
||||
|
||||
@Getter |
||||
public class UserForm { |
||||
UserForm() { |
||||
PageFactory.initElements(driver, this); |
||||
} |
||||
|
||||
@FindBy(id = "inputUserName") |
||||
private WebElement inputUserName; |
||||
|
||||
@FindBy(id = "inputUserPassword") |
||||
private WebElement inputUserPassword; |
||||
|
||||
@FindBy(id = "selectTenant") |
||||
private WebElement selectTenant; |
||||
|
||||
@FindBy(id = "selectQueue") |
||||
private WebElement selectQueue; |
||||
|
||||
@FindBy(id = "inputEmail") |
||||
private WebElement inputEmail; |
||||
|
||||
@FindBy(id = "inputPhone") |
||||
private WebElement inputPhone; |
||||
|
||||
@FindBy(id = "radioStateEnable") |
||||
private WebElement radioStateEnable; |
||||
|
||||
@FindBy(id = "radioStateDisable") |
||||
private WebElement radioStateDisable; |
||||
|
||||
@FindBy(id = "btnSubmit") |
||||
private WebElement buttonSubmit; |
||||
|
||||
@FindBy(id = "btnCancel") |
||||
private WebElement buttonCancel; |
||||
} |
||||
} |
Loading…
Reference in new issue