// 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.model; import static com.google.common.truth.Truth.assertThat; import static com.google.common.truth.Truth8.assertThat; import static google.registry.model.EppResourceUtils.loadByForeignKey; import static google.registry.testing.DatastoreHelper.persistActiveContact; import static google.registry.testing.DatastoreHelper.persistActiveHost; import static google.registry.testing.DatastoreHelper.persistResource; import com.google.common.collect.ImmutableList; import com.googlecode.objectify.Key; import google.registry.model.contact.ContactResource; import google.registry.model.host.HostResource; import google.registry.testing.TestCacheRule; import org.joda.time.Duration; import org.junit.Rule; import org.junit.Test; /** Unit tests for {@link EppResource}. */ public class EppResourceTest extends EntityTestCase { @Rule public final TestCacheRule testCacheRule = new TestCacheRule.Builder().withEppResourceCache(Duration.standardDays(1)).build(); @Test public void test_loadCached_ignoresContactChange() { ContactResource originalContact = persistActiveContact("contact123"); assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalContact)))) .containsExactly(Key.create(originalContact), originalContact); ContactResource modifiedContact = persistResource(originalContact.asBuilder().setEmailAddress("different@fake.lol").build()); assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalContact)))) .containsExactly(Key.create(originalContact), originalContact); assertThat(loadByForeignKey(ContactResource.class, "contact123", clock.nowUtc())) .hasValue(modifiedContact); } @Test public void test_loadCached_ignoresHostChange() { HostResource originalHost = persistActiveHost("ns1.example.com"); assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalHost)))) .containsExactly(Key.create(originalHost), originalHost); HostResource modifiedHost = persistResource( originalHost.asBuilder().setLastTransferTime(clock.nowUtc().minusDays(60)).build()); assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalHost)))) .containsExactly(Key.create(originalHost), originalHost); assertThat(loadByForeignKey(HostResource.class, "ns1.example.com", clock.nowUtc())) .hasValue(modifiedHost); } }