1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/models/contact_network_spec.rb

92 lines
2.3 KiB
Ruby
Raw Normal View History

2019-08-04 17:05:57 -04:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe ContactNetwork do
subject { create :contact_network }
2019-08-17 20:03:18 -04:00
describe '#to_param' do
specify do
expect(subject.to_param).to eq subject.codename
end
end
describe '#contacts' do
it do
is_expected.to have_many(:contacts).dependent(:restrict_with_exception)
end
end
describe '#codename' do
2019-08-04 17:05:57 -04:00
def allow_value(*)
super.for :codename
2019-08-04 17:05:57 -04:00
end
it { is_expected.to validate_presence_of :codename }
2019-08-04 17:05:57 -04:00
it do
is_expected.to validate_length_of(:codename).is_at_least(3).is_at_most(36)
2019-08-04 17:05:57 -04:00
end
it { is_expected.to validate_uniqueness_of(:codename).case_insensitive }
2019-08-04 17:05:57 -04:00
it { is_expected.not_to allow_value nil }
it { is_expected.not_to allow_value '' }
it { is_expected.not_to allow_value ' ' * 3 }
it { is_expected.to allow_value Faker::Internet.username(3..36, %w[_]) }
it { is_expected.to allow_value 'foo_bar' }
it { is_expected.to allow_value 'foo123' }
it do
is_expected.not_to \
allow_value Faker::Internet.username(3..36, %w[_]).upcase
end
it { is_expected.not_to allow_value Faker::Internet.email }
it { is_expected.not_to allow_value '_foo' }
it { is_expected.not_to allow_value 'bar_' }
it { is_expected.not_to allow_value '1foo' }
end
describe '#name' do
2019-08-04 17:05:57 -04:00
def allow_value(*)
super.for :name
2019-08-04 17:05:57 -04:00
end
it { is_expected.to allow_value nil }
it { is_expected.to allow_value '' }
it { is_expected.to allow_value ' ' }
it { is_expected.to allow_value Faker::Name.name }
it { is_expected.to allow_value Faker::Name.first_name }
it { is_expected.to allow_value 'Foo Bar' }
it { is_expected.to validate_length_of(:name).is_at_most(255) }
2019-08-04 17:05:57 -04:00
context 'when it was set to blank value' do
subject { build :contact_network, name: ' ' * rand(100) }
before { subject.validate }
2019-08-04 17:05:57 -04:00
specify do
expect(subject.name).to eq nil
2019-08-04 17:05:57 -04:00
end
end
context 'when it was set to value with leading and trailing spaces' do
subject { create :contact_network, name: name }
2019-08-04 17:05:57 -04:00
let :name do
2019-08-04 17:05:57 -04:00
"#{' ' * rand(4)}#{Faker::Name.name}#{' ' * rand(4)}"
end
before { subject.validate }
2019-08-04 17:05:57 -04:00
specify do
expect(subject.name).to eq name.strip
2019-08-04 17:05:57 -04:00
end
end
end
end