mirror of
https://github.com/google/nomulus.git
synced 2025-05-09 16:28:21 +02:00
Replace the two drive links on the "contact us" page with values that can be driven from the config. The drive links are the link to the technical documentation folder and the link to the registrar's transaction activity reports. The former is a straightforward static replacement, but the latter is derived from a per-registrar Google Drive id which must be formatted using a template from the config module. Note: This currently requires adding the transaction activity URL template to the old-style RegistryConfig class instead of the daggerized ConfigModule because this is the easiest way to pass it though to the non-daggerized RegistrarServlet. In an upcoming CL, I'll convert RegistrarServlet to RegistrarAction and then I'll be able to make this template injectable. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=137518466
490 lines
19 KiB
JavaScript
490 lines
19 KiB
JavaScript
// Copyright 2016 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.
|
||
|
||
goog.setTestOnly();
|
||
|
||
goog.require('goog.History');
|
||
goog.require('goog.dispose');
|
||
goog.require('goog.dom');
|
||
goog.require('goog.soy');
|
||
goog.require('goog.testing.MockControl');
|
||
goog.require('goog.testing.PropertyReplacer');
|
||
goog.require('goog.testing.asserts');
|
||
goog.require('goog.testing.jsunit');
|
||
goog.require('goog.testing.mockmatchers');
|
||
goog.require('goog.testing.net.XhrIo');
|
||
goog.require('registry.registrar.Console');
|
||
goog.require('registry.soy.registrar.console');
|
||
goog.require('registry.testing');
|
||
|
||
|
||
var $ = goog.dom.getRequiredElement;
|
||
var _ = goog.testing.mockmatchers.ignoreArgument;
|
||
var stubs = new goog.testing.PropertyReplacer();
|
||
var mocks = new goog.testing.MockControl();
|
||
|
||
var historyMock;
|
||
var registrarConsole;
|
||
|
||
|
||
function setUp() {
|
||
registry.testing.addToDocument('<div id="test"/>');
|
||
registry.testing.addToDocument('<div class="kd-butterbar"/>');
|
||
goog.soy.renderElement($('test'), registry.soy.registrar.console.main, {
|
||
xsrfToken: 'ignore',
|
||
username: 'jart',
|
||
logoutUrl: 'https://justinetunney.com',
|
||
isAdmin: true,
|
||
clientId: 'ignore',
|
||
showPaymentLink: false,
|
||
logoFilename: 'logo.png',
|
||
productName: 'Nomulus',
|
||
integrationEmail: 'integration@example.com',
|
||
supportEmail: 'support@example.com',
|
||
announcementsEmail: 'announcement@example.com',
|
||
supportPhoneNumber: '+1 (888) 555 0123',
|
||
technicalDocsUrl: 'http://example.com/techdocs'
|
||
});
|
||
stubs.setPath('goog.net.XhrIo', goog.testing.net.XhrIo);
|
||
|
||
historyMock = mocks.createStrictMock(goog.History);
|
||
mocks.createConstructorMock(goog, 'History')().$returns(historyMock);
|
||
historyMock.addEventListener(_, _, _);
|
||
historyMock.setEnabled(true);
|
||
|
||
mocks.$replayAll();
|
||
registrarConsole = new registry.registrar.Console({
|
||
xsrfToken: '☢',
|
||
clientId: 'jartine'
|
||
});
|
||
mocks.$verifyAll();
|
||
}
|
||
|
||
|
||
function tearDown() {
|
||
goog.dispose(registrarConsole);
|
||
stubs.reset();
|
||
mocks.$tearDown();
|
||
goog.testing.net.XhrIo.cleanup();
|
||
}
|
||
|
||
|
||
/** Handles EPP login. */
|
||
function handleLogin() {
|
||
var request = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <command>' +
|
||
' <login>' +
|
||
' <clID>jartine</clID>' +
|
||
' <pw>undefined</pw>' +
|
||
' <options>' +
|
||
' <version>1.0</version>' +
|
||
' <lang>en</lang>' +
|
||
' </options>' +
|
||
' <svcs>' +
|
||
' <objURI>urn:ietf:params:xml:ns:host-1.0</objURI>' +
|
||
' <objURI>urn:ietf:params:xml:ns:domain-1.0</objURI>' +
|
||
' <objURI>urn:ietf:params:xml:ns:contact-1.0</objURI>' +
|
||
' </svcs>' +
|
||
' </login>' +
|
||
' <clTRID>asdf-1235</clTRID>' +
|
||
' </command>' +
|
||
'</epp>');
|
||
var response = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <response>' +
|
||
' <result code="2002">' +
|
||
' <msg>Registrar is already logged in</msg>' +
|
||
' </result>' +
|
||
' <trID>' +
|
||
' <clTRID>asdf-1235</clTRID>' +
|
||
' <svTRID>ytk1RO+8SmaDQxrTIdulnw==-3</svTRID>' +
|
||
' </trID>' +
|
||
' </response>' +
|
||
'</epp>');
|
||
var xhr = goog.testing.net.XhrIo.getSendInstances().pop();
|
||
assertTrue(xhr.isActive());
|
||
assertEquals('/registrar-xhr', xhr.getLastUri());
|
||
assertEquals('☢', xhr.getLastRequestHeaders().get('X-CSRF-Token'));
|
||
registry.testing.assertXmlEquals(request, xhr.getLastContent());
|
||
xhr.simulateResponse(200, response);
|
||
}
|
||
|
||
|
||
function testView() {
|
||
historyMock.$reset();
|
||
historyMock.getToken().$returns('domain/justine.lol').$anyTimes();
|
||
|
||
mocks.$replayAll();
|
||
|
||
registrarConsole.handleHashChange();
|
||
handleLogin();
|
||
|
||
var request = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <command>' +
|
||
' <info>' +
|
||
' <domain:info xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name hosts="all">justine.lol</domain:name>' +
|
||
' </domain:info>' +
|
||
' </info>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' </command>' +
|
||
'</epp>');
|
||
var response = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <response>' +
|
||
' <result code="1000">' +
|
||
' <msg>Command completed successfully</msg>' +
|
||
' </result>' +
|
||
' <resData>' +
|
||
' <domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name>justine.lol</domain:name>' +
|
||
' <domain:roid>6-roid</domain:roid>' +
|
||
' <domain:status s="inactive"/>' +
|
||
' <domain:registrant>GK Chesterton</domain:registrant>' +
|
||
' <domain:contact type="admin"><justine></domain:contact>' +
|
||
' <domain:contact type="billing">candycrush</domain:contact>' +
|
||
' <domain:contact type="tech">krieger</domain:contact>' +
|
||
' <domain:ns>' +
|
||
' <domain:hostObj>ns1.justine.lol</domain:hostObj>' +
|
||
' <domain:hostObj>ns2.justine.lol</domain:hostObj>' +
|
||
' </domain:ns>' +
|
||
' <domain:host>ns1.justine.lol</domain:host>' +
|
||
' <domain:clID>justine</domain:clID>' +
|
||
' <domain:crID>justine</domain:crID>' +
|
||
' <domain:crDate>2014-07-10T02:17:02Z</domain:crDate>' +
|
||
' <domain:exDate>2015-07-10T02:17:02Z</domain:exDate>' +
|
||
' <domain:authInfo>' +
|
||
' <domain:pw>lolcat</domain:pw>' +
|
||
' </domain:authInfo>' +
|
||
' </domain:infData>' +
|
||
' </resData>' +
|
||
' <trID>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' <svTRID>ytk1RO+8SmaDQxrTIdulnw==-4</svTRID>' +
|
||
' </trID>' +
|
||
' </response>' +
|
||
'</epp>');
|
||
var xhr = goog.testing.net.XhrIo.getSendInstances().pop();
|
||
assertTrue('XHR is inactive.', xhr.isActive());
|
||
assertEquals('/registrar-xhr', xhr.getLastUri());
|
||
assertEquals('☢', xhr.getLastRequestHeaders().get('X-CSRF-Token'));
|
||
registry.testing.assertXmlEquals(request, xhr.getLastContent());
|
||
xhr.simulateResponse(200, response);
|
||
assertEquals('We require more vespene gas.',
|
||
0, goog.testing.net.XhrIo.getSendInstances().length);
|
||
|
||
mocks.$verifyAll();
|
||
|
||
assertTrue('Form should be read-only.', $('domain:exDate').readOnly);
|
||
assertContains('justine.lol', $('reg-content').innerHTML);
|
||
assertEquals('2015-07-10T02:17:02Z', $('domain:exDate').value);
|
||
assertEquals('GK Chesterton', $('domain:registrant').value);
|
||
assertEquals('<justine>', $('domain:contact[0].value').value);
|
||
assertEquals('candycrush', $('domain:contact[1].value').value);
|
||
assertEquals('krieger', $('domain:contact[2].value').value);
|
||
assertEquals('lolcat', $('domain:authInfo.domain:pw').value);
|
||
assertEquals('ns1.justine.lol', $('domain:ns.domain:hostObj[0].value').value);
|
||
assertEquals('ns2.justine.lol', $('domain:ns.domain:hostObj[1].value').value);
|
||
}
|
||
|
||
|
||
function testEdit() {
|
||
testView();
|
||
|
||
historyMock.$reset();
|
||
|
||
mocks.$replayAll();
|
||
|
||
registry.testing.click($('reg-app-btn-edit'));
|
||
assertFalse('Form should be edible.', $('domain:exDate').readOnly);
|
||
$('domain:registrant').value = 'Jonathan Swift';
|
||
$('domain:authInfo.domain:pw').value = '(✿◕‿◕)ノ';
|
||
|
||
registry.testing.click($('reg-app-btn-save'));
|
||
|
||
var request = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <command>' +
|
||
' <update>' +
|
||
' <domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name>justine.lol</domain:name>' +
|
||
' <domain:chg>' +
|
||
' <domain:registrant>Jonathan Swift</domain:registrant>' +
|
||
' <domain:authInfo>' +
|
||
' <domain:pw>(✿◕‿◕)ノ</domain:pw>' +
|
||
' </domain:authInfo>' +
|
||
' </domain:chg>' +
|
||
' </domain:update>' +
|
||
' </update>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' </command>' +
|
||
'</epp>');
|
||
var response = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <response>' +
|
||
' <result code="1000">' +
|
||
' <msg>This world is built from a million lies.</msg>' +
|
||
' </result>' +
|
||
' <trID>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' <svTRID>214CjbYuTsijoP8sgyFUNg==-e</svTRID>' +
|
||
' </trID>' +
|
||
' </response>' +
|
||
'</epp>');
|
||
var xhr = goog.testing.net.XhrIo.getSendInstances().pop();
|
||
assertTrue('XHR is inactive.', xhr.isActive());
|
||
assertEquals('/registrar-xhr', xhr.getLastUri());
|
||
assertEquals('☢', xhr.getLastRequestHeaders().get('X-CSRF-Token'));
|
||
registry.testing.assertXmlEquals(request, xhr.getLastContent());
|
||
xhr.simulateResponse(200, response);
|
||
|
||
request = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <command>' +
|
||
' <info>' +
|
||
' <domain:info xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name hosts="all">justine.lol</domain:name>' +
|
||
' </domain:info>' +
|
||
' </info>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' </command>' +
|
||
'</epp>');
|
||
response = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <response>' +
|
||
' <result code="1000">' +
|
||
' <msg>How can we live in the land of the dead?</msg>' +
|
||
' </result>' +
|
||
' <resData>' +
|
||
' <domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name>justine.lol</domain:name>' +
|
||
' <domain:roid>6-roid</domain:roid>' +
|
||
' <domain:status s="inactive"/>' +
|
||
' <domain:registrant>Jonathan Swift</domain:registrant>' +
|
||
' <domain:contact type="admin"><justine></domain:contact>' +
|
||
' <domain:contact type="billing">candycrush</domain:contact>' +
|
||
' <domain:contact type="tech">krieger</domain:contact>' +
|
||
' <domain:ns>' +
|
||
' <domain:hostObj>ns1.justine.lol</domain:hostObj>' +
|
||
' <domain:hostObj>ns2.justine.lol</domain:hostObj>' +
|
||
' </domain:ns>' +
|
||
' <domain:host>ns1.justine.lol</domain:host>' +
|
||
' <domain:clID>justine</domain:clID>' +
|
||
' <domain:crID>justine</domain:crID>' +
|
||
' <domain:crDate>2014-07-10T02:17:02Z</domain:crDate>' +
|
||
' <domain:exDate>2015-07-10T02:17:02Z</domain:exDate>' +
|
||
' <domain:authInfo>' +
|
||
' <domain:pw>(✿◕‿◕)ノ</domain:pw>' +
|
||
' </domain:authInfo>' +
|
||
' </domain:infData>' +
|
||
' </resData>' +
|
||
' <trID>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' <svTRID>ytk1RO+8SmaDQxrTIdulnw==-4</svTRID>' +
|
||
' </trID>' +
|
||
' </response>' +
|
||
'</epp>');
|
||
xhr = goog.testing.net.XhrIo.getSendInstances().pop();
|
||
assertTrue('XHR is inactive.', xhr.isActive());
|
||
assertEquals('/registrar-xhr', xhr.getLastUri());
|
||
assertEquals('☢', xhr.getLastRequestHeaders().get('X-CSRF-Token'));
|
||
registry.testing.assertXmlEquals(request, xhr.getLastContent());
|
||
xhr.simulateResponse(200, response);
|
||
assertEquals('We require more vespene gas.',
|
||
0, goog.testing.net.XhrIo.getSendInstances().length);
|
||
|
||
mocks.$verifyAll();
|
||
|
||
assertTrue($('domain:exDate').readOnly);
|
||
assertContains('justine.lol', $('reg-content').innerHTML);
|
||
assertEquals('2015-07-10T02:17:02Z', $('domain:exDate').value);
|
||
assertEquals('Jonathan Swift', $('domain:registrant').value);
|
||
assertEquals('<justine>', $('domain:contact[0].value').value);
|
||
assertEquals('candycrush', $('domain:contact[1].value').value);
|
||
assertEquals('krieger', $('domain:contact[2].value').value);
|
||
assertEquals('(✿◕‿◕)ノ', $('domain:authInfo.domain:pw').value);
|
||
assertEquals('ns1.justine.lol', $('domain:ns.domain:hostObj[0].value').value);
|
||
assertEquals('ns2.justine.lol', $('domain:ns.domain:hostObj[1].value').value);
|
||
}
|
||
|
||
|
||
function testEdit_cancel_restoresOriginalValues() {
|
||
testView();
|
||
|
||
registry.testing.click($('reg-app-btn-edit'));
|
||
assertFalse('Form should be edible.', $('domain:exDate').readOnly);
|
||
$('domain:registrant').value = 'Jonathan Swift';
|
||
$('domain:authInfo.domain:pw').value = '(✿◕‿◕)ノ';
|
||
|
||
registry.testing.click($('reg-app-btn-cancel'));
|
||
assertTrue('Form should be read-only.', $('domain:exDate').readOnly);
|
||
assertEquals('GK Chesterton', $('domain:registrant').value);
|
||
assertEquals('lolcat', $('domain:authInfo.domain:pw').value);
|
||
}
|
||
|
||
|
||
function testCreate() {
|
||
historyMock.$reset();
|
||
historyMock.getToken().$returns('domain').$anyTimes();
|
||
mocks.$replayAll();
|
||
registrarConsole.handleHashChange();
|
||
handleLogin();
|
||
mocks.$verifyAll();
|
||
|
||
assertFalse('Form should be edible.', $('domain:name').readOnly);
|
||
$('domain:name').value = 'bog.lol';
|
||
$('domain:period').value = '1';
|
||
$('domain:authInfo.domain:pw').value = 'attorney at lawl';
|
||
$('domain:registrant').value = 'Chris Pohl';
|
||
registry.testing.click($('domain-contact-add-button'));
|
||
$('domain:contact[0].value').value = 'BlutEngel';
|
||
$('domain:contact[0].@type').value = 'admin';
|
||
registry.testing.click($('domain-contact-add-button'));
|
||
$('domain:contact[1].value').value = 'Ravenous';
|
||
$('domain:contact[1].@type').value = 'tech';
|
||
registry.testing.click($('domain-contact-add-button'));
|
||
$('domain:contact[2].value').value = 'Dark Angels';
|
||
$('domain:contact[2].@type').value = 'billing';
|
||
|
||
historyMock.$reset();
|
||
mocks.$replayAll();
|
||
|
||
registry.testing.click($('reg-app-btn-save'));
|
||
|
||
var request = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <command>' +
|
||
' <create>' +
|
||
' <domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name>bog.lol</domain:name>' +
|
||
' <domain:period unit="y">1</domain:period>' +
|
||
' <domain:registrant>Chris Pohl</domain:registrant>' +
|
||
' <domain:contact type="admin">BlutEngel</domain:contact>' +
|
||
' <domain:contact type="tech">Ravenous</domain:contact>' +
|
||
' <domain:contact type="billing">Dark Angels</domain:contact>' +
|
||
' <domain:authInfo>' +
|
||
' <domain:pw>attorney at lawl</domain:pw>' +
|
||
' </domain:authInfo>' +
|
||
' </domain:create>' +
|
||
' </create>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' </command>' +
|
||
'</epp>');
|
||
var response = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <response>' +
|
||
' <result code="1000">' +
|
||
' <msg>Command completed successfully</msg>' +
|
||
' </result>' +
|
||
' <resData>' +
|
||
' <domain:creData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name>bog.lol</domain:name>' +
|
||
' <domain:crDate>2014-07-17T08:19:24Z</domain:crDate>' +
|
||
' <domain:exDate>2015-07-17T08:19:24Z</domain:exDate>' +
|
||
' </domain:creData>' +
|
||
' </resData>' +
|
||
' <trID>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' <svTRID>OBPI6JvEQfOUaO8qGf+IKA==-7</svTRID>' +
|
||
' </trID>' +
|
||
' </response>' +
|
||
'</epp>');
|
||
var xhr = goog.testing.net.XhrIo.getSendInstances().pop();
|
||
assertTrue('XHR is inactive.', xhr.isActive());
|
||
assertEquals('/registrar-xhr', xhr.getLastUri());
|
||
assertEquals('☢', xhr.getLastRequestHeaders().get('X-CSRF-Token'));
|
||
registry.testing.assertXmlEquals(request, xhr.getLastContent());
|
||
xhr.simulateResponse(200, response);
|
||
|
||
request = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <command>' +
|
||
' <info>' +
|
||
' <domain:info xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name hosts="all">bog.lol</domain:name>' +
|
||
' </domain:info>' +
|
||
' </info>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' </command>' +
|
||
'</epp>');
|
||
response = registry.testing.loadXml(
|
||
'<?xml version="1.0"?>' +
|
||
'<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">' +
|
||
' <response>' +
|
||
' <result code="1000">' +
|
||
' <msg>Command completed successfully</msg>' +
|
||
' </result>' +
|
||
' <resData>' +
|
||
' <domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">' +
|
||
' <domain:name>bog.lol</domain:name>' +
|
||
' <domain:roid>1f-roid</domain:roid>' +
|
||
' <domain:status s="inactive"/>' +
|
||
' <domain:registrant>Chris Pohl</domain:registrant>' +
|
||
' <domain:contact type="admin">BlutEngel</domain:contact>' +
|
||
' <domain:contact type="tech">Ravenous</domain:contact>' +
|
||
' <domain:contact type="billing">Dark Angels</domain:contact>' +
|
||
' <domain:clID>justine</domain:clID>' +
|
||
' <domain:crID>justine</domain:crID>' +
|
||
' <domain:crDate>2014-07-17T08:19:24Z</domain:crDate>' +
|
||
' <domain:exDate>2015-07-17T08:19:24Z</domain:exDate>' +
|
||
' <domain:authInfo>' +
|
||
' <domain:pw>attorney at lawl</domain:pw>' +
|
||
' </domain:authInfo>' +
|
||
' </domain:infData>' +
|
||
' </resData>' +
|
||
' <extension>' +
|
||
' <rgp:infData xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0">' +
|
||
' <rgp:rgpStatus s="addPeriod"/>' +
|
||
' </rgp:infData>' +
|
||
' </extension>' +
|
||
' <trID>' +
|
||
' <clTRID>abc-1234</clTRID>' +
|
||
' <svTRID>OBPI6JvEQfOUaO8qGf+IKA==-8</svTRID>' +
|
||
' </trID>' +
|
||
' </response>' +
|
||
'</epp>');
|
||
xhr = goog.testing.net.XhrIo.getSendInstances().pop();
|
||
assertTrue('XHR is inactive.', xhr.isActive());
|
||
assertEquals('/registrar-xhr', xhr.getLastUri());
|
||
assertEquals('☢', xhr.getLastRequestHeaders().get('X-CSRF-Token'));
|
||
registry.testing.assertXmlEquals(request, xhr.getLastContent());
|
||
xhr.simulateResponse(200, response);
|
||
assertEquals('We require more vespene gas.',
|
||
0, goog.testing.net.XhrIo.getSendInstances().length);
|
||
|
||
mocks.$verifyAll();
|
||
|
||
assertTrue('Form should be read-only.', $('domain:exDate').readOnly);
|
||
assertContains('bog.lol', $('reg-content').innerHTML);
|
||
assertEquals('2015-07-17T08:19:24Z', $('domain:exDate').value);
|
||
assertEquals('Chris Pohl', $('domain:registrant').value);
|
||
assertEquals('BlutEngel', $('domain:contact[0].value').value);
|
||
assertEquals('Ravenous', $('domain:contact[1].value').value);
|
||
assertEquals('Dark Angels', $('domain:contact[2].value').value);
|
||
assertEquals('attorney at lawl', $('domain:authInfo.domain:pw').value);
|
||
assertNull(goog.dom.getElement('domain:ns.domain:hostObj[0].value'));
|
||
}
|