Class EPPLaunchPolicyRegistryTst
- java.lang.Object
-
- junit.framework.Assert
-
- junit.framework.TestCase
-
- com.verisign.epp.interfaces.launchpolicy.v01.EPPLaunchPolicyRegistryTst
-
- All Implemented Interfaces:
junit.framework.Test
public class EPPLaunchPolicyRegistryTst extends junit.framework.TestCase
-
-
Constructor Summary
Constructors Constructor Description EPPLaunchPolicyRegistryTst(java.lang.String name)Allocates anEPPLaunchPolicyRegistryTstwith a logical name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EPPLaunchPolicyZonebuildLaunchPolicyZone()Build a populatedEPPLaunchPolicyZoneinstance that can be included in one of the Launch Policy Extensions.voidhandleException(java.lang.Exception aException)Handle anEPPCommandException, which can be either a server generated error or a general exception.java.lang.StringmakeZoneName()Make a pseudo random zone name.voidregistryCheck(java.util.Map aZoneNames)Unit test ofEPPRegistry.sendCheck.voidregistryCreate(java.lang.String aZoneName, boolean aShouldSucceed)Unit test ofEPPRegistry.sendCreate.voidregistryDelete(java.lang.String aZoneName, boolean aShouldSucceed)Unit test ofEPPRegistry.sendDelete.voidregistryInfo(EPPRegistryInfoCmd.Mode aMode, java.lang.String aZoneName, EPPRegistryInfoCmd.Scope aScope)Test for the registry info command that supports the three forms of getting detailed information for an individual zone by setting theaZoneNameparameter to a non-nullvalue, getting a summary of all zones by setting theaScopeparameter to a non-nullvalue, and getting the system information by setting theaSystemparameter to true.voidregistryUpdate(java.lang.String aZoneName, boolean aShouldSucceed)Unit test ofEPPRegistry.sendUpdate.protected voidsetUp()static junit.framework.Testsuite()protected voidtearDown()JUNITtearDown, which currently does nothing.voidtestRegistry()Test the Registry Mapping by doing the following: Create a set of zones. Update a zone. Check the availability (existence) of the zones. Get all summary information for the zones. Get detailed zone information for some zones. Get registry system information. Delete a set of zones.-
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, run, runBare, runTest, setName, toString
-
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail
-
-
-
-
Method Detail
-
testRegistry
public void testRegistry()
Test the Registry Mapping by doing the following:- Create a set of zones.
- Update a zone.
- Check the availability (existence) of the zones.
- Get all summary information for the zones.
- Get detailed zone information for some zones.
- Get registry system information.
- Delete a set of zones.
-
registryCheck
public void registryCheck(java.util.Map aZoneNames)
Unit test ofEPPRegistry.sendCheck.- Parameters:
aZoneNames- Names of the zones to check
-
registryCreate
public void registryCreate(java.lang.String aZoneName, boolean aShouldSucceed)Unit test ofEPPRegistry.sendCreate.- Parameters:
aZoneName- Zone to createaShouldSucceed-trueif the zone create should succeed;falseotherwise.
-
registryDelete
public void registryDelete(java.lang.String aZoneName, boolean aShouldSucceed)Unit test ofEPPRegistry.sendDelete.- Parameters:
aZoneName- Zone to deleteaShouldSucceed-trueif the zone delete should succeed;falseotherwise.
-
registryUpdate
public void registryUpdate(java.lang.String aZoneName, boolean aShouldSucceed)Unit test ofEPPRegistry.sendUpdate.- Parameters:
aZoneName- Zone to updateaShouldSucceed-trueif the zone update should succeed;falseotherwise.
-
registryInfo
public void registryInfo(EPPRegistryInfoCmd.Mode aMode, java.lang.String aZoneName, EPPRegistryInfoCmd.Scope aScope)
Test for the registry info command that supports the three forms of getting detailed information for an individual zone by setting theaZoneNameparameter to a non-nullvalue, getting a summary of all zones by setting theaScopeparameter to a non-nullvalue, and getting the system information by setting theaSystemparameter to true. There can be only one form used as a time.- Parameters:
aMode- One of the support info modes (EPPRegistryInfoCmd.Mode.name,EPPRegistryInfoCmd.Mode.all, orEPPRegistryInfoCmd.Mode.system)aZoneName- Used with the "name" info mode that represents the zone name to query. Set tonullwith theEPPRegistryInfoCmd.Mode.allorEPPRegistryInfoCmd.Mode.systemmodes.aScope- Used with the "all" info mode that represents the scope of the zones to query. Set tonullwith theEPPRegistryInfoCmd.Mode.nameorEPPRegistryInfoCmd.Mode.systemmodes.
-
makeZoneName
public java.lang.String makeZoneName()
Make a pseudo random zone name.- Returns:
- pseudo random zone name
-
handleException
public void handleException(java.lang.Exception aException)
Handle anEPPCommandException, which can be either a server generated error or a general exception. If the exception was caused by a server error, "Server Error :<Response XML>" will be specified. If the exception was caused by a general algorithm error, "General Error :<Exception Description>" will be specified.- Parameters:
aException- Exception thrown during test
-
suite
public static junit.framework.Test suite()
-
setUp
protected void setUp()
- Overrides:
setUpin classjunit.framework.TestCase
-
tearDown
protected void tearDown()
JUNITtearDown, which currently does nothing.- Overrides:
tearDownin classjunit.framework.TestCase
-
buildLaunchPolicyZone
public static EPPLaunchPolicyZone buildLaunchPolicyZone()
Build a populatedEPPLaunchPolicyZoneinstance that can be included in one of the Launch Policy Extensions. The populated attributes are based on the sample included in draft-gould-regext-launch-policy. The following phases are added to the populatedEPPLaunchPolicyZoneinstance:
- Sunrise
- Claims for Limited Registration Period #1 (LRP1)
- Claims for Landrush
- Claims (Open)
- Custom for Limited Registration Period #2 (LRP2)
- Open
- Returns:
- Populated
EPPLaunchPolicyZonebased on the sample included in draft-gould-regext-launch-policy.
-
-