mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Rename all testdata loading files to conform to a single naming scheme
The scheme is: - loadBytes: returns a ByteSource of the data - loadFile: returns a string using UTF8 encoding, optionally applying substitutions ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=177606406
This commit is contained in:
parent
ebfa27b3ad
commit
b8970bfe1b
94 changed files with 428 additions and 449 deletions
|
@ -195,8 +195,8 @@ public class DomainApplicationCreateFlowTest
|
|||
assertTransactionalFlow(true);
|
||||
runFlowAssertResponse(
|
||||
(feeExtensionVersion == null)
|
||||
? readFile(responseXmlFile)
|
||||
: readFile(
|
||||
? loadFile(responseXmlFile)
|
||||
: loadFile(
|
||||
responseXmlFile,
|
||||
ImmutableMap.of("FEE_VERSION", feeExtensionVersion, "FEE_NS", feeExtensionNamespace)),
|
||||
"epp.response.extension.creData.applicationID",
|
||||
|
@ -222,7 +222,7 @@ public class DomainApplicationCreateFlowTest
|
|||
runFlowAssertResponse(
|
||||
CommitMode.LIVE,
|
||||
UserPrivileges.SUPERUSER,
|
||||
readFile(filename),
|
||||
loadFile(filename),
|
||||
"epp.response.extension.creData.applicationID",
|
||||
"epp.response.resData.creData.crDate",
|
||||
"epp.response.extension.creData.phase");
|
||||
|
@ -234,7 +234,7 @@ public class DomainApplicationCreateFlowTest
|
|||
setEppInput("domain_create_sunrush_encoded_signed_mark.xml");
|
||||
persistContactsAndHosts();
|
||||
clock.advanceOneMilli();
|
||||
dryRunFlowAssertResponse(readFile("domain_create_sunrush_encoded_signed_mark_response.xml"),
|
||||
dryRunFlowAssertResponse(loadFile("domain_create_sunrush_encoded_signed_mark_response.xml"),
|
||||
"epp.response.extension.creData.applicationID", "epp.response.resData.creData.crDate");
|
||||
}
|
||||
|
||||
|
@ -326,7 +326,7 @@ public class DomainApplicationCreateFlowTest
|
|||
setEppInput("domain_create_sunrush.xml");
|
||||
persistContactsAndHosts();
|
||||
clock.advanceOneMilli();
|
||||
dryRunFlowAssertResponse(readFile("domain_create_sunrush_response.xml"),
|
||||
dryRunFlowAssertResponse(loadFile("domain_create_sunrush_response.xml"),
|
||||
"epp.response.extension.creData.applicationID", "epp.response.resData.creData.crDate");
|
||||
}
|
||||
|
||||
|
@ -338,7 +338,7 @@ public class DomainApplicationCreateFlowTest
|
|||
persistClaimsList(ImmutableMap.of("example-one", CLAIMS_KEY));
|
||||
persistContactsAndHosts();
|
||||
clock.advanceOneMilli();
|
||||
dryRunFlowAssertResponse(readFile("domain_create_sunrush_response_claims.xml"),
|
||||
dryRunFlowAssertResponse(loadFile("domain_create_sunrush_response_claims.xml"),
|
||||
"epp.response.extension.creData.applicationID", "epp.response.resData.creData.crDate");
|
||||
}
|
||||
|
||||
|
@ -819,7 +819,7 @@ public class DomainApplicationCreateFlowTest
|
|||
persistContactsAndHosts();
|
||||
clock.advanceOneMilli();
|
||||
runFlowAssertResponse(
|
||||
readFile("domain_create_landrush_premium_response.xml"),
|
||||
loadFile("domain_create_landrush_premium_response.xml"),
|
||||
"epp.response.extension.creData.applicationID",
|
||||
"epp.response.resData.creData.crDate",
|
||||
"epp.response.extension.creData.phase");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue