SbloodyS commented on a change in pull request #8203: URL: https://github.com/apache/dolphinscheduler/pull/8203#discussion_r793299486
########## File path: dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UdfManageE2ETest.java ########## @@ -0,0 +1,220 @@ +/* + * Licensed to the 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. The 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 lombok.SneakyThrows; +import static org.assertj.core.api.Assertions.assertThat; +import static org.awaitility.Awaitility.await; + +import org.apache.dolphinscheduler.e2e.core.Constants; +import org.apache.dolphinscheduler.e2e.core.DolphinScheduler; +import org.apache.dolphinscheduler.e2e.pages.LoginPage; +import org.apache.dolphinscheduler.e2e.pages.resource.ResourcePage; +import org.apache.dolphinscheduler.e2e.pages.resource.UdfManagePage; +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.WebElement; +import org.openqa.selenium.remote.RemoteWebDriver; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.InputStream; +import java.net.URL; +import java.net.URLConnection; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Comparator; +import java.util.Objects; + +@DolphinScheduler(composeFiles = "docker/file-manage/docker-compose.yaml") +public class UdfManageE2ETest { + private static RemoteWebDriver browser; + + private static final String tenant = System.getProperty("user.name"); + + private static final String user = "admin"; + + private static final String password = "dolphinscheduler123"; + + private static final String email = "[email protected]"; + + private static final String phone = "15800000000"; + + private static final String testDirectoryName = "test_directory"; + + private static final String testRenameDirectoryName = "test_rename_directory"; + + private final String testUploadUdfFilePath = Constants.HOST_TMP_PATH.resolve(testUploadUdfFileName).toFile().getAbsolutePath(); + + private static final String testUploadUdfFileName = "hive-jdbc-3.1.2.jar"; + + private static final String testUploadUdfRenameFileName = "hive-jdbc.jar"; + + @BeforeAll + public static void setup() { + TenantPage tenantPage = new LoginPage(browser) + .login(user, password) + .create(tenant); + + await().untilAsserted(() -> assertThat(tenantPage.tenantList()) + .as("Tenant list should contain newly-created tenant") + .extracting(WebElement::getText) + .anyMatch(it -> it.contains(tenant))); + + tenantPage.goToNav(SecurityPage.class) + .goToTab(UserPage.class) + .update(user, user, password, email, phone) + .goToNav(ResourcePage.class) + .goToTab(UdfManagePage.class); + } + + @AfterAll + @SneakyThrows + public static void cleanup() { + Files.walk(Constants.HOST_CHROME_DOWNLOAD_PATH) + .sorted(Comparator.reverseOrder()) + .map(Path::toFile) + .forEach(File::delete); + } + + @Test + @Order(10) + void testCreateDirectory() { + final UdfManagePage page = new UdfManagePage(browser); + + page.createDirectory(testDirectoryName, "test_desc"); + + await().untilAsserted(() -> assertThat(page.udfList()) + .as("File list should contain newly-created file") + .extracting(WebElement::getText) + .anyMatch(it -> it.contains(testDirectoryName))); + } + + @Test + @Order(20) + void testRenameDirectory() { + final UdfManagePage page = new UdfManagePage(browser); + + page.rename(testDirectoryName, testRenameDirectoryName); + + await().untilAsserted(() -> { + browser.navigate().refresh(); + + assertThat(page.udfList()) + .as("File list should contain newly-created file") + .extracting(WebElement::getText) + .anyMatch(it -> it.contains(testRenameDirectoryName)); + }); + } + + @Test + @Order(30) + void testDeleteDirectory() { + final UdfManagePage page = new UdfManagePage(browser); + + page.delete(testRenameDirectoryName); + + await().untilAsserted(() -> { + browser.navigate().refresh(); + + assertThat( + page.udfList() + ).noneMatch( + it -> it.getText().contains(testRenameDirectoryName) + ); + }); + } + + @Test + @Order(40) + @SneakyThrows + void testUploadUdf() { + final UdfManagePage page = new UdfManagePage(browser); + + downloadFile("https://repo1.maven.org/maven2/org/apache/hive/hive-jdbc/3.1.2/hive-jdbc-3.1.2.jar", testUploadUdfFilePath); + + page.uploadFile(testUploadUdfFilePath); + + await().untilAsserted(() -> { + assertThat(page.udfList()) + .as("File list should contain newly-created file") + .extracting(WebElement::getText) + .anyMatch(it -> it.contains(testUploadUdfFileName)); + }); + } + + void downloadFile(String downloadUrl, String filePath) throws Exception { + int byteSum = 0; + int byteRead; + + URL url = new URL(downloadUrl); + + URLConnection conn = url.openConnection(); + InputStream inStream = conn.getInputStream(); + FileOutputStream fs = new FileOutputStream(filePath); Review comment: I was too careless. I'll fix it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
