2019-05-08 19:49:43 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-30 00:49:07 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Sample, type: :model do
|
2019-05-08 19:49:43 +08:00
|
|
|
let(:sample) { build :sample }
|
|
|
|
|
|
|
|
it 'is valid' do
|
|
|
|
expect(sample).to be_valid
|
|
|
|
end
|
|
|
|
|
2017-08-30 00:49:07 +08:00
|
|
|
it 'should be of class Sample' do
|
|
|
|
expect(subject.class).to eq Sample
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Database table' do
|
|
|
|
it { should have_db_column :name }
|
|
|
|
it { should have_db_column :user_id }
|
|
|
|
it { should have_db_column :team_id }
|
|
|
|
it { should have_db_column :created_at }
|
|
|
|
it { should have_db_column :updated_at }
|
|
|
|
it { should have_db_column :sample_group_id }
|
|
|
|
it { should have_db_column :sample_type_id }
|
|
|
|
it { should have_db_column :last_modified_by_id }
|
|
|
|
it { should have_db_column :nr_of_modules_assigned_to }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Relations' do
|
|
|
|
it { should belong_to :user }
|
|
|
|
it { should belong_to :team }
|
|
|
|
it { should belong_to :sample_group }
|
|
|
|
it { should belong_to :sample_type }
|
|
|
|
it { should belong_to(:last_modified_by).class_name('User') }
|
|
|
|
it { should have_many :sample_my_modules }
|
|
|
|
it { should have_many :my_modules }
|
|
|
|
it { should have_many :sample_custom_fields }
|
|
|
|
it { should have_many :custom_fields }
|
|
|
|
end
|
|
|
|
|
2019-05-08 19:49:43 +08:00
|
|
|
describe 'Validations' do
|
|
|
|
describe '#name' do
|
|
|
|
it { is_expected.to validate_presence_of :name }
|
|
|
|
it { is_expected.to validate_length_of(:name).is_at_most(Constants::NAME_MAX_LENGTH) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#user' do
|
|
|
|
it { is_expected.to validate_presence_of :user }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#team' do
|
|
|
|
it { is_expected.to validate_presence_of :team }
|
2017-08-30 00:49:07 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|