summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/concerns/from_set_operator_shared_examples.rb
blob: 6b208c0024d7eab027a32aafb273f1e54a19049d (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
# frozen_string_literal: true

RSpec.shared_examples 'from set operator' do |sql_klass|
  from_set_operator_concern = described_class
  operator_keyword = sql_klass.operator_keyword
  operator_method = "from_#{sql_klass.operator_keyword.downcase}"

  describe "##{operator_method}" do
    let(:model) do
      Class.new(ActiveRecord::Base) do
        self.table_name = 'users'

        include from_set_operator_concern
      end
    end

    it "selects from the results of the #{operator_keyword}" do
      query = model.public_send(operator_method, [model.where(id: 1), model.where(id: 2)])

      expect(query.to_sql).to match(/FROM \(\(SELECT.+\)\n#{operator_keyword}\n\(SELECT.+\)\) users/m)
    end

    it 'supports the use of a custom alias for the sub query' do
      query = model.public_send(operator_method,
        [model.where(id: 1), model.where(id: 2)],
        alias_as: 'kittens'
      )

      expect(query.to_sql).to match(/FROM \(\(SELECT.+\)\n#{operator_keyword}\n\(SELECT.+\)\) kittens/m)
    end

    it 'supports keeping duplicate rows' do
      query = model.public_send(operator_method,
        [model.where(id: 1), model.where(id: 2)],
        remove_duplicates: false
      )

      expect(query.to_sql)
        .to match(/FROM \(\(SELECT.+\)\n#{operator_keyword} ALL\n\(SELECT.+\)\) users/m)
    end
  end
end