103 lines
2.8 KiB
Ruby
103 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe RelationStatus do
|
|
subject { create :some_relation_status }
|
|
|
|
describe '#to_param' do
|
|
specify do
|
|
expect(subject.to_param).to eq subject.codename
|
|
end
|
|
end
|
|
|
|
describe '#org_unit_kind' do
|
|
it do
|
|
is_expected.to \
|
|
belong_to(:org_unit_kind)
|
|
.inverse_of(:relation_statuses)
|
|
.required
|
|
end
|
|
end
|
|
|
|
describe '#incoming_transitions' do
|
|
it do
|
|
is_expected.to \
|
|
have_many(:incoming_transitions)
|
|
.class_name('RelationTransition')
|
|
.inverse_of(:to_status)
|
|
.with_foreign_key(:to_status_id)
|
|
.dependent(:restrict_with_exception)
|
|
end
|
|
end
|
|
|
|
describe '#outgoing_transitions' do
|
|
it do
|
|
is_expected.to \
|
|
have_many(:outgoing_transitions)
|
|
.class_name('RelationTransition')
|
|
.inverse_of(:from_status)
|
|
.with_foreign_key(:from_status_id)
|
|
.dependent(:restrict_with_exception)
|
|
end
|
|
end
|
|
|
|
describe '#codename' do
|
|
def allow_value(*)
|
|
super.for :codename
|
|
end
|
|
|
|
it { is_expected.to validate_presence_of :codename }
|
|
it { is_expected.to validate_uniqueness_of(:codename).case_insensitive }
|
|
|
|
it do
|
|
is_expected.to validate_length_of(:codename).is_at_least(3).is_at_most(36)
|
|
end
|
|
|
|
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
|
|
def allow_value(*)
|
|
super.for :name
|
|
end
|
|
|
|
it { is_expected.to validate_presence_of :name }
|
|
it { is_expected.to validate_uniqueness_of :name }
|
|
|
|
it do
|
|
is_expected.to validate_length_of(:name).is_at_least(1).is_at_most(255)
|
|
end
|
|
|
|
it { is_expected.not_to allow_value nil }
|
|
it { is_expected.not_to allow_value '' }
|
|
it { is_expected.not_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.not_to allow_value ' Foo' }
|
|
it { is_expected.not_to allow_value 'Foo ' }
|
|
it { is_expected.not_to allow_value "\tFoo" }
|
|
it { is_expected.not_to allow_value "Foo\t" }
|
|
it { is_expected.not_to allow_value "\nFoo" }
|
|
it { is_expected.not_to allow_value "Foo\n" }
|
|
end
|
|
end
|