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

jsonb_matchers.rb « matchers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 823888708f319109f9c6d574f4e4c3e0e97e0b0b (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
# frozen_string_literal: true

RSpec::Matchers.define :validate_jsonb_schema do |jsonb_columns|
  match do |actual|
    next true if jsonb_columns.blank?

    expect(actual.validators).to include(a_kind_of(JsonSchemaValidator))
  end

  failure_message do
    <<~FAILURE_MESSAGE
      Expected #{actual.name} to validate the schema of #{jsonb_columns.join(', ')}.

      Use JsonSchemaValidator in your model when using a jsonb column.
      See doc/development/migration_style_guide.html#storing-json-in-database for more information.

      To fix this, please add `validates :#{jsonb_columns.first}, json_schema: { filename: "filename" }` in your model file, for example:

      class #{actual.name}
        validates :#{jsonb_columns.first}, json_schema: { filename: "filename" }
      end
    FAILURE_MESSAGE
  end
end