Transfer authentication test

This commit is contained in:
Martin Lensment 2014-08-28 14:00:08 +03:00
parent 2a47e374f2
commit 31ea0f9182
4 changed files with 9 additions and 23 deletions

View file

@ -42,7 +42,7 @@ describe 'EPP Domain', epp: true do
end
it 'transfers a domain' do
response = epp_request('domains/transfer.xml')
response = epp_request(domain_transfer_xml, :xml)
d = Domain.first
dtl = d.domain_transfers.last
@ -59,7 +59,7 @@ describe 'EPP Domain', epp: true do
s = Setting.find_by(code: 'transfer_wait_time')
s.update(value: 1)
response = epp_request('domains/transfer.xml')
response = epp_request(domain_transfer_xml, :xml)
trn_data = response[:parsed].css('trnData')
d = Domain.first
@ -67,25 +67,27 @@ describe 'EPP Domain', epp: true do
expect(trn_data.css('trStatus').text).to eq('pending')
expect(trn_data.css('reID').text).to eq('10577829')
expect(trn_data.css('reDate').text).to eq(dtl.transfer_requested_at.to_time.utc.to_s)
req_time = dtl.transfer_requested_at.to_time.utc.to_s
expect(trn_data.css('acID').text).to eq('10577829')
expect(trn_data.css('exDate').text).to eq(d.valid_to.to_time.utc.to_s)
# should return same data if pending already
response = epp_request('domains/transfer.xml')
response = epp_request(domain_transfer_xml, :xml)
trn_data = response[:parsed].css('trnData')
d = Domain.first
expect(trn_data.css('name').text).to eq('example.ee')
expect(trn_data.css('trStatus').text).to eq('pending')
expect(trn_data.css('reID').text).to eq('10577829')
expect(trn_data.css('reDate').text).to eq(dtl.transfer_requested_at.to_time.utc.to_s)
expect(trn_data.css('reDate').text).to eq(req_time)
expect(trn_data.css('acID').text).to eq('10577829')
expect(trn_data.css('exDate').text).to eq(d.valid_to.to_time.utc.to_s)
end
it 'does not transfer with invalid pw' do
response = epp_request('domains/transfer.xml')
response = epp_request(domain_transfer_xml(pw: 'test'), :xml)
expect(response[:result_code]).to eq('2200')
expect(response[:msg]).to eq('Authentication error')
end
end