google-nomulus/javatests/google/registry/rde/RdeMarshallerTest.java
gbrodman 15faefef25 Change the email address for the second test registrar
NewRegistrar will still have the email address "new.registrar@example.com" and TheRegistrar will now have the email address "the.registrar@example.com".

I noticed this when looking at the Spec11 testing code and this will make it easier to test that code later when we retrieve email addresses from the registrar datastore objects themselves.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=242676543
2019-04-11 14:52:43 -04:00

91 lines
4.1 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.rde;
import static com.google.common.truth.Truth.assertThat;
import static google.registry.testing.DatastoreHelper.loadRegistrar;
import static google.registry.xml.ValidationMode.STRICT;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ShardableTestCase;
import google.registry.xml.XmlTestUtils;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for {@link RdeMarshaller}. */
@RunWith(JUnit4.class)
public class RdeMarshallerTest extends ShardableTestCase {
private static final String DECLARATION =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
@Rule
public final AppEngineRule appEngine = AppEngineRule.builder()
.withDatastore()
.build();
@Test
public void testMarshalRegistrar_validData_producesXmlFragment() throws Exception {
DepositFragment fragment =
new RdeMarshaller(STRICT).marshalRegistrar(loadRegistrar("TheRegistrar"));
assertThat(fragment.type()).isEqualTo(RdeResourceType.REGISTRAR);
assertThat(fragment.error()).isEmpty();
String expected = ""
+ "<rdeRegistrar:registrar>\n"
+ " <rdeRegistrar:id>TheRegistrar</rdeRegistrar:id>\n"
+ " <rdeRegistrar:name>The Registrar</rdeRegistrar:name>\n"
+ " <rdeRegistrar:gurid>1</rdeRegistrar:gurid>\n"
+ " <rdeRegistrar:status>ok</rdeRegistrar:status>\n"
+ " <rdeRegistrar:postalInfo type=\"loc\">\n"
+ " <rdeRegistrar:addr>\n"
+ " <rdeRegistrar:street>123 Example Bőulevard</rdeRegistrar:street>\n"
+ " <rdeRegistrar:city>Williamsburg</rdeRegistrar:city>\n"
+ " <rdeRegistrar:sp>NY</rdeRegistrar:sp>\n"
+ " <rdeRegistrar:pc>11211</rdeRegistrar:pc>\n"
+ " <rdeRegistrar:cc>US</rdeRegistrar:cc>\n"
+ " </rdeRegistrar:addr>\n"
+ " </rdeRegistrar:postalInfo>\n"
+ " <rdeRegistrar:postalInfo type=\"int\">\n"
+ " <rdeRegistrar:addr>\n"
+ " <rdeRegistrar:street>123 Example Boulevard</rdeRegistrar:street>\n"
+ " <rdeRegistrar:city>Williamsburg</rdeRegistrar:city>\n"
+ " <rdeRegistrar:sp>NY</rdeRegistrar:sp>\n"
+ " <rdeRegistrar:pc>11211</rdeRegistrar:pc>\n"
+ " <rdeRegistrar:cc>US</rdeRegistrar:cc>\n"
+ " </rdeRegistrar:addr>\n"
+ " </rdeRegistrar:postalInfo>\n"
+ " <rdeRegistrar:voice>+1.2223334444</rdeRegistrar:voice>\n"
+ " <rdeRegistrar:email>the.registrar@example.com</rdeRegistrar:email>\n"
+ " <rdeRegistrar:url>http://my.fake.url</rdeRegistrar:url>\n"
+ " <rdeRegistrar:whoisInfo>\n"
+ " <rdeRegistrar:name>whois.nic.fakewhois.example</rdeRegistrar:name>\n"
+ " </rdeRegistrar:whoisInfo>\n"
+ " <rdeRegistrar:crDate>mine eyes have seen the glory</rdeRegistrar:crDate>\n"
+ " <rdeRegistrar:upDate>of the coming of the borg</rdeRegistrar:upDate>\n"
+ "</rdeRegistrar:registrar>\n";
XmlTestUtils.assertXmlEquals(DECLARATION + expected, DECLARATION + fragment.xml(),
"registrar.crDate",
"registrar.upDate");
}
@Test
public void testMarshalRegistrar_unicodeCharacters_dontGetMangled() {
DepositFragment fragment =
new RdeMarshaller(STRICT).marshalRegistrar(loadRegistrar("TheRegistrar"));
assertThat(fragment.xml()).contains("123 Example Bőulevard");
}
}