mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
Merge branch 'master' of github.com:internetee/registry
This commit is contained in:
commit
ab7ec778dc
4 changed files with 9 additions and 3 deletions
|
@ -168,8 +168,7 @@ module Epp::ContactsHelper
|
|||
end
|
||||
|
||||
def ident_type
|
||||
result = params[:frame].slice(/(?<=\<ns2:ident type=)(.*)(?=<)/)
|
||||
|
||||
result = parsed_frame.css('ident').first.try(:attributes).try(:[], 'flag').try(:value)
|
||||
return nil unless result
|
||||
|
||||
Contact::IDENT_TYPES.any? { |type| return type if result.include?(type) }
|
||||
|
|
|
@ -164,6 +164,7 @@ class Contact < ActiveRecord::Base
|
|||
contact_hash = {
|
||||
phone: ph[:voice],
|
||||
ident: ph[:ident],
|
||||
ident_type: ph[:ident_type],
|
||||
email: ph[:email],
|
||||
fax: ph[:fax],
|
||||
name: ph[:postalInfo].try(:[], :name),
|
||||
|
|
|
@ -57,6 +57,12 @@ describe 'EPP Contact', epp: true do
|
|||
expect(response[:results].count).to eq 6
|
||||
end
|
||||
|
||||
it 'successfully saves ident type' do
|
||||
xml = {ident: { value: '37605030299' , attrs: { flag: 'birthday' } }}
|
||||
response = epp_request(create_contact_xml(xml), :xml)
|
||||
expect(Contact.last.ident_type).to eq('birthday')
|
||||
end
|
||||
|
||||
it 'successfully creates a contact' do
|
||||
response = epp_request(create_contact_xml, :xml)
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ module EppContactXmlHelper
|
|||
},
|
||||
voice: { value: '+372.1234567' },
|
||||
email: { value: 'test@example.example' },
|
||||
ident: { value: '37605030299' }
|
||||
ident: { value: '37605030299' , attrs: { flag: 'op' } }
|
||||
}
|
||||
|
||||
xml_params = defaults.deep_merge(xml_params)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue