mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 12:37:52 +02:00
We now display the results of each check in addition to the overall result. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=231051913
149 lines
5.7 KiB
Java
149 lines
5.7 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.model;
|
|
|
|
import static google.registry.testing.DatastoreHelper.persistPremiumList;
|
|
import static google.registry.testing.DatastoreHelper.persistResource;
|
|
import static google.registry.testing.TestDataHelper.loadBytes;
|
|
import static google.registry.util.DateTimeUtils.END_OF_TIME;
|
|
|
|
import google.registry.model.eppcommon.Trid;
|
|
import google.registry.model.reporting.HistoryEntry;
|
|
import google.registry.model.reporting.HistoryEntry.Type;
|
|
import java.io.IOException;
|
|
|
|
public final class OteStatsTestHelper {
|
|
|
|
public static void setupCompleteOte(String baseClientId) throws IOException {
|
|
setupIncompleteOte(baseClientId);
|
|
String oteAccount1 = String.format("%s-1", baseClientId);
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_CREATE)
|
|
.setXmlBytes(getBytes("domain_create_idn.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_RESTORE)
|
|
.setXmlBytes(getBytes("domain_restore.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.HOST_DELETE)
|
|
.setXmlBytes(getBytes("host_delete.xml"))
|
|
.build());
|
|
}
|
|
|
|
/**
|
|
* Sets up an incomplete OT&E registrar. It is missing the following entries:
|
|
*
|
|
* - DOMAIN_CREATES_IDN
|
|
* - DOMAIN_RESTORES
|
|
* - HOST_DELETES
|
|
*
|
|
* TODO(b/122830156): Have this replicate the exact OT&E workflow with the correct client IDs
|
|
*/
|
|
public static void setupIncompleteOte(String baseClientId) throws IOException {
|
|
persistPremiumList("default_sandbox_list", "sandbox,USD 1000");
|
|
OteAccountBuilder.forClientId(baseClientId).addContact("email@example.com").buildAndPersist();
|
|
String oteAccount1 = String.format("%s-1", baseClientId);
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_CREATE)
|
|
.setXmlBytes(getBytes("domain_create_sunrise.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_CREATE)
|
|
.setXmlBytes(getBytes("domain_create_claim_notice.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_CREATE)
|
|
.setXmlBytes(getBytes("domain_create_anchor_tenant_fee_standard.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_CREATE)
|
|
.setXmlBytes(getBytes("domain_create_dsdata.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_DELETE)
|
|
.setXmlBytes(getBytes("domain_delete.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_TRANSFER_APPROVE)
|
|
.setXmlBytes(getBytes("domain_transfer_approve.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_TRANSFER_CANCEL)
|
|
.setXmlBytes(getBytes("domain_transfer_cancel.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_TRANSFER_REJECT)
|
|
.setXmlBytes(getBytes("domain_transfer_reject.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_TRANSFER_REQUEST)
|
|
.setXmlBytes(getBytes("domain_transfer_request.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.DOMAIN_UPDATE)
|
|
.setXmlBytes(getBytes("domain_update_with_secdns.xml"))
|
|
.build());
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.HOST_CREATE)
|
|
.setXmlBytes(getBytes("host_create_complete.xml"))
|
|
.build());
|
|
// Persist 10 host updates for a total of 25 history entries. Since these also sort last by
|
|
// modification time, when these cause all tests to pass, only the first will be recorded and
|
|
// the rest will be skipped.
|
|
for (int i = 0; i < 10; i++) {
|
|
persistResource(
|
|
new HistoryEntry.Builder()
|
|
.setClientId(oteAccount1)
|
|
.setType(Type.HOST_UPDATE)
|
|
.setXmlBytes(getBytes("host_update.xml"))
|
|
.setTrid(Trid.create(null, String.format("blahtrid-%d", i)))
|
|
.setModificationTime(END_OF_TIME)
|
|
.build());
|
|
}
|
|
}
|
|
|
|
private static byte[] getBytes(String filename) throws IOException {
|
|
return loadBytes(OteStatsTestHelper.class, filename).read();
|
|
}
|
|
}
|