summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/database/shared_model_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-20 11:10:13 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-20 11:10:13 +0000
commit0ea3fcec397b69815975647f5e2aa5fe944a8486 (patch)
tree7979381b89d26011bcf9bdc989a40fcc2f1ed4ff /spec/lib/gitlab/database/shared_model_spec.rb
parent72123183a20411a36d607d70b12d57c484394c8e (diff)
downloadgitlab-ce-0ea3fcec397b69815975647f5e2aa5fe944a8486.tar.gz
Add latest changes from gitlab-org/gitlab@15-1-stable-eev15.1.0-rc42
Diffstat (limited to 'spec/lib/gitlab/database/shared_model_spec.rb')
-rw-r--r--spec/lib/gitlab/database/shared_model_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/lib/gitlab/database/shared_model_spec.rb b/spec/lib/gitlab/database/shared_model_spec.rb
index 574111f4c01..c88edc17817 100644
--- a/spec/lib/gitlab/database/shared_model_spec.rb
+++ b/spec/lib/gitlab/database/shared_model_spec.rb
@@ -27,6 +27,19 @@ RSpec.describe Gitlab::Database::SharedModel do
end
end
+ it 'raises an error if the connection does not include `:gitlab_shared` schema' do
+ allow(Gitlab::Database)
+ .to receive(:gitlab_schemas_for_connection)
+ .with(new_connection)
+ .and_return([:gitlab_main])
+
+ expect_original_connection_around do
+ expect do
+ described_class.using_connection(new_connection) {}
+ end.to raise_error(/Cannot set `SharedModel` to connection/)
+ end
+ end
+
context 'when multiple connection overrides are nested', :aggregate_failures do
let(:second_connection) { double('connection') }