mirror of
https://github.com/google/nomulus.git
synced 2025-06-09 05:54:55 +02:00
This eliminates the use of Objectify polymorphism for EPP resources entirely (yay!), which makes the Registry 3.0 database migration easier. It is unfortunate that the naming parallelism of EppResources is lost between ContactResource, HostResource, and DomainResource, but the actual type as far as Datastore was concerned was DomainBase all along, and it would be a much more substantial data migration to allow us to continue using the class name DomainResource now that we're no longer using Objectify polymorphism. This simply isn't worth it. This also removes the polymorphic Datastore indexes (which will no longer function as of this change). The non-polymorphic replacement indexes were added in [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=230930546
228 lines
10 KiB
Java
228 lines
10 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.createTld;
|
|
import static google.registry.testing.DatastoreHelper.newDomainBase;
|
|
import static google.registry.testing.JUnitBackports.assertThrows;
|
|
import static google.registry.xjc.XjcXmlTransformer.marshalStrict;
|
|
import static java.nio.charset.StandardCharsets.UTF_8;
|
|
|
|
import com.google.common.collect.ImmutableSet;
|
|
import com.google.common.net.InetAddresses;
|
|
import com.googlecode.objectify.Key;
|
|
import google.registry.model.domain.DomainBase;
|
|
import google.registry.model.eppcommon.StatusValue;
|
|
import google.registry.model.host.HostResource;
|
|
import google.registry.testing.AppEngineRule;
|
|
import google.registry.xjc.host.XjcHostStatusType;
|
|
import google.registry.xjc.host.XjcHostStatusValueType;
|
|
import google.registry.xjc.rdehost.XjcRdeHost;
|
|
import google.registry.xjc.rdehost.XjcRdeHostElement;
|
|
import java.io.ByteArrayOutputStream;
|
|
import org.joda.time.DateTime;
|
|
import org.junit.Before;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
|
|
/**
|
|
* Unit tests for {@link HostResourceToXjcConverter}.
|
|
*
|
|
* <p>This tests the mapping between {@link HostResource} and {@link XjcRdeHost} as well as
|
|
* some exceptional conditions.
|
|
*/
|
|
@RunWith(JUnit4.class)
|
|
public class HostResourceToXjcConverterTest {
|
|
|
|
@Rule
|
|
public final AppEngineRule appEngine = AppEngineRule.builder()
|
|
.withDatastore()
|
|
.build();
|
|
|
|
@Before
|
|
public void init() {
|
|
createTld("foobar");
|
|
}
|
|
|
|
@Test
|
|
public void testConvertSubordinateHost() {
|
|
DomainBase domain = newDomainBase("love.foobar").asBuilder()
|
|
.setPersistedCurrentSponsorClientId("LeisureDog")
|
|
.setLastTransferTime(DateTime.parse("2010-01-01T00:00:00Z"))
|
|
.addStatusValue(StatusValue.PENDING_TRANSFER)
|
|
.build();
|
|
XjcRdeHost bean = HostResourceToXjcConverter.convertSubordinateHost(
|
|
new HostResource.Builder()
|
|
.setCreationClientId("LawyerCat")
|
|
.setCreationTimeForTest(DateTime.parse("1900-01-01T00:00:00Z"))
|
|
.setPersistedCurrentSponsorClientId("BusinessCat")
|
|
.setFullyQualifiedHostName("ns1.love.foobar")
|
|
.setInetAddresses(ImmutableSet.of(InetAddresses.forString("127.0.0.1")))
|
|
.setLastTransferTime(DateTime.parse("1910-01-01T00:00:00Z"))
|
|
.setLastEppUpdateClientId("CeilingCat")
|
|
.setLastEppUpdateTime(DateTime.parse("1920-01-01T00:00:00Z"))
|
|
.setRepoId("2-roid")
|
|
.setStatusValues(ImmutableSet.of(StatusValue.OK))
|
|
.setSuperordinateDomain(Key.create(domain))
|
|
.build(),
|
|
domain);
|
|
|
|
assertThat(bean.getAddrs()).hasSize(1);
|
|
assertThat(bean.getAddrs().get(0).getIp().value()).isEqualTo("v4");
|
|
assertThat(bean.getAddrs().get(0).getValue()).isEqualTo("127.0.0.1");
|
|
|
|
assertThat(bean.getCrDate()).isEqualTo(DateTime.parse("1900-01-01T00:00:00Z"));
|
|
|
|
// o A <crRr> element that contains the identifier of the registrar
|
|
// that created the domain name object. An OPTIONAL client attribute
|
|
// is used to specify the client that performed the operation.
|
|
// This will always be null for us since we track each registrar as a separate client.
|
|
assertThat(bean.getCrRr().getValue()).isEqualTo("LawyerCat");
|
|
assertThat(bean.getCrRr().getClient()).isNull();
|
|
|
|
assertThat(bean.getName()).isEqualTo("ns1.love.foobar");
|
|
|
|
assertThat(bean.getRoid()).isEqualTo("2-roid");
|
|
|
|
assertThat(bean.getStatuses()).hasSize(2);
|
|
XjcHostStatusType status0 = bean.getStatuses().get(0);
|
|
assertThat(status0.getS()).isEqualTo(XjcHostStatusValueType.OK);
|
|
assertThat(status0.getValue()).isNull();
|
|
assertThat(status0.getLang()).isEqualTo("en");
|
|
|
|
assertThat(bean.getUpDate()).isEqualTo(DateTime.parse("1920-01-01T00:00:00Z"));
|
|
|
|
assertThat(bean.getUpRr().getValue()).isEqualTo("CeilingCat");
|
|
assertThat(bean.getUpRr().getClient()).isNull();
|
|
|
|
// Values that should have been copied from the superordinate domain.
|
|
assertThat(bean.getClID()).isEqualTo("LeisureDog");
|
|
assertThat(bean.getTrDate()).isEqualTo(DateTime.parse("2010-01-01T00:00:00Z"));
|
|
XjcHostStatusType status1 = bean.getStatuses().get(1);
|
|
assertThat(status1.getS()).isEqualTo(XjcHostStatusValueType.PENDING_TRANSFER);
|
|
assertThat(status1.getValue()).isNull();
|
|
assertThat(status1.getLang()).isEqualTo("en");
|
|
}
|
|
|
|
@Test
|
|
public void testConvertExternalHost() {
|
|
XjcRdeHost bean = HostResourceToXjcConverter.convertExternalHost(
|
|
new HostResource.Builder()
|
|
.setCreationClientId("LawyerCat")
|
|
.setCreationTimeForTest(DateTime.parse("1900-01-01T00:00:00Z"))
|
|
.setPersistedCurrentSponsorClientId("BusinessCat")
|
|
.setFullyQualifiedHostName("ns1.love.lol")
|
|
.setInetAddresses(ImmutableSet.of(InetAddresses.forString("127.0.0.1")))
|
|
.setLastTransferTime(DateTime.parse("1910-01-01T00:00:00Z"))
|
|
.setLastEppUpdateClientId("CeilingCat")
|
|
.setLastEppUpdateTime(DateTime.parse("1920-01-01T00:00:00Z"))
|
|
.setRepoId("2-roid")
|
|
.setStatusValues(ImmutableSet.of(StatusValue.OK))
|
|
.build());
|
|
|
|
assertThat(bean.getAddrs()).hasSize(1);
|
|
assertThat(bean.getAddrs().get(0).getIp().value()).isEqualTo("v4");
|
|
assertThat(bean.getAddrs().get(0).getValue()).isEqualTo("127.0.0.1");
|
|
|
|
assertThat(bean.getClID()).isEqualTo("BusinessCat");
|
|
|
|
assertThat(bean.getCrDate()).isEqualTo(DateTime.parse("1900-01-01T00:00:00Z"));
|
|
|
|
// o A <crRr> element that contains the identifier of the registrar
|
|
// that created the domain name object. An OPTIONAL client attribute
|
|
// is used to specify the client that performed the operation.
|
|
// This will always be null for us since we track each registrar as a separate client.
|
|
assertThat(bean.getCrRr().getValue()).isEqualTo("LawyerCat");
|
|
assertThat(bean.getCrRr().getClient()).isNull();
|
|
|
|
assertThat(bean.getName()).isEqualTo("ns1.love.lol");
|
|
|
|
assertThat(bean.getRoid()).isEqualTo("2-roid");
|
|
|
|
assertThat(bean.getStatuses()).hasSize(1);
|
|
assertThat(bean.getStatuses().get(0).getS()).isEqualTo(XjcHostStatusValueType.OK);
|
|
assertThat(bean.getStatuses().get(0).getValue()).isNull();
|
|
assertThat(bean.getStatuses().get(0).getLang()).isEqualTo("en");
|
|
|
|
assertThat(bean.getTrDate()).isEqualTo(DateTime.parse("1910-01-01T00:00:00Z"));
|
|
|
|
assertThat(bean.getUpDate()).isEqualTo(DateTime.parse("1920-01-01T00:00:00Z"));
|
|
|
|
assertThat(bean.getUpRr().getValue()).isEqualTo("CeilingCat");
|
|
assertThat(bean.getUpRr().getClient()).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void testConvertExternalHost_ipv6() {
|
|
XjcRdeHost bean = HostResourceToXjcConverter.convertExternalHost(
|
|
new HostResource.Builder()
|
|
.setCreationClientId("LawyerCat")
|
|
.setCreationTimeForTest(DateTime.parse("1900-01-01T00:00:00Z"))
|
|
.setPersistedCurrentSponsorClientId("BusinessCat")
|
|
.setFullyQualifiedHostName("ns1.love.lol")
|
|
.setInetAddresses(ImmutableSet.of(InetAddresses.forString("cafe::abba")))
|
|
.setLastTransferTime(DateTime.parse("1910-01-01T00:00:00Z"))
|
|
.setLastEppUpdateClientId("CeilingCat")
|
|
.setLastEppUpdateTime(DateTime.parse("1920-01-01T00:00:00Z"))
|
|
.setRepoId("2-LOL")
|
|
.setStatusValues(ImmutableSet.of(StatusValue.OK))
|
|
.build());
|
|
assertThat(bean.getAddrs()).hasSize(1);
|
|
assertThat(bean.getAddrs().get(0).getIp().value()).isEqualTo("v6");
|
|
assertThat(bean.getAddrs().get(0).getValue()).isEqualTo("cafe::abba");
|
|
}
|
|
|
|
@Test
|
|
public void testHostStatusValueIsInvalid() {
|
|
assertThrows(
|
|
IllegalArgumentException.class,
|
|
() ->
|
|
HostResourceToXjcConverter.convertExternalHost(
|
|
new HostResource.Builder()
|
|
.setCreationClientId("LawyerCat")
|
|
.setCreationTimeForTest(DateTime.parse("1900-01-01T00:00:00Z"))
|
|
.setPersistedCurrentSponsorClientId("BusinessCat")
|
|
.setFullyQualifiedHostName("ns1.love.lol")
|
|
.setInetAddresses(ImmutableSet.of(InetAddresses.forString("cafe::abba")))
|
|
.setLastTransferTime(DateTime.parse("1910-01-01T00:00:00Z"))
|
|
.setLastEppUpdateClientId("CeilingCat")
|
|
.setLastEppUpdateTime(DateTime.parse("1920-01-01T00:00:00Z"))
|
|
.setRepoId("2-LOL")
|
|
.setStatusValues(ImmutableSet.of(StatusValue.SERVER_HOLD)) // <-- OOPS
|
|
.build()));
|
|
}
|
|
|
|
@Test
|
|
public void testMarshal() throws Exception {
|
|
// Bean! Bean! Bean!
|
|
XjcRdeHostElement bean = HostResourceToXjcConverter.convertExternal(
|
|
new HostResource.Builder()
|
|
.setCreationClientId("LawyerCat")
|
|
.setCreationTimeForTest(DateTime.parse("1900-01-01T00:00:00Z"))
|
|
.setPersistedCurrentSponsorClientId("BusinessCat")
|
|
.setFullyQualifiedHostName("ns1.love.lol")
|
|
.setInetAddresses(ImmutableSet.of(InetAddresses.forString("cafe::abba")))
|
|
.setLastTransferTime(DateTime.parse("1910-01-01T00:00:00Z"))
|
|
.setLastEppUpdateClientId("CeilingCat")
|
|
.setLastEppUpdateTime(DateTime.parse("1920-01-01T00:00:00Z"))
|
|
.setRepoId("2-LOL")
|
|
.setStatusValues(ImmutableSet.of(StatusValue.OK))
|
|
.build());
|
|
marshalStrict(bean, new ByteArrayOutputStream(), UTF_8);
|
|
}
|
|
}
|