mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
Validate protocol in dnskey
This commit is contained in:
parent
f776078214
commit
e7644ea69d
3 changed files with 22 additions and 8 deletions
|
@ -4,11 +4,13 @@ class Dnskey < ActiveRecord::Base
|
||||||
belongs_to :domain
|
belongs_to :domain
|
||||||
|
|
||||||
validate :validate_algorithm
|
validate :validate_algorithm
|
||||||
|
validate :validate_protocol
|
||||||
|
|
||||||
def epp_code_map
|
def epp_code_map
|
||||||
{
|
{
|
||||||
'2005' => [
|
'2005' => [
|
||||||
[:alg, :invalid, { value: { obj: 'alg', val: alg } }]
|
[:alg, :invalid, { value: { obj: 'alg', val: alg } }],
|
||||||
|
[:protocol, :invalid, { value: { obj: 'protocol', val: protocol } }],
|
||||||
],
|
],
|
||||||
'2306' => [
|
'2306' => [
|
||||||
[:ipv4, :blank]
|
[:ipv4, :blank]
|
||||||
|
@ -16,10 +18,13 @@ class Dnskey < ActiveRecord::Base
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def validate_algorithm
|
def validate_algorithm
|
||||||
return if %w(3 5 6 7 8 252 253 254 255).include?(alg.to_s)
|
return if %w(3 5 6 7 8 252 253 254 255).include?(alg.to_s)
|
||||||
errors.add(:alg, :invalid)
|
errors.add(:alg, :invalid)
|
||||||
# , format: {with: /3|5|6/, message: :alg_invalid}
|
end
|
||||||
|
|
||||||
|
def validate_protocol
|
||||||
|
return if %w(3).include?(protocol.to_s)
|
||||||
|
errors.add(:protocol, :invalid)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -187,6 +187,8 @@ en:
|
||||||
attributes:
|
attributes:
|
||||||
alg:
|
alg:
|
||||||
invalid: 'Algorithm is invalid'
|
invalid: 'Algorithm is invalid'
|
||||||
|
protocol:
|
||||||
|
invalid: 'Protocol is invalid'
|
||||||
|
|
||||||
attributes:
|
attributes:
|
||||||
epp_domain: &epp_domain_attributes
|
epp_domain: &epp_domain_attributes
|
||||||
|
|
|
@ -372,7 +372,7 @@ describe 'EPP Domain', epp: true do
|
||||||
{
|
{
|
||||||
dnskey: {
|
dnskey: {
|
||||||
flags: { value: '257' },
|
flags: { value: '257' },
|
||||||
protocol: { value: '3' },
|
protocol: { value: '4' },
|
||||||
alg: { value: '9' },
|
alg: { value: '9' },
|
||||||
pubKey: { value: 'AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8' }
|
pubKey: { value: 'AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8' }
|
||||||
}
|
}
|
||||||
|
@ -388,7 +388,7 @@ describe 'EPP Domain', epp: true do
|
||||||
{
|
{
|
||||||
dnskey: {
|
dnskey: {
|
||||||
flags: { value: '256' },
|
flags: { value: '256' },
|
||||||
protocol: { value: '3' },
|
protocol: { value: '5' },
|
||||||
alg: { value: '254' },
|
alg: { value: '254' },
|
||||||
pubKey: { value: '841936717ae427ace63c28d04918569a841936717ae427ace63c28d0' }
|
pubKey: { value: '841936717ae427ace63c28d04918569a841936717ae427ace63c28d0' }
|
||||||
}
|
}
|
||||||
|
@ -397,12 +397,19 @@ describe 'EPP Domain', epp: true do
|
||||||
})
|
})
|
||||||
|
|
||||||
response = epp_request(xml, :xml)
|
response = epp_request(xml, :xml)
|
||||||
|
po response
|
||||||
|
|
||||||
expect(response[:results][0][:msg]).to eq('Algorithm is invalid')
|
expect(response[:results][0][:msg]).to eq('Algorithm is invalid')
|
||||||
expect(response[:results][0][:value]).to eq('9')
|
expect(response[:results][0][:value]).to eq('9')
|
||||||
expect(response[:results][1][:msg]).to eq('Algorithm is invalid')
|
|
||||||
expect(response[:results][1][:value]).to eq('10')
|
expect(response[:results][1][:msg]).to eq('Protocol is invalid')
|
||||||
po response
|
expect(response[:results][1][:value]).to eq('4')
|
||||||
|
|
||||||
|
expect(response[:results][2][:msg]).to eq('Algorithm is invalid')
|
||||||
|
expect(response[:results][2][:value]).to eq('10')
|
||||||
|
|
||||||
|
expect(response[:results][3][:msg]).to eq('Protocol is invalid')
|
||||||
|
expect(response[:results][3][:value]).to eq('5')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue