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
135 lines
4.8 KiB
JavaScript
135 lines
4.8 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.dispose');
|
|
goog.require('goog.dom');
|
|
goog.require('goog.soy');
|
|
goog.require('goog.testing.MockControl');
|
|
goog.require('goog.testing.asserts');
|
|
goog.require('goog.testing.jsunit');
|
|
goog.require('registry.registrar.ConsoleTestUtil');
|
|
goog.require('registry.soy.registrar.console');
|
|
goog.require('registry.testing');
|
|
|
|
|
|
var $ = goog.dom.getRequiredElement;
|
|
|
|
var test = {
|
|
mockControl: new goog.testing.MockControl()
|
|
};
|
|
|
|
|
|
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: 'test',
|
|
username: 'blah',
|
|
logoutUrl: 'omg',
|
|
isAdmin: true,
|
|
clientId: 'daddy',
|
|
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'
|
|
});
|
|
registry.registrar.ConsoleTestUtil.setup(test);
|
|
}
|
|
|
|
|
|
function tearDown() {
|
|
goog.dispose(test.console);
|
|
test.mockControl.$tearDown();
|
|
}
|
|
|
|
|
|
/** Contact hash path should nav to contact page. */
|
|
function testVisitContact() {
|
|
registry.registrar.ConsoleTestUtil.visit(test, {
|
|
path: 'contact/pabloistrad',
|
|
rspXml: '<?xml version="1.0"?>' +
|
|
'<epp xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"' +
|
|
' xmlns:contact="urn:ietf:params:xml:ns:contact-1.0"' +
|
|
' xmlns:host="urn:ietf:params:xml:ns:host-1.0"' +
|
|
' xmlns:launch="urn:ietf:params:xml:ns:launch-1.0"' +
|
|
' xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0"' +
|
|
' xmlns="urn:ietf:params:xml:ns:epp-1.0"' +
|
|
' xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1"' +
|
|
' xmlns:mark="urn:ietf:params:xml:ns:mark-1.0">' +
|
|
' <response>' +
|
|
' <result code="1000">' +
|
|
' <msg>Command completed successfully</msg>' +
|
|
' </result>' +
|
|
' <resData>' +
|
|
' <contact:infData>' +
|
|
' <contact:id>pabloistrad</contact:id>' +
|
|
' <contact:roid>1-roid</contact:roid>' +
|
|
' <contact:status s="ok"/>' +
|
|
' <contact:postalInfo type="int">' +
|
|
' <contact:name>name2</contact:name>' +
|
|
' <contact:addr>' +
|
|
' <contact:street></contact:street>' +
|
|
' <contact:city>city2</contact:city>' +
|
|
' <contact:cc>US</contact:cc>' +
|
|
' </contact:addr>' +
|
|
' </contact:postalInfo>' +
|
|
' <contact:voice/>' +
|
|
' <contact:fax/>' +
|
|
' <contact:email>test2.ui@example.com</contact:email>' +
|
|
' <contact:clID>daddy</contact:clID>' +
|
|
' <contact:crID>daddy</contact:crID>' +
|
|
' <contact:crDate>2014-05-06T22:16:36Z</contact:crDate>' +
|
|
' <contact:upID>daddy</contact:upID>' +
|
|
' <contact:upDate>2014-05-07T16:20:07Z</contact:upDate>' +
|
|
' <contact:authInfo>' +
|
|
' <contact:pw>asdfasdf</contact:pw>' +
|
|
' </contact:authInfo>' +
|
|
' </contact:infData>' +
|
|
' </resData>' +
|
|
' <trID>' +
|
|
' <clTRID>abc-1234</clTRID>' +
|
|
' <svTRID>c4O3B0pRRKKSrrXsJvxP5w==-2</svTRID>' +
|
|
' </trID>' +
|
|
' </response>' +
|
|
'</epp>'
|
|
});
|
|
assertEquals(3, $('contact-postalInfo').childNodes.length);
|
|
}
|
|
|
|
|
|
/** Contact hash path should nav to contact page. */
|
|
function testEdit() {
|
|
testVisitContact();
|
|
registry.testing.assertVisible($('reg-app-btns-edit'));
|
|
registry.testing.click($('reg-app-btn-edit'));
|
|
registry.testing.assertHidden($('reg-app-btns-edit'));
|
|
registry.testing.assertVisible($('reg-app-btns-save'));
|
|
}
|
|
|
|
|
|
/** Contact hash path should nav to contact page. */
|
|
function testAddPostalInfo() {
|
|
testEdit();
|
|
var addPiBtn = $('domain-contact-postalInfo-add-button');
|
|
assertNull(addPiBtn.getAttribute('disabled'));
|
|
registry.testing.click(addPiBtn);
|
|
assertTrue(addPiBtn.hasAttribute('disabled'));
|
|
assertEquals(4, $('contact-postalInfo').childNodes.length);
|
|
}
|