mirror of
https://github.com/google/nomulus.git
synced 2025-06-23 21:00:50 +02:00
This change does a few things: 1. Partially externalized WebDriver tests by using ChromeDriver as an implementation of WebDriver API in the external build. 2. Refactored WebDriverRule.java to decouple the creation and using of WebDriver related stuff so we can have different implementations in internal and external builds. 3. Refactored the usage of some internal libraries to have a central place to store all of them to make it easier to remove them in the external build. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=233661757
373 lines
13 KiB
Java
373 lines
13 KiB
Java
// Copyright 2017 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 static google.registry.testing.DatastoreHelper.loadRegistrar;
|
|
import static google.registry.testing.DatastoreHelper.persistResource;
|
|
import static google.registry.util.DateTimeUtils.START_OF_TIME;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.googlecode.objectify.ObjectifyFilter;
|
|
import google.registry.model.ofy.OfyFilter;
|
|
import google.registry.module.frontend.FrontendServlet;
|
|
import google.registry.server.RegistryTestServer;
|
|
import google.registry.testing.CertificateSamples;
|
|
import org.junit.Ignore;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
import org.openqa.selenium.By;
|
|
import org.openqa.selenium.Dimension;
|
|
|
|
/** Registrar Console Screenshot Differ tests. */
|
|
@RunWith(JUnit4.class)
|
|
public class RegistrarConsoleScreenshotTest {
|
|
|
|
@Rule
|
|
public final TestServerRule server =
|
|
new TestServerRule.Builder()
|
|
.setRunfiles(RegistryTestServer.RUNFILES)
|
|
.setRoutes(
|
|
route("/registrar", FrontendServlet.class),
|
|
route("/registrar-ote-status", FrontendServlet.class),
|
|
route("/registrar-settings", FrontendServlet.class),
|
|
route("/registrar-xhr", FrontendServlet.class))
|
|
.setFilters(ObjectifyFilter.class, OfyFilter.class)
|
|
.setFixtures(BASIC)
|
|
.setEmail("Marla.Singer@google.com")
|
|
.build();
|
|
|
|
@Rule public final WebDriverRule driver = new WebDriverRule();
|
|
|
|
@Test
|
|
public void index_owner() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(1200, 2000));
|
|
driver.get(server.getUrl("/registrar"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
/** Admins have an extra "admin" tab. */
|
|
@Test
|
|
public void index_adminAndOwner() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.manage().window().setSize(new Dimension(1200, 2000));
|
|
driver.get(server.getUrl("/registrar"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
/** Admins who aren't owners still have all the tabs. */
|
|
@Test
|
|
public void index_admin() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.manage().window().setSize(new Dimension(1200, 2000));
|
|
// To make sure we're only ADMIN (and not also "OWNER"), we switch to the NewRegistrar we
|
|
// aren't in the contacts of
|
|
driver.get(server.getUrl("/registrar?clientId=NewRegistrar"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void contactUs() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#contact-us"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void settingsContact() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#contact-settings"));
|
|
Thread.sleep(1000);
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
/** Admins shouldn't have the "add" button */
|
|
@Test
|
|
public void settingsContact_asAdmin() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar?clientId=NewRegistrar#contact-settings"));
|
|
Thread.sleep(1000);
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void settingsContactItem() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#contact-settings/johndoe@theregistrar.com"));
|
|
Thread.sleep(1000);
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
/** Admins shouldn't have the "edit" button */
|
|
@Test
|
|
public void settingsContactItem_asAdmin() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar?clientId=NewRegistrar#contact-settings/janedoe@theregistrar.com"));
|
|
Thread.sleep(1000);
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void settingsContactEdit() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#contact-settings/johndoe@theregistrar.com"));
|
|
Thread.sleep(1000);
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void settingsAdmin_whenAdmin() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
// To make sure we're only ADMIN (and not also "OWNER"), we switch to the NewRegistrar we
|
|
// aren't in the contacts of
|
|
driver.get(server.getUrl("/registrar?clientId=NewRegistrar#admin-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("view");
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("edit");
|
|
}
|
|
|
|
/**
|
|
* Makes sure the user can't "manually" enter the admin-settings.
|
|
*
|
|
* <p>Users don't have the "admin setting" tab (see the {@link #index_owner()} test). However, we
|
|
* also want to make sure that if a user enter's the URL fragment manually they don't get the
|
|
* admin page.
|
|
*
|
|
* <p>Note that failure here is a UI issue only and not a security issue, since any "admin" change
|
|
* a user tries to do is validated on the backend and fails for non-admins.
|
|
*/
|
|
@Test
|
|
public void settingsAdmin_whenNotAdmin_showsHome() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#admin-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("view");
|
|
}
|
|
|
|
@Test
|
|
public void getOteStatus_noButtonWhenReal() throws Exception {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar#admin-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("result");
|
|
}
|
|
|
|
@Test
|
|
public void getOteStatus_notCompleted() throws Exception {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar?clientId=oteunfinished-1#admin-settings"));
|
|
driver.findElement(By.id("btn-ote-status")).click();
|
|
driver.findElement(By.id("ote-results-table")).click();
|
|
// the 'hover' styling takes a bit to go away--sleep so we don't flake
|
|
Thread.sleep(250);
|
|
driver.diffPage("result");
|
|
}
|
|
|
|
@Test
|
|
public void getOteStatus_completed() throws Exception {
|
|
server.setIsAdmin(true);
|
|
driver.get(server.getUrl("/registrar?clientId=otefinished-1#admin-settings"));
|
|
driver.waitForElement(By.id("btn-ote-status"));
|
|
driver.diffPage("before_click");
|
|
driver.findElement(By.id("btn-ote-status")).click();
|
|
driver.findElement(By.id("ote-results-table")).click();
|
|
// the 'hover' styling takes a bit to go away--sleep so we don't flake
|
|
Thread.sleep(250);
|
|
driver.diffPage("result");
|
|
}
|
|
|
|
@Test
|
|
public void settingsSecurity() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#security-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("view");
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("edit");
|
|
}
|
|
|
|
/** Admins shouldn't have the "edit" button */
|
|
@Test
|
|
public void settingsSecurity_asAdmin() throws Throwable {
|
|
server.setIsAdmin(true);
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar?clientId=NewRegistrar#security-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("view");
|
|
}
|
|
|
|
@Test
|
|
public void settingsSecurityWithCerts() throws Throwable {
|
|
server.runInAppEngineEnvironment(
|
|
() -> {
|
|
persistResource(
|
|
loadRegistrar("TheRegistrar")
|
|
.asBuilder()
|
|
.setClientCertificate(CertificateSamples.SAMPLE_CERT, START_OF_TIME)
|
|
.setFailoverClientCertificate(CertificateSamples.SAMPLE_CERT2, START_OF_TIME)
|
|
.build());
|
|
return null;
|
|
});
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#security-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("view");
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("edit");
|
|
}
|
|
|
|
@Test
|
|
public void settingsSecurityWithHashOnly() throws Throwable {
|
|
server.runInAppEngineEnvironment(
|
|
() -> {
|
|
persistResource(
|
|
loadRegistrar("TheRegistrar")
|
|
.asBuilder()
|
|
.setClientCertificateHash(CertificateSamples.SAMPLE_CERT_HASH)
|
|
.build());
|
|
return null;
|
|
});
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#security-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("view");
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("edit");
|
|
}
|
|
|
|
@Test
|
|
public void settingsWhois() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#whois-settings"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void settingsWhoisEdit() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#whois-settings"));
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
Thread.sleep(1000);
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void settingsWhoisEditError() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(1050, 2000));
|
|
driver.get(server.getUrl("/registrar#whois-settings"));
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
driver.setFormFieldsById(ImmutableMap.of("faxNumber", "cat"));
|
|
driver.waitForElement(By.id("reg-app-btn-save")).click();
|
|
Thread.sleep(1000);
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
// EPP pages aren't being included in launch, so temporarily disable the following tests.
|
|
|
|
@Test
|
|
public void domainCreate() throws Throwable {
|
|
// TODO(b/17675279): Change labels to unicode.
|
|
driver.get(server.getUrl("/registrar#domain"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
@Ignore("TODO(b/26984251): Unflake nameserver ordering.")
|
|
public void domainView() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#domain/love.xn--q9jyb4c"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
@Ignore("TODO(b/26984251): Unflake nameserver ordering.")
|
|
public void domainEdit() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#domain/love.xn--q9jyb4c"));
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
Thread.sleep(1000);
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void contactCreate() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#contact"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void contactView() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#contact/google"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void contactEdit() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#contact/google"));
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
Thread.sleep(1000);
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void hostCreate() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#host"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void hostView() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#host/ns1.love.xn--q9jyb4c"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void hostEdit() throws Throwable {
|
|
driver.get(server.getUrl("/registrar#host/ns1.love.xn--q9jyb4c"));
|
|
driver.waitForElement(By.id("reg-app-btn-edit")).click();
|
|
Thread.sleep(1000);
|
|
driver.diffPage("page");
|
|
}
|
|
|
|
@Test
|
|
public void indexPage_smallScrolledDown() throws Throwable {
|
|
driver.manage().window().setSize(new Dimension(400, 300));
|
|
driver.get(server.getUrl("/registrar"));
|
|
driver.waitForElement(By.tagName("h1"));
|
|
driver.executeScript("document.getElementById('reg-content-and-footer').scrollTop = 200");
|
|
Thread.sleep(500);
|
|
driver.diffPage("page");
|
|
}
|
|
}
|