mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 08:27:14 +02:00
Use TldSpecificLogicProxy to fetch renew price in DomainRenewFlow
The renew flow was still using PricingEngineProxy directly, meaning that it did not pick up on any TLD-specific pricing logic. Fixed this, and added tests to make sure. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136757922
This commit is contained in:
parent
ae7933da57
commit
fd1c68ffb9
4 changed files with 34 additions and 8 deletions
|
@ -58,6 +58,15 @@ public class TestExtraLogicManager implements RegistryExtraFlowLogic {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the flags to be used in the EPP flags extension for info commands.
|
||||
*
|
||||
* <p>The test extra logic manager uses domain names differently for info commands than for other
|
||||
* flows. In other flows, the test logic needs returns (via the success exception) the flags found
|
||||
* in the incoming message. But for info commands, there aren't any incoming flags, only outgoing
|
||||
* ones. So we need to specify the flags using a dummy domain name; those flags can then be
|
||||
* inserted into the outgoing info response.
|
||||
*/
|
||||
@Override
|
||||
public Set<String> getExtensionFlags(
|
||||
DomainResource domainResource, String clientId, DateTime asOfDate) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue