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

partitionable_check.rb « models « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c09c1b34086b001fc31199ccd570f94f9fcad95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true

module PartitioningTesting
  module CascadeCheck
    extend ActiveSupport::Concern

    included do
      after_create :check_partition_cascade_value
    end

    def check_partition_cascade_value
      raise 'Partition value not found' unless partition_scope_value
      raise 'Default value detected' if partition_id == 100

      return if partition_id == partition_scope_value

      raise "partition_id was expected to equal #{partition_scope_value} but it was #{partition_id}."
    end
  end

  module DefaultPartitionValue
    extend ActiveSupport::Concern

    class_methods do
      def current_partition_value
        current = super

        if current == 100
          54321
        else
          current
        end
      end
    end
  end
end

Ci::Partitionable::Testing::PARTITIONABLE_MODELS.each do |klass|
  model = klass.safe_constantize

  if klass == 'Ci::Pipeline'
    model.prepend(PartitioningTesting::DefaultPartitionValue)
  else
    model.include(PartitioningTesting::CascadeCheck)
  end
end