mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 04:27:51 +02:00
I'm setting it to three buckets across all tests, because the default one bucket wasn't realistic enough, and allowed some tests to pass that shouldn't have, essentially by accident. This also changes RegistryConfig from being an interface to being an abstract base class. The medium term goal here is to have it be a static class so that it can provide fields from the YAML-derived POJO in situations where Dagger injection isn't feasible. The expected end state is as follows: default-config.yaml -- The master config file that provides defaults for all values. nomulus-config.yaml -- A per-environment config file that overrides the defaults from the previous file. YamlConfig.java -- The POJO that the aforementioned YAML files are deserialized into. RegistryConfig.java -- Contains a static, memoized instance of YamlConfig and provides static methods for getting some of those values. ConfigModule -- Will become a static inner class of RegistryConfig, using Dagger to provide most of the fields from the memoized YamlConfig instance. This way, all configuration will be coming from a single place: RegistryConfig.java. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=143567288
235 lines
10 KiB
Java
235 lines
10 KiB
Java
// 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.
|
|
|
|
package google.registry.model.contact;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static google.registry.model.EppResourceUtils.loadByForeignKey;
|
|
import static google.registry.testing.ContactResourceSubject.assertAboutContacts;
|
|
import static google.registry.testing.DatastoreHelper.cloneAndSetAutoTimestamps;
|
|
import static google.registry.testing.DatastoreHelper.createTld;
|
|
import static google.registry.testing.DatastoreHelper.persistResource;
|
|
import static google.registry.util.DateTimeUtils.END_OF_TIME;
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
import com.google.common.collect.ImmutableSet;
|
|
import com.googlecode.objectify.Key;
|
|
import google.registry.model.EntityTestCase;
|
|
import google.registry.model.billing.BillingEvent;
|
|
import google.registry.model.contact.Disclose.PostalInfoChoice;
|
|
import google.registry.model.contact.PostalInfo.Type;
|
|
import google.registry.model.eppcommon.AuthInfo.PasswordAuth;
|
|
import google.registry.model.eppcommon.PresenceMarker;
|
|
import google.registry.model.eppcommon.StatusValue;
|
|
import google.registry.model.eppcommon.Trid;
|
|
import google.registry.model.transfer.TransferData;
|
|
import google.registry.model.transfer.TransferData.TransferServerApproveEntity;
|
|
import google.registry.model.transfer.TransferStatus;
|
|
import google.registry.testing.ExceptionRule;
|
|
import org.junit.Before;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
|
|
/** Unit tests for {@link ContactResource}. */
|
|
public class ContactResourceTest extends EntityTestCase {
|
|
|
|
@Rule
|
|
public final ExceptionRule thrown = new ExceptionRule();
|
|
|
|
ContactResource contactResource;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
createTld("foobar");
|
|
// Set up a new persisted ContactResource entity.
|
|
contactResource = persistResource(cloneAndSetAutoTimestamps(
|
|
new ContactResource.Builder()
|
|
.setContactId("contact_id")
|
|
.setRepoId("1-FOOBAR")
|
|
.setCreationClientId("a registrar")
|
|
.setLastEppUpdateTime(clock.nowUtc())
|
|
.setLastEppUpdateClientId("another registrar")
|
|
.setLastTransferTime(clock.nowUtc())
|
|
.setCurrentSponsorClientId("a third registrar")
|
|
.setLocalizedPostalInfo(new PostalInfo.Builder()
|
|
.setType(Type.LOCALIZED)
|
|
.setAddress(new ContactAddress.Builder()
|
|
.setStreet(ImmutableList.of("111 8th Ave", "4th Floor"))
|
|
.setCity("New York")
|
|
.setState("NY")
|
|
.setZip("10011")
|
|
.setCountryCode("US")
|
|
.build())
|
|
.build())
|
|
.setInternationalizedPostalInfo(new PostalInfo.Builder()
|
|
.setType(Type.INTERNATIONALIZED)
|
|
.setAddress(new ContactAddress.Builder()
|
|
.setStreet(ImmutableList.of("111 8th Ave", "4th Floor"))
|
|
.setCity("New York")
|
|
.setState("NY")
|
|
.setZip("10011")
|
|
.setCountryCode("US")
|
|
.build())
|
|
.build())
|
|
.setVoiceNumber(new ContactPhoneNumber.Builder()
|
|
.setPhoneNumber("867-5309")
|
|
.build())
|
|
.setFaxNumber(new ContactPhoneNumber.Builder()
|
|
.setPhoneNumber("867-5309")
|
|
.setExtension("1000")
|
|
.build())
|
|
.setEmailAddress("jenny@example.com")
|
|
.setAuthInfo(ContactAuthInfo.create(PasswordAuth.create("passw0rd")))
|
|
.setDisclose(new Disclose.Builder()
|
|
.setVoice(new PresenceMarker())
|
|
.setEmail(new PresenceMarker())
|
|
.setFax(new PresenceMarker())
|
|
.setFlag(true)
|
|
.setAddrs(ImmutableList.of(PostalInfoChoice.create(Type.INTERNATIONALIZED)))
|
|
.setNames(ImmutableList.of(PostalInfoChoice.create(Type.INTERNATIONALIZED)))
|
|
.setOrgs(ImmutableList.of(PostalInfoChoice.create(Type.INTERNATIONALIZED)))
|
|
.build())
|
|
.setStatusValues(ImmutableSet.of(StatusValue.OK))
|
|
.setTransferData(new TransferData.Builder()
|
|
.setExtendedRegistrationYears(0)
|
|
.setGainingClientId("gaining")
|
|
.setLosingClientId("losing")
|
|
.setPendingTransferExpirationTime(clock.nowUtc())
|
|
.setServerApproveEntities(
|
|
ImmutableSet.<Key<? extends TransferServerApproveEntity>>of(
|
|
Key.create(BillingEvent.OneTime.class, 1)))
|
|
.setTransferRequestTime(clock.nowUtc())
|
|
.setTransferStatus(TransferStatus.SERVER_APPROVED)
|
|
.setTransferRequestTrid(Trid.create("client trid"))
|
|
.build())
|
|
.build()));
|
|
}
|
|
|
|
@Test
|
|
public void testPersistence() throws Exception {
|
|
assertThat(
|
|
loadByForeignKey(ContactResource.class, contactResource.getForeignKey(), clock.nowUtc()))
|
|
.isEqualTo(contactResource);
|
|
}
|
|
|
|
@Test
|
|
public void testIndexing() throws Exception {
|
|
verifyIndexing(
|
|
contactResource,
|
|
"deletionTime",
|
|
"currentSponsorClientId",
|
|
"searchName");
|
|
}
|
|
|
|
@Test
|
|
public void testEmptyStringsBecomeNull() {
|
|
assertThat(new ContactResource.Builder().setContactId(null).build().getContactId()).isNull();
|
|
assertThat(new ContactResource.Builder().setContactId("").build().getContactId()).isNull();
|
|
assertThat(new ContactResource.Builder().setContactId(" ").build().getContactId()).isNotNull();
|
|
// Nested ImmutableObjects should also be fixed
|
|
assertThat(new ContactResource.Builder()
|
|
.setInternationalizedPostalInfo(new PostalInfo.Builder()
|
|
.setType(Type.INTERNATIONALIZED)
|
|
.setName(null)
|
|
.build())
|
|
.build()
|
|
.getInternationalizedPostalInfo().getName()).isNull();
|
|
assertThat(new ContactResource.Builder()
|
|
.setInternationalizedPostalInfo(new PostalInfo.Builder()
|
|
.setType(Type.INTERNATIONALIZED)
|
|
.setName("")
|
|
.build())
|
|
.build()
|
|
.getInternationalizedPostalInfo().getName()).isNull();
|
|
assertThat(new ContactResource.Builder()
|
|
.setInternationalizedPostalInfo(new PostalInfo.Builder()
|
|
.setType(Type.INTERNATIONALIZED)
|
|
.setName(" ")
|
|
.build())
|
|
.build()
|
|
.getInternationalizedPostalInfo().getName()).isNotNull();
|
|
}
|
|
|
|
@Test
|
|
public void testEmptyTransferDataBecomesNull() throws Exception {
|
|
ContactResource withNull = new ContactResource.Builder().setTransferData(null).build();
|
|
ContactResource withEmpty = withNull.asBuilder().setTransferData(TransferData.EMPTY).build();
|
|
assertThat(withNull).isEqualTo(withEmpty);
|
|
assertThat(withEmpty.transferData).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void testImplicitStatusValues() {
|
|
// OK is implicit if there's no other statuses.
|
|
StatusValue[] statuses = {StatusValue.OK};
|
|
assertAboutContacts()
|
|
.that(new ContactResource.Builder().build())
|
|
.hasExactlyStatusValues(statuses);
|
|
StatusValue[] statuses1 = {StatusValue.OK, StatusValue.LINKED};
|
|
// OK is also implicit if the only other status is LINKED.
|
|
assertAboutContacts()
|
|
.that(new ContactResource.Builder()
|
|
.setStatusValues(ImmutableSet.of(StatusValue.LINKED))
|
|
.build())
|
|
.hasExactlyStatusValues(statuses1);
|
|
StatusValue[] statuses2 = {StatusValue.CLIENT_HOLD};
|
|
// If there are other status values, OK should be suppressed.
|
|
assertAboutContacts()
|
|
.that(new ContactResource.Builder()
|
|
.setStatusValues(ImmutableSet.of(StatusValue.CLIENT_HOLD))
|
|
.build())
|
|
.hasExactlyStatusValues(statuses2);
|
|
StatusValue[] statuses3 = {StatusValue.LINKED, StatusValue.CLIENT_HOLD};
|
|
assertAboutContacts()
|
|
.that(new ContactResource.Builder()
|
|
.setStatusValues(ImmutableSet.of(StatusValue.LINKED, StatusValue.CLIENT_HOLD))
|
|
.build())
|
|
.hasExactlyStatusValues(statuses3);
|
|
StatusValue[] statuses4 = {StatusValue.CLIENT_HOLD};
|
|
// When OK is suppressed, it should be removed even if it was originally there.
|
|
assertAboutContacts()
|
|
.that(new ContactResource.Builder()
|
|
.setStatusValues(ImmutableSet.of(StatusValue.OK, StatusValue.CLIENT_HOLD))
|
|
.build())
|
|
.hasExactlyStatusValues(statuses4);
|
|
}
|
|
|
|
@Test
|
|
public void testExpiredTransfer() {
|
|
ContactResource afterTransfer = contactResource.asBuilder()
|
|
.setTransferData(contactResource.getTransferData().asBuilder()
|
|
.setTransferStatus(TransferStatus.PENDING)
|
|
.setPendingTransferExpirationTime(clock.nowUtc().plusDays(1))
|
|
.setGainingClientId("winner")
|
|
.build())
|
|
.build()
|
|
.cloneProjectedAtTime(clock.nowUtc().plusDays(1));
|
|
assertThat(afterTransfer.getTransferData().getTransferStatus()).isEqualTo(
|
|
TransferStatus.SERVER_APPROVED);
|
|
assertThat(afterTransfer.getCurrentSponsorClientId()).isEqualTo("winner");
|
|
assertThat(afterTransfer.getLastTransferTime()).isEqualTo(clock.nowUtc().plusDays(1));
|
|
}
|
|
|
|
@Test
|
|
public void testSetCreationTime_cantBeCalledTwice() {
|
|
thrown.expect(IllegalStateException.class, "creationTime can only be set once");
|
|
contactResource.asBuilder().setCreationTime(END_OF_TIME);
|
|
}
|
|
|
|
@Test
|
|
public void testToHydratedString_notCircular() {
|
|
// If there are circular references, this will overflow the stack.
|
|
contactResource.toHydratedString();
|
|
}
|
|
}
|