-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1062 from internetee/tests-before-auction-integra…
…tion Add basic tests before auction integration
- Loading branch information
Showing
6 changed files
with
289 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
one: | ||
name: blocked.test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
test: | ||
# https://github.com/rails/rails/issues/9516 requires this file to be under "dns" folder | ||
|
||
one: | ||
origin: test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
require 'test_helper' | ||
|
||
class EppDomainCheckBaseTest < ApplicationIntegrationTest | ||
def test_returns_valid_response | ||
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> | ||
<check> | ||
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>some.test</domain:name> | ||
</domain:check> | ||
</check> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/check', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '1000', response_xml.at_css('result')[:code] | ||
assert_equal 1, response_xml.css('result').size | ||
assert_equal 'some.test', response_xml.at_xpath('//domain:name', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
def test_domain_is_available_when_not_registered_blocked_nor_reserved | ||
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> | ||
<check> | ||
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>available.test</domain:name> | ||
</domain:check> | ||
</check> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/check', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '1', response_xml.at_xpath('//domain:name', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd')['avail'] | ||
assert_nil response_xml.at_xpath('//domain:reason', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd') | ||
end | ||
|
||
def test_domain_is_unavailable_when_format_is_invalid | ||
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> | ||
<check> | ||
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>invalid</domain:name> | ||
</domain:check> | ||
</check> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/check', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '0', response_xml.at_xpath('//domain:name', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd')['avail'] | ||
assert_equal 'invalid format', response_xml.at_xpath('//domain:reason', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
def test_domain_is_unavailable_when_registered | ||
assert_equal 'shop.test', domains(:shop).name | ||
|
||
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> | ||
<check> | ||
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>shop.test</domain:name> | ||
</domain:check> | ||
</check> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/check', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '0', response_xml.at_xpath('//domain:name', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd')['avail'] | ||
assert_equal 'in use', response_xml.at_xpath('//domain:reason', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
def test_domain_is_unavailable_when_reserved | ||
assert_equal 'reserved.test', reserved_domains(:one).name | ||
|
||
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> | ||
<check> | ||
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>reserved.test</domain:name> | ||
</domain:check> | ||
</check> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/check', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '0', response_xml.at_xpath('//domain:name', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd')['avail'] | ||
assert_equal 'Domain name is reserved', response_xml.at_xpath('//domain:reason', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
def test_multiple_domains | ||
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> | ||
<check> | ||
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>one.test</domain:name> | ||
<domain:name>two.test</domain:name> | ||
<domain:name>three.test</domain:name> | ||
</domain:check> | ||
</check> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/check', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal 3, response_xml.xpath('//domain:cd', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').size | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
require 'test_helper' | ||
|
||
class EppDomainCreateBaseTest < ApplicationIntegrationTest | ||
def test_domain_can_be_registered_with_required_attributes_only | ||
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> | ||
<create> | ||
<domain:create xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>new.test</domain:name> | ||
<domain:registrant>john-001</domain:registrant> | ||
</domain:create> | ||
</create> | ||
<extension> | ||
<eis:extdata xmlns:eis="https://epp.tld.ee/schema/eis-1.0.xsd"> | ||
<eis:legalDocument type="pdf">#{'test' * 2000}</eis:legalDocument> | ||
</eis:extdata> | ||
</extension> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
assert_difference 'Domain.count' do | ||
post '/epp/command/create', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
end | ||
|
||
domain = Domain.last | ||
assert_equal 'new.test', domain.name | ||
assert_equal contacts(:john).becomes(Registrant), domain.registrant | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '1000', response_xml.at_css('result')[:code] | ||
assert_equal 1, Nokogiri::XML(response.body).css('result').size | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
require 'test_helper' | ||
|
||
class EppDomainInfoBaseTest < ApplicationIntegrationTest | ||
def test_returns_valid_response | ||
assert_equal 'john-001', contacts(:john).code | ||
domains(:shop).update_columns(statuses: [DomainStatus::OK], | ||
created_at: Time.zone.parse('2010-07-05'), | ||
updated_at: Time.zone.parse('2010-07-06'), | ||
valid_to: Time.zone.parse('2010-07-07')) | ||
|
||
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> | ||
<info> | ||
<domain:info xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>shop.test</domain:name> | ||
</domain:info> | ||
</info> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/info', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '1000', response_xml.at_css('result')[:code] | ||
assert_equal 1, response_xml.css('result').size | ||
assert_equal 'shop.test', response_xml.at_xpath('//domain:name', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
assert_equal 'ok', response_xml.at_xpath('//domain:status', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd')['s'] | ||
assert_equal 'john-001', response_xml.at_xpath('//domain:registrant', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
assert_equal '2010-07-05T00:00:00+03:00', response_xml.at_xpath('//domain:crDate', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
assert_equal '2010-07-06T00:00:00+03:00', response_xml.at_xpath('//domain:upDate', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
assert_equal '2010-07-07T00:00:00+03:00', response_xml.at_xpath('//domain:exDate', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
def test_reveals_transfer_code_when_domain_is_owned_by_current_user | ||
assert_equal '65078d5', domains(:shop).transfer_code | ||
|
||
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> | ||
<info> | ||
<domain:info xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>shop.test</domain:name> | ||
</domain:info> | ||
</info> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/info', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '65078d5', response_xml.at_xpath('//domain:authInfo/domain:pw', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
# Transfer code is the only info we conceal from other registrars, hence a bit oddly-looking | ||
# test name | ||
def test_reveals_transfer_code_when_domain_is_not_owned_by_current_user_and_transfer_code_is_provided | ||
assert_equal '65078d5', domains(:shop).transfer_code | ||
|
||
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> | ||
<info> | ||
<domain:info xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>shop.test</domain:name> | ||
<domain:authInfo> | ||
<domain:pw>65078d5</domain:pw> | ||
</domain:authInfo> | ||
</domain:info> | ||
</info> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/info', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_goodnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_equal '65078d5', response_xml.at_xpath('//domain:authInfo/domain:pw', 'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd').text | ||
end | ||
|
||
def test_conceals_transfer_code_when_domain_is_not_owned_by_current_user | ||
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> | ||
<info> | ||
<domain:info xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd"> | ||
<domain:name>shop.test</domain:name> | ||
<domain:authInfo> | ||
<domain:pw></domain:pw> | ||
</domain:authInfo> | ||
</domain:info> | ||
</info> | ||
</command> | ||
</epp> | ||
XML | ||
|
||
post '/epp/command/info', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_goodnames' | ||
|
||
response_xml = Nokogiri::XML(response.body) | ||
assert_nil response_xml.at_xpath('//domain:authInfo/domain:pw', | ||
'domain' => 'https://epp.tld.ee/schema/domain-eis-1.0.xsd') | ||
end | ||
end |