mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
These were historically separate due to the old flow structure, but now they should be one exception. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=133984858
562 lines
21 KiB
Java
562 lines
21 KiB
Java
// Copyright 2016 The Domain Registry 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.flows.domain;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static google.registry.model.ofy.ObjectifyService.ofy;
|
|
import static google.registry.testing.DatastoreHelper.assertBillingEvents;
|
|
import static google.registry.testing.DatastoreHelper.createTld;
|
|
import static google.registry.testing.DatastoreHelper.createTlds;
|
|
import static google.registry.testing.DatastoreHelper.getOnlyHistoryEntryOfType;
|
|
import static google.registry.testing.DatastoreHelper.getPollMessages;
|
|
import static google.registry.testing.DatastoreHelper.newDomainResource;
|
|
import static google.registry.testing.DatastoreHelper.persistActiveDomain;
|
|
import static google.registry.testing.DatastoreHelper.persistDeletedDomain;
|
|
import static google.registry.testing.DatastoreHelper.persistReservedList;
|
|
import static google.registry.testing.DatastoreHelper.persistResource;
|
|
import static google.registry.testing.DomainResourceSubject.assertAboutDomains;
|
|
import static google.registry.testing.TaskQueueHelper.assertDnsTasksEnqueued;
|
|
import static google.registry.util.DateTimeUtils.END_OF_TIME;
|
|
import static google.registry.util.DateTimeUtils.START_OF_TIME;
|
|
import static org.joda.money.CurrencyUnit.EUR;
|
|
import static org.joda.money.CurrencyUnit.USD;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.common.collect.ImmutableSet;
|
|
import com.google.common.collect.ImmutableSortedMap;
|
|
import com.googlecode.objectify.Key;
|
|
import google.registry.flows.EppException.UnimplementedExtensionException;
|
|
import google.registry.flows.ResourceFlowTestCase;
|
|
import google.registry.flows.ResourceFlowUtils.ResourceNotOwnedException;
|
|
import google.registry.flows.ResourceMutateFlow.ResourceDoesNotExistException;
|
|
import google.registry.flows.domain.DomainFlowUtils.CurrencyUnitMismatchException;
|
|
import google.registry.flows.domain.DomainFlowUtils.CurrencyValueScaleException;
|
|
import google.registry.flows.domain.DomainFlowUtils.DomainReservedException;
|
|
import google.registry.flows.domain.DomainFlowUtils.FeesMismatchException;
|
|
import google.registry.flows.domain.DomainFlowUtils.FeesRequiredForPremiumNameException;
|
|
import google.registry.flows.domain.DomainFlowUtils.NotAuthorizedForTldException;
|
|
import google.registry.flows.domain.DomainFlowUtils.PremiumNameBlockedException;
|
|
import google.registry.flows.domain.DomainFlowUtils.UnsupportedFeeAttributeException;
|
|
import google.registry.flows.domain.DomainRestoreRequestFlow.DomainNotEligibleForRestoreException;
|
|
import google.registry.flows.domain.DomainRestoreRequestFlow.RestoreCommandIncludesChangesException;
|
|
import google.registry.model.billing.BillingEvent;
|
|
import google.registry.model.billing.BillingEvent.Flag;
|
|
import google.registry.model.billing.BillingEvent.Reason;
|
|
import google.registry.model.domain.DomainResource;
|
|
import google.registry.model.domain.GracePeriod;
|
|
import google.registry.model.domain.TestExtraLogicManager;
|
|
import google.registry.model.domain.rgp.GracePeriodStatus;
|
|
import google.registry.model.eppcommon.StatusValue;
|
|
import google.registry.model.poll.PollMessage;
|
|
import google.registry.model.registrar.Registrar;
|
|
import google.registry.model.registry.Registry;
|
|
import google.registry.model.reporting.HistoryEntry;
|
|
import java.util.Map;
|
|
import org.joda.money.Money;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
/** Unit tests for {@link DomainRestoreRequestFlow}. */
|
|
public class DomainRestoreRequestFlowTest extends
|
|
ResourceFlowTestCase<DomainRestoreRequestFlow, DomainResource> {
|
|
|
|
private static final ImmutableMap<String, String> FEE_06_MAP =
|
|
ImmutableMap.of("FEE_VERSION", "0.6", "FEE_NS", "fee");
|
|
private static final ImmutableMap<String, String> FEE_11_MAP =
|
|
ImmutableMap.of("FEE_VERSION", "0.11", "FEE_NS", "fee11");
|
|
private static final ImmutableMap<String, String> FEE_12_MAP =
|
|
ImmutableMap.of("FEE_VERSION", "0.12", "FEE_NS", "fee12");
|
|
|
|
public DomainRestoreRequestFlowTest() {
|
|
setEppInput("domain_update_restore_request.xml");
|
|
}
|
|
|
|
@Before
|
|
public void initDomainTest() {
|
|
createTlds("tld", "flags");
|
|
// For flags extension tests.
|
|
RegistryExtraFlowLogicProxy.setOverride("flags", TestExtraLogicManager.class);
|
|
}
|
|
|
|
void persistPendingDeleteDomain() throws Exception {
|
|
DomainResource domain = newDomainResource(getUniqueIdFromCommand());
|
|
HistoryEntry historyEntry = persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setType(HistoryEntry.Type.DOMAIN_DELETE)
|
|
.setParent(domain)
|
|
.build());
|
|
domain = persistResource(domain.asBuilder()
|
|
.setRegistrationExpirationTime(clock.nowUtc().plusYears(5).plusDays(45))
|
|
.setDeletionTime(clock.nowUtc().plusDays(35))
|
|
.addGracePeriod(GracePeriod.create(
|
|
GracePeriodStatus.REDEMPTION, clock.nowUtc().plusDays(1), "foo", null))
|
|
.setStatusValues(ImmutableSet.of(StatusValue.PENDING_DELETE))
|
|
.setDeletePollMessage(Key.create(persistResource(
|
|
new PollMessage.OneTime.Builder()
|
|
.setClientId("TheRegistrar")
|
|
.setEventTime(clock.nowUtc().plusDays(5))
|
|
.setParent(historyEntry)
|
|
.build())))
|
|
.build());
|
|
clock.advanceOneMilli();
|
|
}
|
|
|
|
@Test
|
|
public void testDryRun() throws Exception {
|
|
setEppInput("domain_update_restore_request.xml");
|
|
persistPendingDeleteDomain();
|
|
dryRunFlowAssertResponse(readFile("domain_update_response.xml"));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess() throws Exception {
|
|
setEppInput("domain_update_restore_request.xml");
|
|
persistPendingDeleteDomain();
|
|
assertTransactionalFlow(true);
|
|
// Double check that we see a poll message in the future for when the delete happens.
|
|
assertThat(getPollMessages("TheRegistrar", clock.nowUtc().plusMonths(1)))
|
|
.hasSize(1);
|
|
runFlowAssertResponse(readFile("domain_update_response.xml"));
|
|
DomainResource domain = reloadResourceByForeignKey();
|
|
HistoryEntry historyEntryDomainRestore =
|
|
getOnlyHistoryEntryOfType(domain, HistoryEntry.Type.DOMAIN_RESTORE);
|
|
assertThat(ofy().load().key(domain.getAutorenewBillingEvent()).now().getEventTime())
|
|
.isEqualTo(clock.nowUtc().plusYears(1));
|
|
assertAboutDomains().that(domain)
|
|
// New expiration time should be exactly a year from now.
|
|
.hasRegistrationExpirationTime(clock.nowUtc().plusYears(1)).and()
|
|
.doesNotHaveStatusValue(StatusValue.PENDING_DELETE).and()
|
|
.hasDeletionTime(END_OF_TIME).and()
|
|
.hasOneHistoryEntryEachOfTypes(
|
|
HistoryEntry.Type.DOMAIN_DELETE,
|
|
HistoryEntry.Type.DOMAIN_RESTORE);
|
|
assertThat(domain.getGracePeriods()).isEmpty();
|
|
assertDnsTasksEnqueued("example.tld");
|
|
// The poll message for the delete should now be gone. The only poll message should be the new
|
|
// autorenew poll message.
|
|
assertPollMessages(
|
|
"TheRegistrar",
|
|
new PollMessage.Autorenew.Builder()
|
|
.setTargetId("example.tld")
|
|
.setClientId("TheRegistrar")
|
|
.setEventTime(domain.getRegistrationExpirationTime())
|
|
.setAutorenewEndTime(END_OF_TIME)
|
|
.setMsg("Domain was auto-renewed.")
|
|
.setParent(historyEntryDomainRestore)
|
|
.build());
|
|
// There should be a bill for the restore and an explicit renew, along with a new recurring
|
|
// autorenew event.
|
|
assertBillingEvents(
|
|
new BillingEvent.Recurring.Builder()
|
|
.setReason(Reason.RENEW)
|
|
.setFlags(ImmutableSet.of(Flag.AUTO_RENEW))
|
|
.setTargetId("example.tld")
|
|
.setClientId("TheRegistrar")
|
|
.setEventTime(domain.getRegistrationExpirationTime())
|
|
.setRecurrenceEndTime(END_OF_TIME)
|
|
.setParent(historyEntryDomainRestore)
|
|
.build(),
|
|
new BillingEvent.OneTime.Builder()
|
|
.setReason(Reason.RESTORE)
|
|
.setTargetId("example.tld")
|
|
.setClientId("TheRegistrar")
|
|
.setCost(Money.of(USD, 17))
|
|
.setEventTime(clock.nowUtc())
|
|
.setBillingTime(clock.nowUtc())
|
|
.setParent(historyEntryDomainRestore)
|
|
.build(),
|
|
new BillingEvent.OneTime.Builder()
|
|
.setReason(Reason.RENEW)
|
|
.setTargetId("example.tld")
|
|
.setClientId("TheRegistrar")
|
|
.setCost(Money.of(USD, 11))
|
|
.setPeriodYears(1)
|
|
.setEventTime(clock.nowUtc())
|
|
.setBillingTime(clock.nowUtc())
|
|
.setParent(historyEntryDomainRestore)
|
|
.build());
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_fee_v06() throws Exception {
|
|
setEppInput("domain_update_restore_request_fee.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_restore_request_response_fee.xml", FEE_06_MAP));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_fee_v11() throws Exception {
|
|
setEppInput("domain_update_restore_request_fee.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_restore_request_response_fee.xml", FEE_11_MAP));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_fee_v12() throws Exception {
|
|
setEppInput("domain_update_restore_request_fee.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_restore_request_response_fee.xml", FEE_12_MAP));
|
|
}
|
|
@Test
|
|
public void testSuccess_fee_withDefaultAttributes_v06() throws Exception {
|
|
setEppInput("domain_update_restore_request_fee_defaults.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_restore_request_response_fee.xml", FEE_06_MAP));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_fee_withDefaultAttributes_v11() throws Exception {
|
|
setEppInput("domain_update_restore_request_fee_defaults.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_restore_request_response_fee.xml", FEE_11_MAP));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_fee_withDefaultAttributes_v12() throws Exception {
|
|
setEppInput("domain_update_restore_request_fee_defaults.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_restore_request_response_fee.xml", FEE_12_MAP));
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_refundableFee_v06() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_refundable.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_refundableFee_v11() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_refundable.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_refundableFee_v12() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_refundable.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_gracePeriodFee_v06() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_grace_period.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_gracePeriodFee_v11() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_grace_period.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_gracePeriodFee_v12() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_grace_period.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_appliedFee_v06() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_applied.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_appliedFee_v11() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_applied.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_appliedFee_v12() throws Exception {
|
|
thrown.expect(UnsupportedFeeAttributeException.class);
|
|
setEppInput("domain_update_restore_request_fee_applied.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_premiumNotBlocked() throws Exception {
|
|
createTld("example");
|
|
persistResource(Registry.get("example").asBuilder().setPremiumPriceAckRequired(false).build());
|
|
setEppInput("domain_update_restore_request_premium.xml");
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_superuserOverridesReservedList() throws Exception {
|
|
persistResource(
|
|
Registry.get("tld")
|
|
.asBuilder()
|
|
.setReservedLists(persistReservedList("tld-reserved", "example,FULLY_BLOCKED"))
|
|
.build());
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(
|
|
CommitMode.LIVE,
|
|
UserPrivileges.SUPERUSER,
|
|
readFile("domain_update_response.xml"));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_superuserOverridesPremiumNameBlock() throws Exception {
|
|
createTld("example");
|
|
persistResource(Registry.get("example").asBuilder().setPremiumPriceAckRequired(false).build());
|
|
setEppInput("domain_update_restore_request_premium.xml");
|
|
persistPendingDeleteDomain();
|
|
// Modify the Registrar to block premium names.
|
|
persistResource(
|
|
Registrar.loadByClientId("TheRegistrar").asBuilder().setBlockPremiumNames(true).build());
|
|
runFlowAssertResponse(
|
|
CommitMode.LIVE,
|
|
UserPrivileges.SUPERUSER,
|
|
readFile("domain_update_response.xml"));
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_doesNotExist() throws Exception {
|
|
thrown.expect(
|
|
ResourceDoesNotExistException.class,
|
|
String.format("(%s)", getUniqueIdFromCommand()));
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_wrongFeeAmount_v06() throws Exception {
|
|
thrown.expect(FeesMismatchException.class);
|
|
setEppInput("domain_update_restore_request_fee.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
persistResource(
|
|
Registry.get("tld").asBuilder().setRestoreBillingCost(Money.of(USD, 100)).build());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_wrongFeeAmount_v11() throws Exception {
|
|
thrown.expect(FeesMismatchException.class);
|
|
setEppInput("domain_update_restore_request_fee.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
persistResource(
|
|
Registry.get("tld").asBuilder().setRestoreBillingCost(Money.of(USD, 100)).build());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_wrongFeeAmount_v12() throws Exception {
|
|
thrown.expect(FeesMismatchException.class);
|
|
setEppInput("domain_update_restore_request_fee.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
persistResource(
|
|
Registry.get("tld").asBuilder().setRestoreBillingCost(Money.of(USD, 100)).build());
|
|
runFlow();
|
|
}
|
|
|
|
private void runWrongCurrencyTest(Map<String, String> substitutions) throws Exception {
|
|
thrown.expect(CurrencyUnitMismatchException.class);
|
|
setEppInput("domain_update_restore_request_fee.xml", substitutions);
|
|
persistPendingDeleteDomain();
|
|
persistResource(
|
|
Registry.get("tld")
|
|
.asBuilder()
|
|
.setCurrency(EUR)
|
|
.setCreateBillingCost(Money.of(EUR, 13))
|
|
.setRestoreBillingCost(Money.of(EUR, 11))
|
|
.setRenewBillingCostTransitions(ImmutableSortedMap.of(START_OF_TIME, Money.of(EUR, 7)))
|
|
.setEapFeeSchedule(ImmutableSortedMap.of(START_OF_TIME, Money.zero(EUR)))
|
|
.setServerStatusChangeBillingCost(Money.of(EUR, 19))
|
|
.build());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_wrongCurrency_v06() throws Exception {
|
|
runWrongCurrencyTest(FEE_06_MAP);
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_wrongCurrency_v11() throws Exception {
|
|
runWrongCurrencyTest(FEE_11_MAP);
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_wrongCurrency_v12() throws Exception {
|
|
runWrongCurrencyTest(FEE_12_MAP);
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_feeGivenInWrongScale_v06() throws Exception {
|
|
thrown.expect(CurrencyValueScaleException.class);
|
|
setEppInput("domain_update_restore_request_fee_bad_scale.xml", FEE_06_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_feeGivenInWrongScale_v11() throws Exception {
|
|
thrown.expect(CurrencyValueScaleException.class);
|
|
setEppInput("domain_update_restore_request_fee_bad_scale.xml", FEE_11_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_feeGivenInWrongScale_v12() throws Exception {
|
|
thrown.expect(CurrencyValueScaleException.class);
|
|
setEppInput("domain_update_restore_request_fee_bad_scale.xml", FEE_12_MAP);
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_notInRedemptionPeriod() throws Exception {
|
|
thrown.expect(DomainNotEligibleForRestoreException.class);
|
|
persistResource(newDomainResource(getUniqueIdFromCommand()).asBuilder()
|
|
.setDeletionTime(clock.nowUtc().plusDays(4))
|
|
.setStatusValues(ImmutableSet.of(StatusValue.PENDING_DELETE))
|
|
.build());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_notDeleted() throws Exception {
|
|
thrown.expect(DomainNotEligibleForRestoreException.class);
|
|
persistActiveDomain(getUniqueIdFromCommand());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_fullyDeleted() throws Exception {
|
|
thrown.expect(ResourceDoesNotExistException.class);
|
|
persistDeletedDomain(getUniqueIdFromCommand(), clock.nowUtc());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_withChange() throws Exception {
|
|
thrown.expect(RestoreCommandIncludesChangesException.class);
|
|
persistPendingDeleteDomain();
|
|
setEppInput("domain_update_restore_request_with_change.xml");
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_withAdd() throws Exception {
|
|
thrown.expect(RestoreCommandIncludesChangesException.class);
|
|
persistPendingDeleteDomain();
|
|
setEppInput("domain_update_restore_request_with_add.xml");
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_withRemove() throws Exception {
|
|
thrown.expect(RestoreCommandIncludesChangesException.class);
|
|
persistPendingDeleteDomain();
|
|
setEppInput("domain_update_restore_request_with_remove.xml");
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_withSecDnsExtension() throws Exception {
|
|
thrown.expect(UnimplementedExtensionException.class);
|
|
persistPendingDeleteDomain();
|
|
setEppInput("domain_update_restore_request_with_secdns.xml");
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_unauthorizedClient() throws Exception {
|
|
thrown.expect(ResourceNotOwnedException.class);
|
|
sessionMetadata.setClientId("NewRegistrar");
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_notAuthorizedForTld() throws Exception {
|
|
thrown.expect(NotAuthorizedForTldException.class);
|
|
persistResource(
|
|
Registrar.loadByClientId("TheRegistrar")
|
|
.asBuilder()
|
|
.setAllowedTlds(ImmutableSet.<String>of())
|
|
.build());
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_superuserUnauthorizedClient() throws Exception {
|
|
thrown.expect(ResourceNotOwnedException.class);
|
|
sessionMetadata.setClientId("NewRegistrar");
|
|
persistPendingDeleteDomain();
|
|
runFlowAssertResponse(readFile("domain_update_response.xml"));
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_premiumBlocked() throws Exception {
|
|
thrown.expect(PremiumNameBlockedException.class);
|
|
createTld("example");
|
|
setEppInput("domain_update_restore_request_premium.xml");
|
|
persistPendingDeleteDomain();
|
|
// Modify the Registrar to block premium names.
|
|
persistResource(
|
|
Registrar.loadByClientId("TheRegistrar").asBuilder().setBlockPremiumNames(true).build());
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_reservedBlocked() throws Exception {
|
|
thrown.expect(DomainReservedException.class);
|
|
createTld("tld");
|
|
persistResource(
|
|
Registry.get("tld")
|
|
.asBuilder()
|
|
.setReservedLists(persistReservedList("tld-reserved", "example,FULLY_BLOCKED"))
|
|
.build());
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_feeNotProvidedOnPremiumName() throws Exception {
|
|
thrown.expect(FeesRequiredForPremiumNameException.class);
|
|
createTld("example");
|
|
setEppInput("domain_update_restore_request_premium.xml");
|
|
persistPendingDeleteDomain();
|
|
runFlow();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_flags() throws Exception {
|
|
setEppInput("domain_update_restore_request_flags.xml");
|
|
persistPendingDeleteDomain();
|
|
thrown.expect(IllegalArgumentException.class, "restored");
|
|
runFlow();
|
|
}
|
|
}
|