Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/internal_id_spec.rb')
-rw-r--r--spec/models/internal_id_spec.rb44
1 files changed, 38 insertions, 6 deletions
diff --git a/spec/models/internal_id_spec.rb b/spec/models/internal_id_spec.rb
index 6aba91d9471..a8a5ac98a5a 100644
--- a/spec/models/internal_id_spec.rb
+++ b/spec/models/internal_id_spec.rb
@@ -238,16 +238,48 @@ RSpec.describe InternalId do
end
end
- context 'when the feature flag is disabled' do
- stub_feature_flags(generate_iids_without_explicit_locking: false)
+ context 'when the explicit locking feature flag is disabled' do
+ before do
+ stub_feature_flags(generate_iids_without_explicit_locking: false)
+ end
- it_behaves_like 'a monotonically increasing id generator'
+ context 'when the insert all feature flag is enabled' do
+ before do
+ stub_feature_flags(use_insert_all_in_internal_id: true)
+ end
+
+ it_behaves_like 'a monotonically increasing id generator'
+ end
+
+ context 'when the insert all feature flag is disabled' do
+ before do
+ stub_feature_flags(use_insert_all_in_internal_id: false)
+ end
+
+ it_behaves_like 'a monotonically increasing id generator'
+ end
end
- context 'when the feature flag is enabled' do
- stub_feature_flags(generate_iids_without_explicit_locking: true)
+ context 'when the explicit locking feature flag is enabled' do
+ before do
+ stub_feature_flags(generate_iids_without_explicit_locking: true)
+ end
- it_behaves_like 'a monotonically increasing id generator'
+ context 'when the insert all feature flag is enabled' do
+ before do
+ stub_feature_flags(use_insert_all_in_internal_id: true)
+ end
+
+ it_behaves_like 'a monotonically increasing id generator'
+ end
+
+ context 'when the insert all feature flag is disabled' do
+ before do
+ stub_feature_flags(use_insert_all_in_internal_id: false)
+ end
+
+ it_behaves_like 'a monotonically increasing id generator'
+ end
end
describe '#increment_and_save!' do