1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe NamedEcdsaKeyValidator do
let(:validator) { described_class.new(attributes: [:key]) }
let!(:domain) { build(:pages_domain) }
subject { validator.validate_each(domain, :key, value) }
context 'with empty value' do
let(:value) { nil }
it 'does not add any error if value is empty' do
subject
expect(domain.errors).to be_empty
end
end
shared_examples 'does not add any error' do
it 'does not add any error' do
expect(value).to be_present
subject
expect(domain.errors).to be_empty
end
end
context 'when key is not EC' do
let(:value) { attributes_for(:pages_domain)[:key] }
include_examples 'does not add any error'
end
context 'with ECDSA certificate with named curve' do
let(:value) { attributes_for(:pages_domain, :ecdsa)[:key] }
include_examples 'does not add any error'
end
context 'with ECDSA certificate with explicit curve params' do
let(:value) { attributes_for(:pages_domain, :explicit_ecdsa)[:key] }
it 'adds errors' do
expect(value).to be_present
subject
expect(domain.errors[:key]).not_to be_empty
end
end
end
|