mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
52 lines
1.8 KiB
Ruby
52 lines
1.8 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe Protocol, type: :model do
|
|
it 'should be of class Protocol' do
|
|
expect(subject.class).to eq Protocol
|
|
end
|
|
|
|
describe 'Database table' do
|
|
it { should have_db_column :name }
|
|
it { should have_db_column :authors }
|
|
it { should have_db_column :description }
|
|
it { should have_db_column :added_by_id }
|
|
it { should have_db_column :my_module_id }
|
|
it { should have_db_column :team_id }
|
|
it { should have_db_column :protocol_type }
|
|
it { should have_db_column :parent_id }
|
|
it { should have_db_column :parent_updated_at }
|
|
it { should have_db_column :archived_by_id }
|
|
it { should have_db_column :archived_on }
|
|
it { should have_db_column :restored_by_id }
|
|
it { should have_db_column :restored_on }
|
|
it { should have_db_column :created_at }
|
|
it { should have_db_column :updated_at }
|
|
it { should have_db_column :published_on }
|
|
it { should have_db_column :nr_of_linked_children }
|
|
end
|
|
|
|
describe 'Relations' do
|
|
it { should belong_to :my_module }
|
|
it { should belong_to :team }
|
|
it { should belong_to(:added_by).class_name('User') }
|
|
it { should belong_to(:parent).class_name('Protocol') }
|
|
it { should belong_to(:archived_by).class_name('User') }
|
|
it { should belong_to(:restored_by).class_name('User') }
|
|
it { should have_many(:linked_children).class_name('Protocol') }
|
|
it { should have_many :protocol_protocol_keywords }
|
|
it { should have_many :protocol_keywords }
|
|
it { should have_many :steps }
|
|
end
|
|
|
|
describe 'Should be a valid object' do
|
|
it { should validate_presence_of :team }
|
|
it { should validate_presence_of :protocol_type }
|
|
it do
|
|
should validate_length_of(:name).is_at_most(Constants::NAME_MAX_LENGTH)
|
|
end
|
|
it do
|
|
should validate_length_of(:description)
|
|
.is_at_most(Constants::TEXT_MAX_LENGTH)
|
|
end
|
|
end
|
|
end
|