1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
#!/usr/bin/perl -w
use Net::DRI;
use Net::DRI::Data::Raw;
use DateTime::Duration;
use Test::More tests => 101;
eval { no warnings; require Test::LongString; Test::LongString->import(max => 100); $Test::LongString::Context=50; };
*{'main::is_string'}=\&main::is if $@;
our $E1='<?xml version="1.0" encoding="UTF-8" standalone="no"?><epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd">';
our $E2='</epp>';
our $TRID='<trID><clTRID>ABC-12345</clTRID><svTRID>54322-XYZ</svTRID></trID>';
our ($R1,$R2);
sub mysend { my ($transport,$count,$msg)=@_; $R1=$msg->as_string(); return 1;}
sub myrecv { return Net::DRI::Data::Raw->new_from_string($R2? $R2 : $E1.'<response>'.r().$TRID.'</response>'.$E2); }
sub r { my ($c,$m)=@_; return '<result code="'.($c || 1000).'"><msg>'.($m || 'Command completed successfully').'</msg></result>'; }
my $dri=Net::DRI::TrapExceptions->new(10);
$dri->{trid_factory}=sub { return 'ABC-12345'; };
$dri->add_registry('AFNIC');
$dri->target('AFNIC')->add_current_profile('p1','test=Net::DRI::Protocol::EPP::Extensions::AFNIC',{f_send=>\&mysend,f_recv=>\&myrecv});
my ($rc,$cs,$s,$toc);
####################################################################################################
## 2.2.4
my $ZC=<<'EOF';
ZONE : ndd-de-test-0001.fr.
NS : ns1.nic.fr.
NS : ns2.nic.fr.
NS : ns.ndd-de-test-0001.fr. [192.93.0.1, 2001:660:3005:1::1:1]
==> SUCCESS
EOF
$R2=$E1.'<response>'.r(1301,'Command completed successfully; ack to dequeue').'<msgQ count="1" id="50001"><qDate>2008-12-25T00:01:00.0Z</qDate><msg><resZC type="plain-text">'.$ZC.'</resZC></msg></msgQ><resData><domain:panData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"><domain:name paResult="1">ndd-de-test-0001.fr</domain:name><domain:paTRID><clTRID>une-reference-client-par-exemple</clTRID><svTRID>frnic-00000003</svTRID></domain:paTRID><domain:paDate>2008-12-25T00:01:00.0Z</domain:paDate></domain:panData></resData>'.$TRID.'</response>'.$E2;
$rc=$dri->message_retrieve();
is($dri->get_info('last_id'),50001,'message get_info last_id 1');
is($dri->get_info('last_id','message','session'),50001,'message get_info last_id 2');
is($dri->get_info('id','message',50001),50001,'message get_info id');
is(''.$dri->get_info('qdate','message',50001),'2008-12-25T00:01:00','message get_info qdate');
is($dri->get_info('object_type','message',50001),'domain','message get_info object_type');
is($dri->get_info('object_id','message',50001),'ndd-de-test-0001.fr','message get_info id');
is($dri->get_info('action','message',50001),'review_zonecheck','message get_info action'); ## with this, we know what action has triggered this delayed message
is($dri->get_info('result','message',50001),1,'message get_info result');
is($dri->get_info('trid','message',50001),'une-reference-client-par-exemple','message get_info trid');
is($dri->get_info('svtrid','message',50001),'frnic-00000003','message get_info svtrid');
is(''.$dri->get_info('date','message',50001),'2008-12-25T00:01:00','message get_info date');
is($dri->get_info('result','domain','ndd-de-test-0001.fr'),1,'message get_info(result,domain,$DOM)');
is_string($dri->get_info('review_zonecheck','domain','ndd-de-test-0001.fr'),$ZC,'message get_info(review_zonecheck,domain,$DOM)');
####################################################################################################
## 2.5.1
## (clTRID changed from example + added xsiSchemaLocation)
$cs=$dri->local_object('contactset');
$cs->set($dri->local_object('contact')->srid('PR1249'),'registrant');
$cs->set($dri->local_object('contact')->srid('VL'),'admin');
$cs->set($dri->local_object('contact')->srid('AI1'),'tech');
$cs->add($dri->local_object('contact')->srid('PR1249'),'tech');
$R2=$E1.'<response>'.r().'<extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:trdData><frnic:domain><frnic:name>ndd-de-test-0001.fr</frnic:name><frnic:trStatus>pending</frnic:trStatus><frnic:reID>BEdemandeurID</frnic:reID><frnic:reDate>2009-01-01T00:00:00.0Z</frnic:reDate><frnic:reHldID>PR1249</frnic:reHldID><frnic:rhDate>2009-01-09T00:00:00.0Z</frnic:rhDate><frnic:acID>BEactuelID</frnic:acID><frnic:acHldID>MM4567</frnic:acHldID><frnic:ahDate>2009-01-09T00:00:00.0Z</frnic:ahDate></frnic:domain></frnic:trdData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->domain_trade_start('ndd-de-test-0001.fr',{contact=>$cs});
is_string($R1,$E1.'<extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0" xsi:schemaLocation="http://www.afnic.fr/xml/epp/frnic-1.0 frnic-1.0.xsd"><frnic:command><frnic:trade op="request"><frnic:domain><frnic:name>ndd-de-test-0001.fr</frnic:name><frnic:registrant>PR1249</frnic:registrant><frnic:contact type="admin">VL</frnic:contact><frnic:contact type="tech">AI1</frnic:contact><frnic:contact type="tech">PR1249</frnic:contact></frnic:domain></frnic:trade><frnic:clTRID>ABC-12345</frnic:clTRID></frnic:command></frnic:ext></extension>'.$E2,'domain_trade_start build');
is($dri->get_info('trStatus'),'pending','domain_trade_start get_info(trStatus)');
is($dri->get_info('reID'),'BEdemandeurID','domain_trade_start get_info(reID)');
is(''.$dri->get_info('reDate'),'2009-01-01T00:00:00','domain_trade_start get_info(reDate)');
is($dri->get_info('reHldID'),'PR1249','domain_trade_start get_info(reHldID)');
is(''.$dri->get_info('rhDate'),'2009-01-09T00:00:00','domain_trade_start get_info(rhDate)');
is($dri->get_info('acID'),'BEactuelID','domain_trade_start get_info(acID)');
is($dri->get_info('acHldID'),'MM4567','domain_trade_start get_info(acHldID)');
is(''.$dri->get_info('ahDate'),'2009-01-09T00:00:00','domain_trade_start get_info(ahDate)');
####################################################################################################
## 2.5.2
$R2=$E1.'<response>'.r(1301,'Command completed successfully; ack to dequeue').'<msgQ count="1" id="50010"><qDate>2009-12-25T00:02:00.0Z</qDate><msg>Trade requested.</msg></msgQ><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:trdData><frnic:domain><frnic:name>ndd-de-test-0001.fr</frnic:name><frnic:trStatus>pending</frnic:trStatus><frnic:reID>BEdemandeurID</frnic:reID><frnic:reDate>2009-01-01T00:00:00.0Z</frnic:reDate><frnic:rhDate>2009-01-09T00:00:00.0Z</frnic:rhDate><frnic:acID>BEactuelID</frnic:acID><frnic:acHldID>MM4567</frnic:acHldID><frnic:ahDate>2009-01-09T00:00:00.0Z</frnic:ahDate></frnic:domain></frnic:trdData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->message_retrieve();
is($dri->get_info('last_id'),50010,'message get_info last_id 1');
is($dri->get_info('content','message',50010),'Trade requested.','message get_info message');
is(''.$dri->get_info('qdate','message',50010),'2009-12-25T00:02:00','message get_info qdate');
is($dri->get_info('object_type','message',50010),'domain','retrieve trade get_info object_type');
is($dri->get_info('object_id','message',50010),'ndd-de-test-0001.fr','retrieve trade get_info id');
is($dri->get_info('trStatus','domain','ndd-de-test-0001.fr'),'pending','retrieve trade get_info(trStatus)');
is($dri->get_info('reID','domain','ndd-de-test-0001.fr'),'BEdemandeurID','retrieve trade get_info(reID)');
is(''.$dri->get_info('reDate','domain','ndd-de-test-0001.fr'),'2009-01-01T00:00:00','retrieve trade get_info(reDate)');
is(''.$dri->get_info('rhDate','domain','ndd-de-test-0001.fr'),'2009-01-09T00:00:00','retrieve trade get_info(rhDate)');
is($dri->get_info('acID','domain','ndd-de-test-0001.fr'),'BEactuelID','retrieve trade get_info(acID)');
is($dri->get_info('acHldID','domain','ndd-de-test-0001.fr'),'MM4567','retrieve trade get_info(acHldID)');
is(''.$dri->get_info('ahDate','domain','ndd-de-test-0001.fr'),'2009-01-09T00:00:00','retrieve trade get_info(ahDate)');
## Other two examples are mostly the same, parsing wise.
####################################################################################################
## 2.5.4
## domain_trade_query : no example
####################################################################################################
## 2.6.1
## (clTRID changed from example + added xsiSchemaLocation)
$cs=$dri->local_object('contactset');
$cs->set($dri->local_object('contact')->srid('PR1249'),'registrant');
$cs->set($dri->local_object('contact')->srid('VL'),'admin');
$cs->set($dri->local_object('contact')->srid('AI1'),'tech');
$cs->add($dri->local_object('contact')->srid('PR1249'),'tech');
$R2=$E1.'<response>'.r().'<extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:recData><frnic:domain><frnic:name>ndd-de-test-0001.fr</frnic:name><frnic:reID>BEdemandeurID</frnic:reID><frnic:reDate>2009-01-01T00:00:00.0Z</frnic:reDate><frnic:reHldID>PR1249</frnic:reHldID><frnic:acID>BEactuelID</frnic:acID><frnic:acHldID>MM4567</frnic:acHldID></frnic:domain></frnic:recData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->domain_recover_start('ndd-de-test-0001.fr',{contact=>$cs,auth=>{pw=>'NDCR20080229T173000.123456789'}});
is_string($R1,$E1.'<extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0" xsi:schemaLocation="http://www.afnic.fr/xml/epp/frnic-1.0 frnic-1.0.xsd"><frnic:command><frnic:recover op="request"><frnic:domain><frnic:name>ndd-de-test-0001.fr</frnic:name><frnic:authInfo><domain:pw xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">NDCR20080229T173000.123456789</domain:pw></frnic:authInfo><frnic:registrant>PR1249</frnic:registrant><frnic:contact type="admin">VL</frnic:contact><frnic:contact type="tech">AI1</frnic:contact><frnic:contact type="tech">PR1249</frnic:contact></frnic:domain></frnic:recover><frnic:clTRID>ABC-12345</frnic:clTRID></frnic:command></frnic:ext></extension>'.$E2,'domain_recover_start build');
is($dri->get_info('reID'),'BEdemandeurID','domain_recover_start get_info(reID)');
is(''.$dri->get_info('reDate'),'2009-01-01T00:00:00','domain_recover_start get_info(reDate)');
is($dri->get_info('reHldID'),'PR1249','domain_recover_start get_info(reHldID)');
is($dri->get_info('acID'),'BEactuelID','domain_recover_start get_info(acID)');
is($dri->get_info('acHldID'),'MM4567','domain_recover_start get_info(acHldID)');
####################################################################################################
## 2.7
$R2=$E1.'<response>'.r().'<resData><domain:chkData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"><domain:cd><domain:name avail="0">afnic.fr</domain:name><domain:reason>In use</domain:reason></domain:cd><domain:cd><domain:name avail="1">af-1234-nic.fr</domain:name></domain:cd><domain:cd><domain:name avail="1">bois-guillaume.fr</domain:name></domain:cd><domain:cd><domain:name avail="0">paris.fr</domain:name><domain:reason>In use</domain:reason></domain:cd><domain:cd><domain:name avail="0">trafiquants.fr</domain:name><domain:reason>Forbidden name</domain:reason></domain:cd><domain:cd><domain:name avail="0">toto.wf</domain:name><domain:reason>Zone not opened</domain:reason></domain:cd></domain:chkData></resData><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:chkData><frnic:domain><frnic:cd><frnic:name reserved="0" forbidden="0">afnic.fr</frnic:name></frnic:cd><frnic:cd><frnic:name reserved="0" forbidden="0">af-1234-nic.fr</frnic:name></frnic:cd><frnic:cd><frnic:name reserved="1" forbidden="0">bois-guillaume.fr</frnic:name><frnic:rsvReason>City name</frnic:rsvReason></frnic:cd><frnic:cd><frnic:name reserved="1" forbidden="0">paris.fr</frnic:name><frnic:rsvReason>City name</frnic:rsvReason></frnic:cd><frnic:cd><frnic:name reserved="0" forbidden="1">trafiquants.fr</frnic:name><frnic:fbdReason>Legal issue</frnic:fbdReason></frnic:cd><frnic:cd><frnic:name reserved="0" forbidden="0">toto.wf</frnic:name></frnic:cd></frnic:domain></frnic:chkData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->domain_check_multi(qw/afnic.fr af-1234-nic.fr bois-guillaume.fr paris.fr trafiquants.fr toto.wf/);
is_string($R1,$E1.'<command><check><domain:check xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd"><domain:name>afnic.fr</domain:name><domain:name>af-1234-nic.fr</domain:name><domain:name>bois-guillaume.fr</domain:name><domain:name>paris.fr</domain:name><domain:name>trafiquants.fr</domain:name><domain:name>toto.wf</domain:name></domain:check></check><clTRID>ABC-12345</clTRID></command>'.$E2,'domain_check build');
is($rc->is_success(),1,'domain_check_multi is_success');
is($dri->get_info('exist','domain','afnic.fr'),1,'domain_check_multi get_info(exist,domain1)');
is($dri->get_info('exist_reason','domain','afnic.fr'),'In use','domain_check_multi get_info(exist_reason,domain1)');
is($dri->get_info('exist','domain','af-1234-nic.fr'),0,'domain_check_multi get_info(exist,domain2)');
is($dri->get_info('exist','domain','bois-guillaume.fr'),0,'domain_check_multi get_info(exist,domain3)');
is($dri->get_info('exist','domain','paris.fr'),1,'domain_check_multi get_info(exist,domain4)');
is($dri->get_info('exist_reason','domain','paris.fr'),'In use','domain_check_multi get_info(exist_reason,domain4)');
is($dri->get_info('exist','domain','trafiquants.fr'),1,'domain_check_multi get_info(exist,domain5)');
is($dri->get_info('exist_reason','domain','trafiquants.fr'),'Forbidden name','domain_check_multi get_info(exist_reason,domain5)');
is($dri->get_info('exist','domain','toto.wf'),1,'domain_check_multi get_info(exist,domain6)');
is($dri->get_info('exist_reason','domain','toto.wf'),'Zone not opened','domain_check_multi get_info(exist_reason,domain6)');
is($dri->get_info('reserved_reason','domain','bois-guillaume.fr'),'City name','domain_check_multi get_info(reserved_reason,domain3)');
is($dri->get_info('reserved_reason','domain','paris.fr'),'City name','domain_check_multi get_info(reserved_reason,domain4)');
is($dri->get_info('forbidden_reason','domain','trafiquants.fr'),'Legal issue','domain_check_multi get_info(forbidden_reason,domain5)');
is($dri->get_info('forbidden','domain','afnic.fr'),0,'domain_check_multi get_info(forbidden,domain1)');
is($dri->get_info('reserved','domain','afnic.fr'),0,'domain_check_multi get_info(reserved,domain1)');
is($dri->get_info('reserved','domain','bois-guillaume.fr'),1,'domain_check_multi get_info(reserved,domain3)');
is($dri->get_info('forbidden','domain','trafiquants.fr'),1,'domain_check_multi get_info(forbidden,domain5)');
####################################################################################################
## 2.8.2
$R2=$E1.'<response>'.r().'<resData><domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"><domain:name>ndd-de-test-0001.fr</domain:name><domain:roid>DOM000000456987-FRNIC</domain:roid><domain:status s="ok"/><domain:registrant>MM4567</domain:registrant><domain:contact type="admin">NFC1</domain:contact><domain:contact type="tech">NFC1</domain:contact><domain:contact type="tech">VL</domain:contact><domain:ns><domain:hostAttr><domain:hostName>ns1.nic.fr</domain:hostName></domain:hostAttr><domain:hostAttr><domain:hostName>ns2.nic.fr</domain:hostName></domain:hostAttr><domain:hostAttr><domain:hostName>ns.ndd-de-test-0001.fr</domain:hostName><domain:hostAddr ip="v4">192.93.0.1</domain:hostAddr><domain:hostAddr ip="v6">2001:660:3005:1::1:1</domain:hostAddr></domain:hostAttr></domain:ns><domain:host>ns.ndd-de-test-0001.fr</domain:host><domain:host>ns1234.ndd-de-test-0001.fr</domain:host><domain:clID>BEactuelID</domain:clID><domain:crDate>2008-12-25T00:00:00.0Z</domain:crDate><domain:exDate>2009-12-25T00:00:00.0Z</domain:exDate><domain:update>2009-01-10T00:00:00.0Z</domain:update><domain:authInfo><domain:pw>WarlordZ666</domain:pw></domain:authInfo></domain:infData></resData><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:infData><frnic:domain><frnic:status s="serverTradeProhibited"/><frnic:status s="serverRecoverProhibited"/></frnic:domain></frnic:infData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->domain_info('ndd-de-test-0001.fr');
is($rc->is_success(),1,'domain_info is_success');
$s=$dri->get_info('status');
is_deeply([$s->list_status()],[qw/serverRecoverProhibited serverTradeProhibited/],'domain_info get_info(status) list_status');
####################################################################################################
## 3.1
## corrected misplacement of contact:id
$R2=$E1.'<response>'.r().'<resData><contact:creData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0"><contact:id>VL99999</contact:id><contact:crDate>2008-11-20T00:00:00.0Z</contact:crDate></contact:creData></resData><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:creData><frnic:nhStatus new="1"/><frnic:idStatus>no</frnic:idStatus></frnic:creData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$co=$dri->local_object('contact');
$co->name('Levigneron');
$co->firstname('Vincent');
$co->org('AFNIC');
$co->street(['immeuble international','2, rue Stephenson','Montigny le Bretonneux']);
$co->city('Saint Quentin en Yvelines Cedex');
$co->pc('78181');
$co->cc('FR');
$co->voice('+33.0139308333');
$co->fax('+33.0139308301');
$co->email('vincent.levigneron@nic.fr');
$co->auth({pw=>'UnusedPassword'});
$co->disclose('N');
$co->birth({date=>'1968-07-20',place=>'76000, Rouen'});
$rc=$dri->contact_create($co);
is_string($R1,$E1.'<command><create><contact:create xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:contact-1.0 contact-1.0.xsd"><contact:id>AUTO</contact:id><contact:postalInfo type="loc"><contact:name>Levigneron</contact:name><contact:org>AFNIC</contact:org><contact:addr><contact:street>immeuble international</contact:street><contact:street>2, rue Stephenson</contact:street><contact:street>Montigny le Bretonneux</contact:street><contact:city>Saint Quentin en Yvelines Cedex</contact:city><contact:pc>78181</contact:pc><contact:cc>FR</contact:cc></contact:addr></contact:postalInfo><contact:voice>+33.0139308333</contact:voice><contact:fax>+33.0139308301</contact:fax><contact:email>vincent.levigneron@nic.fr</contact:email><contact:authInfo><contact:pw>UnusedPassword</contact:pw></contact:authInfo></contact:create></create><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0" xsi:schemaLocation="http://www.afnic.fr/xml/epp/frnic-1.0 frnic-1.0.xsd"><frnic:create><frnic:contact><frnic:list>restrictedPublication</frnic:list><frnic:individualInfos><frnic:birthDate>1968-07-20</frnic:birthDate><frnic:birthCity>Rouen</frnic:birthCity><frnic:birthPc>76000</frnic:birthPc><frnic:birthCc>FR</frnic:birthCc></frnic:individualInfos><frnic:firstName>Vincent</frnic:firstName></frnic:contact></frnic:create></frnic:ext></extension><clTRID>ABC-12345</clTRID></command>'.$E2,'contact_create PP build');
is($rc->is_success(),1,'contact_create is_success');
is($dri->get_info('id'),'VL99999','contact_create get_info(id)');
is($dri->get_info('action','contact','VL99999'),'create','contact_create get_info(action)');
is($dri->get_info('exist','contact','VL99999'),1,'contact_create get_info(exist)');
is($dri->get_info('new_handle','contact','VL99999'),1,'contact_create get_info(new_handle)');
is($dri->get_info('identification','contact','VL99999'),'no','contact_create get_info(identification)');
$R2='';
$co=$dri->local_object('contact');
$co->name('Service des Rclamations');
$co->org('AFNIC Corp');
$co->street(['immeuble international','2, rue Stephenson','Montigny le Bretonneux']);
$co->city('Saint Quentin en Yvelines Cedex');
$co->pc('78181');
$co->cc('FR');
$co->voice('+33.0139308333');
$co->fax('+33.0139308301');
$co->email('vincent.levigneron@nic.fr');
$co->auth({pw=>'UnusedPassword'});
$co->legal_form('company');
$co->legal_id(123456789);
$co->trademark('27YOUPLA2345678');
$co->jo({date_declaration=>'1999-05-19',number=>5, page=>2, date_publication=>'1999-06-01'});
$rc=$dri->contact_create($co);
is_string($R1,$E1.'<command><create><contact:create xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:contact-1.0 contact-1.0.xsd"><contact:id>AUTO</contact:id><contact:postalInfo type="loc"><contact:name>Service des Rclamations</contact:name><contact:org>AFNIC Corp</contact:org><contact:addr><contact:street>immeuble international</contact:street><contact:street>2, rue Stephenson</contact:street><contact:street>Montigny le Bretonneux</contact:street><contact:city>Saint Quentin en Yvelines Cedex</contact:city><contact:pc>78181</contact:pc><contact:cc>FR</contact:cc></contact:addr></contact:postalInfo><contact:voice>+33.0139308333</contact:voice><contact:fax>+33.0139308301</contact:fax><contact:email>vincent.levigneron@nic.fr</contact:email><contact:authInfo><contact:pw>UnusedPassword</contact:pw></contact:authInfo></contact:create></create><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0" xsi:schemaLocation="http://www.afnic.fr/xml/epp/frnic-1.0 frnic-1.0.xsd"><frnic:create><frnic:contact><frnic:legalEntityInfos><frnic:legalStatus s="company"/><frnic:siren>123456789</frnic:siren><frnic:trademark>27YOUPLA2345678</frnic:trademark><frnic:asso><frnic:decl>1999-05-19</frnic:decl><frnic:publ announce="5" page="2">1999-06-01</frnic:publ></frnic:asso></frnic:legalEntityInfos></frnic:contact></frnic:create></frnic:ext></extension><clTRID>ABC-12345</clTRID></command>'.$E2,'contact_create PM build');
####################################################################################################
## 3.2
$co=$dri->local_object('contact')->srid('VL99999');
$toc=$dri->local_object('changes');
$toc->del('disclose','restrictedPublication');
$dri->contact_update($co,$toc);
is_string($R1,$E1.'<command><update><contact:update xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:contact-1.0 contact-1.0.xsd"><contact:id>VL99999</contact:id></contact:update></update><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0" xsi:schemaLocation="http://www.afnic.fr/xml/epp/frnic-1.0 frnic-1.0.xsd"><frnic:update><frnic:contact><frnic:rem><frnic:list>restrictedPublication</frnic:list></frnic:rem></frnic:contact></frnic:update></frnic:ext></extension><clTRID>ABC-12345</clTRID></command>'.$E2,'contact_update build');
####################################################################################################
## 3.5
$R2=$E1.'<response>'.r().'<resData><contact:infData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0"><contact:id>VL99999</contact:id><contact:roid>VL9999-FRNIC</contact:roid><contact:status s="linked"/><contact:postalInfo type="loc"><contact:name>Levigneron</contact:name><contact:org>AFNIC</contact:org><contact:addr><contact:street>immeuble international</contact:street><contact:street>2, rue Stephenson</contact:street><contact:street>Montigny le Bretonneux</contact:street><contact:city>Saint Quentin en Yvelines Cedex</contact:city><contact:pc>78181</contact:pc><contact:cc>FR</contact:cc></contact:addr></contact:postalInfo><contact:voice>+33.0139308333</contact:voice><contact:fax>+33.0139308301</contact:fax><contact:email>vincent.levigneron@nic.fr</contact:email><contact:clID>BEactuelID</contact:clID><contact:crID>BEcreateurID</contact:crID><contact:crDate>2008-11-20T00:00:00.0Z</contact:crDate><contact:update>2008-12-25T00:00:00.0Z</contact:update></contact:infData></resData><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:infData><frnic:contact><frnic:firstName>Vincent</frnic:firstName><frnic:list>restrictedPublication</frnic:list><frnic:individualInfos><frnic:idStatus>ok</frnic:idStatus><frnic:birthDate>1968-07-20</frnic:birthDate><frnic:birthCity>Rouen</frnic:birthCity><frnic:birthPc>76000</frnic:birthPc><frnic:birthCc>FR</frnic:birthCc></frnic:individualInfos></frnic:contact></frnic:infData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$dri->contact_info($co);
is($rc->is_success(),1,'contact_info is_success');
is($dri->get_info('action'),'info','contact_info get_info(action)');
is($dri->get_info('exist'),1,'contact_info get_info(exist)');
is($dri->get_info('identification'),'ok','contact_info get_info(identification)');
$co=$dri->get_info('self');
isa_ok($co,'Net::DRI::Data::Contact::AFNIC','contact_info get_info(self)');
is($co->name(),'Levigneron','contact_info get_info(self) name');
is($co->firstname(),'Vincent','contact_info get_info(self) firstname');
is($co->disclose(),'N','contact_info get_info(self) disclose'); ## means <frnic:list>restrictedPublication</frnic:list>
my $b=$co->birth();
is($b->{date},'1968-07-20','contact_info get_info(self) birth date');
is($b->{place},'76000, Rouen','contact_info get_info(self) birth place');
####################################################################################################
## Identification
$R2=$E1.'<response>'.r(1301,'Command completed successfully; ack to dequeue').'<msgQ count="1" id="2846"><qDate>2009-05-05T07:52:47.0Z</qDate><msg>Identification process begins.</msg></msgQ><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:idtData><frnic:contact><frnic:id>ET1323</frnic:id><frnic:identificationProcess s="start"/><frnic:legalEntityInfos><frnic:idStatus>deprecated</frnic:idStatus><frnic:legalStatus s="company"/><frnic:siren>123456789</frnic:siren><frnic:VAT>FR1234567890</frnic:VAT><frnic:trademark>27YOUPLA2345678</frnic:trademark></frnic:legalEntityInfos></frnic:contact></frnic:idtData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->message_retrieve();
my $msgid=$rc->get_data('message','session','last_id');
my $oid=$rc->get_data('message',$msgid,'object_id');
is($rc->get_data('message',$msgid,'object_type'),'contact','message object_type');
is($rc->get_data('contact',$oid,'process'),'start','contact process');
my $c=$rc->get_data('contact',$oid,'self');
isa_ok($c,'Net::DRI::Data::Contact::AFNIC','contact self');
is($c->srid(),'ET1323','contact srid()');
is($c->id_status(),'deprecated','contact id_status()');
is($c->legal_form(),'company','contact legal_form()');
is($c->legal_id(),'123456789','contact legal_id()');
is($c->vat(),'FR1234567890','contact vat()');
is($c->trademark(),'27YOUPLA2345678','contact trademark()');
$R2=$E1.'<response>'.r(1301,'Command completed successfully; ack to dequeue').'<msgQ count="1" id="2848"><qDate>2009-05-05T07:52:49.0Z</qDate><msg>Identification process finished.</msg></msgQ><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:idtData><frnic:contact><frnic:id>ET1323</frnic:id><frnic:identificationProcess s="finished"/><frnic:legalEntityInfos><frnic:idStatus>ok</frnic:idStatus><frnic:legalStatus s="company"/><frnic:trademark>NEW-TRADEMARK-ID</frnic:trademark></frnic:legalEntityInfos></frnic:contact></frnic:idtData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->message_retrieve();
$msgid=$rc->get_data('message','session','last_id');
$oid=$rc->get_data('message',$msgid,'object_id');
is($rc->get_data('contact',$oid,'process'),'finished','contact process');
$R2=$E1.'<response>'.r(1301,'Command completed successfully; ack to dequeue').'<msgQ count="1" id="2847"><qDate>2009-05-05T07:52:48.0Z</qDate><msg>Identification process in progress.</msg></msgQ><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:idtData><frnic:contact><frnic:id>ET1323</frnic:id><frnic:identificationProcess s="pending"/><frnic:legalEntityInfos><frnic:idStatus>problem</frnic:idStatus><frnic:legalStatus s="company"/><frnic:siren>123456789</frnic:siren><frnic:VAT>FR1234567890</frnic:VAT><frnic:trademark>27YOUPLA2345678</frnic:trademark></frnic:legalEntityInfos><frnic:idtReason>VAT number not found in public bases</frnic:idtReason><frnic:idtReason>siren number not found in public bases</frnic:idtReason><frnic:idtReason>trademark ID not found in public bases</frnic:idtReason></frnic:contact></frnic:idtData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->message_retrieve();
$msgid=$rc->get_data('message','session','last_id');
$oid=$rc->get_data('message',$msgid,'object_id');
is($rc->get_data('contact',$oid,'process'),'pending','contact process');
$c=$rc->get_data('contact',$oid,'self');
is($c->id_status(),'problem','contact id_status()');
is_deeply($rc->get_data('contact',$oid,'reasons'),['VAT number not found in public bases','siren number not found in public bases','trademark ID not found in public bases'],'contact reasons');
$R2=$E1.'<response>'.r(1301,'Command completed successfully; ack to dequeue').'<msgQ count="1" id="2849"><qDate>2009-05-05T07:52:50.0Z</qDate><msg>Holder identification prevents DNS announcement.</msg></msgQ><extension><frnic:ext xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"><frnic:resData><frnic:idtData><frnic:domain><frnic:name>nic.fr</frnic:name><frnic:status s="serverHold"/><frnic:registrant>XXX1234</frnic:registrant></frnic:domain></frnic:idtData></frnic:resData></frnic:ext></extension>'.$TRID.'</response>'.$E2;
$rc=$dri->message_retrieve();
$msgid=$rc->get_data('message','session','last_id');
is($rc->get_data('message',$msgid,'object_type'),'domain','message object_type');
$oid=$rc->get_data('message',$msgid,'object_id');
is($oid,'nic.fr','domain name');
$s=$rc->get_data('domain',$oid,'status');
isa_ok($s,'Net::DRI::Protocol::EPP::Core::Status','domain status');
is_deeply([$s->list_status()],['serverHold'],'domain status list_status()');
$cs=$rc->get_data('domain',$oid,'contact');
isa_ok($cs,'Net::DRI::Data::ContactSet','domain contact');
is_deeply([$cs->types()],['registrant'],'domain contact types');
$c=$cs->get('registrant');
isa_ok($c,'Net::DRI::Data::Contact::AFNIC','domain contact registrant');
is($c->srid(),'XXX1234','domain contact srid()');
exit 0;
|