mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 04:27:51 +02:00
Previously we had a few customized Gradle build task to manage the Docker container for provisioning browser and ChromeDriverService used by WebDriver tests. This CL changed to use a java library from testcontainers.org to achieve the same purpose. The main benefit of it is that we can expect to run the WebDriver tests from IDE going forward. Also, this CL refactored the structure of WebDriver related classes to have JUnit rule to manage the lifecycle of WebDriver instance, this is also compatible with the API from testcontainers library. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=241539861
101 lines
4.2 KiB
Java
101 lines
4.2 KiB
Java
// Copyright 2018 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// Licensed 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 google.registry.webdriver;
|
|
|
|
import static google.registry.server.Fixture.BASIC;
|
|
import static google.registry.server.Route.route;
|
|
|
|
import com.googlecode.objectify.ObjectifyFilter;
|
|
import google.registry.model.ofy.OfyFilter;
|
|
import google.registry.module.frontend.FrontendServlet;
|
|
import google.registry.server.RegistryTestServer;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.openqa.selenium.By;
|
|
|
|
/** Registrar Console Screenshot Differ tests. */
|
|
@RunWith(RepeatableRunner.class)
|
|
public class RegistrarCreateConsoleScreenshotTest extends WebDriverTestCase {
|
|
|
|
@Rule
|
|
public final TestServerRule server =
|
|
new TestServerRule.Builder()
|
|
.setRunfiles(RegistryTestServer.RUNFILES)
|
|
.setRoutes(route("/registrar-create", FrontendServlet.class))
|
|
.setFilters(ObjectifyFilter.class, OfyFilter.class)
|
|
.setFixtures(BASIC)
|
|
.setEmail("Marla.Singer@google.com")
|
|
.build();
|
|
|
|
@Test
|
|
public void get_owner_fails() throws Throwable {
|
|
driver.get(server.getUrl("/registrar-create"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("unauthorized");
|
|
}
|
|
|
|
@Test
|
|
public void get_admin_succeeds() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar-create"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("formEmpty");
|
|
driver.findElement(By.id("clientId")).sendKeys("my-name");
|
|
driver.findElement(By.id("name")).sendKeys("registrar name");
|
|
driver
|
|
.findElement(By.id("billingAccount"))
|
|
.sendKeys(""
|
|
+ "USD=12345678-abcd-1234-5678-cba987654321\n"
|
|
+ "JPY=aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee");
|
|
driver.findElement(By.id("driveId")).sendKeys("drive-id");
|
|
driver.findElement(By.id("ianaId")).sendKeys("15263");
|
|
driver.findElement(By.id("referralEmail")).sendKeys("email@icann.example");
|
|
driver.findElement(By.id("consoleUserEmail")).sendKeys("my-name@registry.example");
|
|
driver.findElement(By.id("street1")).sendKeys("123 Street st.");
|
|
driver.findElement(By.id("city")).sendKeys("Citysville");
|
|
driver.findElement(By.id("countryCode")).sendKeys("fr");
|
|
driver.findElement(By.id("password")).sendKeys("StRoNgPaSsWoRd");
|
|
driver.findElement(By.id("passcode")).sendKeys("01234");
|
|
driver.diffPage("formFilled");
|
|
driver.findElement(By.id("submit-button")).click();
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("createResult");
|
|
}
|
|
|
|
@Test
|
|
public void get_admin_fails_badEmail() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar-create"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.findElement(By.id("clientId")).sendKeys("my-name");
|
|
driver.findElement(By.id("name")).sendKeys("registrar name");
|
|
driver
|
|
.findElement(By.id("billingAccount"))
|
|
.sendKeys(""
|
|
+ "USD=12345678-abcd-1234-5678-cba987654321\n"
|
|
+ "JPY=aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee");
|
|
driver.findElement(By.id("driveId")).sendKeys("drive-id");
|
|
driver.findElement(By.id("ianaId")).sendKeys("15263");
|
|
driver.findElement(By.id("referralEmail")).sendKeys("email@icann.example");
|
|
driver.findElement(By.id("consoleUserEmail")).sendKeys("bad email");
|
|
driver.findElement(By.id("street1")).sendKeys("123 Street st.");
|
|
driver.findElement(By.id("city")).sendKeys("Citysville");
|
|
driver.findElement(By.id("countryCode")).sendKeys("fr");
|
|
driver.findElement(By.id("submit-button")).click();
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("createResultFailed");
|
|
}
|
|
}
|