Merge branch 'master' into refactor-messages

# Conflicts:
#	app/controllers/epp/polls_controller.rb
#	test/fixtures/messages.yml
#	test/integration/epp/poll_test.rb
#	test/models/message_test.rb
This commit is contained in:
Artur Beljajev 2018-09-17 13:30:25 +03:00
commit 52feefeb79
3 changed files with 2 additions and 20 deletions

View file

@ -24,25 +24,6 @@ class EppPollTest < ApplicationIntegrationTest
assert_equal 'Your domain has been deleted', response_xml.at_css('msgQ msg').text
end
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>
<poll op="req"/>
</command>
</epp>
XML
post '/epp/command/poll', { frame: request_xml }, 'HTTP_COOKIE' => 'session=api_bestnames'
xml_doc = Nokogiri::XML(response.body)
assert_equal 1301.to_s, xml_doc.at_css('result')[:code]
assert_equal 1, xml_doc.css('result').size
assert_equal 2.to_s, xml_doc.at_css('msgQ')[:count]
assert_equal notification.id.to_s, xml_doc.at_css('msgQ')[:id]
assert_equal Time.zone.parse('2010-07-05').iso8601, xml_doc.at_css('msgQ qDate').text
assert_equal 'Your domain has been deleted', xml_doc.at_css('msgQ msg').text
end
def test_no_notifications
registrars(:bestnames).notifications.delete_all(:delete_all)