diff --git a/ACTK1_0/xml/Schema.hpp b/ACTK1_0/xml/Schema.hpp deleted file mode 100644 index 10ad876..0000000 --- a/ACTK1_0/xml/Schema.hpp +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef __SCHEMA_HPP -#define __SCHEMA_HPP - -class Schema -{ -}; - -#endif // __SCHEMA_HPP diff --git a/ACTK1_0/xml/Source.hpp b/ACTK1_0/xml/Source.hpp deleted file mode 100644 index a77a577..0000000 --- a/ACTK1_0/xml/Source.hpp +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef __SOURCE_HPP -#define __SOURCE_HPP - -class Source -{ -}; - -#endif // __SOURCE_HPP diff --git a/APIG/build/drde-cd b/APIG/build/drde-cd index a48e750..0fcc0c0 100755 Binary files a/APIG/build/drde-cd and b/APIG/build/drde-cd differ diff --git a/APIG/client/commander.cpp b/APIG/client/commander.cpp index 66c66af..0cfc0c7 100644 --- a/APIG/client/commander.cpp +++ b/APIG/client/commander.cpp @@ -396,8 +396,8 @@ void mdCommander::eppMainMenu() { mvprintw(25,10," V - vi/xmledit a XSDs"); mvprintw(7,50, "EPP command schemata are defined by XSDs in ./resources."); - mvprintw(8,50, "Originals from the 2007 toolkit are updated to what's @"); - mvprintw(9,50, "http://www.iana.org/assignments/xml-registry/xml-registry.xhtml"); + mvprintw(8,50, "These are verified to be IETF standard plus the launch phase"); + mvprintw(9,50, "extensions used by major Registries."); mvprintw(11,50,"Load schema means to activate the code generated from the xsds"); mvprintw(12,50,"and attach it to the commands."); mvprintw(14,50,"Without this you'll see stub commands in the internal editor."); diff --git a/AusRegCliever/build/drde-cliever b/AusRegCliever/build/drde-cliever index e89a902..d01a13a 100755 Binary files a/AusRegCliever/build/drde-cliever and b/AusRegCliever/build/drde-cliever differ diff --git a/AusRegCliever/server/mdAusReg.cpp b/AusRegCliever/server/mdAusReg.cpp index 4a03e4b..7b784db 100644 --- a/AusRegCliever/server/mdAusReg.cpp +++ b/AusRegCliever/server/mdAusReg.cpp @@ -36,6 +36,8 @@ char *name2 = "yoda.guru"; char *name3 = "pricey.holdings"; char *name4 = "unicycles.bike"; char *name5 = "greedy.ventures"; +char *name6 = "shady.ventures"; +char *name7 = "hemmarhoid.camera"; static TestEnvironment props; @@ -103,9 +105,10 @@ void ausRegEPPTK::doOTEA() } void ausRegEPPTK::doOTEB() { - bool addDomains = false, debug=true, contactCreated = true, doTransfers = false; + bool addDomains = true, debug=true, contactCreated = true, doTransfers = false, + transferGainer = false; int cmd=0; - char *thatAccount="secura2-ote", *thisAccount="secura1-ote"; + const char *thatAccount="secura2-ote", *thisAccount="secura1-ote"; string op("newInstance"); Transaction thisTest; @@ -204,7 +207,7 @@ void ausRegEPPTK::doOTEB() if (addDomains) { - /* DomainCreateCommand + DomainCreateCommand baCommand_3(name3,pw,&RID, &tech, &ns, &admin, &billing); DomainCreateResponse baResponse_3; @@ -217,7 +220,7 @@ void ausRegEPPTK::doOTEB() thisTest = Transaction(&baCommand_3a, &baResponse_3a); manager->execute(thisTest); - */ + DomainCreateCommand baCommand_3b(name5,pw,&RID, &tech, &ns, &admin, &billing); DomainCreateResponse baResponse_3b; @@ -239,15 +242,17 @@ void ausRegEPPTK::doOTEB() theseLogs->logN(0,"Case %d Failed, harness catch.",cmd++); } - theseLogs->logN(2,"skip (%d) yoda.guru, bestever.camera -> %s.",cmd++, - thatAccount); + theseLogs->logN(2,"%s (%d) %s -> %s.", + (transferGainer ? "Request" : "Approve"),cmd++, + name1,thatAccount); if (doTransfers) { - const TransferOp *thisTransfer = new TransferOp("request"); + const TransferOp *thisTransfer = + transferGainer ? new TransferOp("request") : new TransferOp("approve") ; DomainTransferCommand - baCommand_4(thisTransfer,"bestever.camera"); + baCommand_4(thisTransfer,name1); DomainTransferResponse baResponse_4; try { @@ -263,9 +268,9 @@ void ausRegEPPTK::doOTEB() } - theseLogs->logN(1,"(%d) Sunrise create bestever.camera with ICANN SMD test files.",cmd++); + theseLogs->logN(1,"(%d) Sunrise create %s with ICANN SMD test files.",cmd++,name5); - LPECreateCommand baCommand_5("bestever.camera",pw,&RID); + LPECreateCommand baCommand_5(name5,pw,&RID, &tech, &ns, &admin, &billing); LPECreateResponse baResponse_5; thisTest = Transaction(&baCommand_5, &baResponse_5); @@ -273,7 +278,7 @@ void ausRegEPPTK::doOTEB() theseLogs->logN(1,"(%d) Create test-validate.claimsgasix (TCN).",cmd++); - LPECreateCommand baCommand_6("test-validate.claimsgasix",pw,&RID); + LPECreateCommand baCommand_6("test-validate.claimsgasix",pw,&RID, &tech, &ns, &admin, &billing); LPECreateResponse baResponse_6; thisTest = Transaction(&baCommand_6, &baResponse_6);