mirror of
https://github.com/google/nomulus.git
synced 2025-07-19 17:26:09 +02:00
mv com/google/domain/registry google/registry
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
This commit is contained in:
parent
a41677aea1
commit
5012893c1d
2396 changed files with 0 additions and 0 deletions
480
javatests/google/registry/ui/js/registrar/domain_test.js
Normal file
480
javatests/google/registry/ui/js/registrar/domain_test.js
Normal file
|
@ -0,0 +1,480 @@
|
|||
// Copyright 2016 The Domain Registry 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
|
||||
});
|
||||
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('☢', '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'));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue