2019-05-07 19:47:50 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-30 00:49:07 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe RepositoryRow, type: :model do
|
2019-05-07 19:47:50 +08:00
|
|
|
let(:repository_row) { build :repository_row }
|
|
|
|
|
|
|
|
it 'is valid' do
|
|
|
|
expect(repository_row).to be_valid
|
|
|
|
end
|
|
|
|
|
2017-08-30 00:49:07 +08:00
|
|
|
it 'should be of class RepositoryRow' do
|
|
|
|
expect(subject.class).to eq RepositoryRow
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Database table' do
|
|
|
|
it { should have_db_column :repository_id }
|
|
|
|
it { should have_db_column :created_by_id }
|
|
|
|
it { should have_db_column :last_modified_by_id }
|
|
|
|
it { should have_db_column :name }
|
|
|
|
it { should have_db_column :created_at }
|
|
|
|
it { should have_db_column :updated_at }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Relations' do
|
2020-04-09 23:11:58 +08:00
|
|
|
it { should belong_to(:repository) }
|
2017-08-30 00:49:07 +08:00
|
|
|
it { should belong_to(:created_by).class_name('User') }
|
|
|
|
it { should belong_to(:last_modified_by).class_name('User') }
|
|
|
|
it { should have_many :repository_cells }
|
|
|
|
it { should have_many :repository_columns }
|
|
|
|
it { should have_many :my_module_repository_rows }
|
|
|
|
it { should have_many :my_modules }
|
|
|
|
end
|
|
|
|
|
2019-05-07 19:47:50 +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 '#created_by' do
|
|
|
|
it { is_expected.to validate_presence_of :created_by }
|
2017-08-30 00:49:07 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|