mirror of
https://github.com/internetee/registry.git
synced 2025-07-24 19:48:28 +02:00
Handle EPP contact:transfer
This commit is contained in:
parent
e3bcc0badb
commit
397136ef13
5 changed files with 34 additions and 0 deletions
23
test/integration/epp/contact/transfer/base_test.rb
Normal file
23
test/integration/epp/contact/transfer/base_test.rb
Normal file
|
@ -0,0 +1,23 @@
|
|||
require 'test_helper'
|
||||
|
||||
class EppContactTransferBaseTest < EppTestCase
|
||||
# https://github.com/internetee/registry/issues/676
|
||||
def test_not_implemented
|
||||
request_xml = <<-XML
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||
<command>
|
||||
<transfer op="request">
|
||||
<contact:transfer xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
|
||||
<contact:id>any</contact:id>
|
||||
</contact:transfer>
|
||||
</transfer>
|
||||
</command>
|
||||
</epp>
|
||||
XML
|
||||
|
||||
post epp_transfer_path, { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames'
|
||||
|
||||
assert_epp_response :unimplemented
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue