mirror of
https://github.com/internetee/registry.git
synced 2025-06-12 23:54:44 +02:00
Test renewal prohibited statuses
This commit is contained in:
parent
c07b7bf7f2
commit
9976e3dd93
2 changed files with 45 additions and 0 deletions
|
@ -167,4 +167,36 @@ class EppDomainRenewBaseTest < EppTestCase
|
||||||
end
|
end
|
||||||
assert_epp_response :parameter_value_policy_error
|
assert_epp_response :parameter_value_policy_error
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_fails_if_domain_has_renewal_prohibited_statuses
|
||||||
|
travel_to Time.zone.parse('2010-07-05')
|
||||||
|
domain = domains(:shop)
|
||||||
|
domain.statuses << DomainStatus::SERVER_RENEW_PROHIBITED
|
||||||
|
domain.save
|
||||||
|
|
||||||
|
original_valid_to = domain.valid_to
|
||||||
|
default_renewal_period = 1.year
|
||||||
|
|
||||||
|
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>
|
||||||
|
<renew>
|
||||||
|
<domain:renew xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd">
|
||||||
|
<domain:name>#{domain.name}</domain:name>
|
||||||
|
<domain:curExpDate>#{domain.expire_time.to_date}</domain:curExpDate>
|
||||||
|
<domain:period unit="y">1</domain:period>
|
||||||
|
</domain:renew>
|
||||||
|
</renew>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
|
||||||
|
post epp_renew_path, params: { frame: request_xml },
|
||||||
|
headers: { 'HTTP_COOKIE' => 'session=api_bestnames' }
|
||||||
|
domain.reload
|
||||||
|
|
||||||
|
assert_epp_response :object_is_not_eligible_for_renewal
|
||||||
|
assert_equal original_valid_to, domain.valid_to
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -431,6 +431,19 @@ class DomainTest < ActiveSupport::TestCase
|
||||||
assert_equal created_at, domain.registered_at
|
assert_equal created_at, domain.registered_at
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_not_renewable_if_renew_prohibited
|
||||||
|
assert @domain.renewable?
|
||||||
|
|
||||||
|
@domain.statuses << DomainStatus::SERVER_RENEW_PROHIBITED
|
||||||
|
assert_not @domain.renewable?
|
||||||
|
|
||||||
|
@domain.statuses.delete(DomainStatus::SERVER_RENEW_PROHIBITED)
|
||||||
|
assert @domain.renewable?
|
||||||
|
|
||||||
|
@domain.statuses << DomainStatus::CLIENT_RENEW_PROHIBITED
|
||||||
|
assert_not @domain.renewable?
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def valid_domain
|
def valid_domain
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue