2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe ShaAttribute do
|
2022-01-26 12:08:38 +05:30
|
|
|
let(:model) { Class.new(ActiveRecord::Base) { include ShaAttribute } }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
columns = [
|
|
|
|
double(:column, name: 'name', type: :text),
|
|
|
|
double(:column, name: 'sha1', type: :binary)
|
|
|
|
]
|
|
|
|
|
|
|
|
allow(model).to receive(:columns).and_return(columns)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#sha_attribute' do
|
2020-10-24 23:57:45 +05:30
|
|
|
context 'when in development' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2019-12-04 20:38:33 +05:30
|
|
|
stub_rails_env('development')
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
context 'when the table exists' do
|
|
|
|
before do
|
|
|
|
allow(model).to receive(:table_exists?).and_return(true)
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'defines a SHA attribute for a binary column' do
|
|
|
|
expect(model).to receive(:attribute)
|
|
|
|
.with(:sha1, an_instance_of(Gitlab::Database::ShaAttribute))
|
|
|
|
|
|
|
|
model.sha_attribute(:sha1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises ArgumentError when the column type is not :binary' do
|
|
|
|
expect { model.sha_attribute(:name) }.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the table does not exist' do
|
2020-10-24 23:57:45 +05:30
|
|
|
it 'allows the attribute to be added' do
|
2018-10-15 14:42:47 +05:30
|
|
|
allow(model).to receive(:table_exists?).and_return(false)
|
|
|
|
|
|
|
|
expect(model).not_to receive(:columns)
|
|
|
|
expect(model).to receive(:attribute)
|
|
|
|
|
|
|
|
model.sha_attribute(:name)
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
context 'when the column does not exist' do
|
2020-10-24 23:57:45 +05:30
|
|
|
it 'allows the attribute to be added' do
|
2018-10-15 14:42:47 +05:30
|
|
|
allow(model).to receive(:table_exists?).and_return(true)
|
|
|
|
|
|
|
|
expect(model).to receive(:columns)
|
|
|
|
expect(model).to receive(:attribute)
|
|
|
|
|
|
|
|
model.sha_attribute(:no_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when other execeptions are raised' do
|
|
|
|
it 'logs and re-rasises the error' do
|
|
|
|
allow(model).to receive(:table_exists?).and_raise(ActiveRecord::NoDatabaseError.new('does not exist'))
|
|
|
|
|
|
|
|
expect(model).not_to receive(:columns)
|
|
|
|
expect(model).not_to receive(:attribute)
|
|
|
|
expect(Gitlab::AppLogger).to receive(:error)
|
|
|
|
|
|
|
|
expect { model.sha_attribute(:name) }.to raise_error(ActiveRecord::NoDatabaseError)
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
context 'when in production' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2019-12-04 20:38:33 +05:30
|
|
|
stub_rails_env('production')
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'defines a SHA attribute' do
|
|
|
|
expect(model).not_to receive(:table_exists?)
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(model).not_to receive(:columns)
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(model).to receive(:attribute).with(:sha1, an_instance_of(Gitlab::Database::ShaAttribute))
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
model.sha_attribute(:sha1)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|