aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/engines/sql/unit/predicates/predicates_spec.rb
blob: fe0010a8cb24b7fd8c5629e42f961f053a5a993b (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
require 'spec_helper'

module Arel
  describe Predicate do
    before do
      @relation = Table.new(:users)
      @attribute1 = @relation[:id]
      @attribute2 = @relation[:name]
      @operand1 = Equality.new(@attribute1, 1)
      @operand2 = Equality.new(@attribute2, "name")
    end

    describe "when being combined with another predicate with AND logic" do
      describe "#to_sql" do
        it "manufactures sql with an AND operation" do
          sql = @operand1.and(@operand2).to_sql

          adapter_is :mysql do
            sql.should be_like(%Q{
              (`users`.`id` = 1 AND `users`.`name` = 'name')
            })
          end

          adapter_is :sqlite3 do
            sql.should be_like(%Q{
              ("users"."id" = 1 AND "users"."name" = 'name')
            })
          end

          adapter_is :postgresql do
            sql.should be_like(%Q{
              ("users"."id" = 1 AND "users"."name" = E'name')
            })
          end
        end
      end
    end

    describe "when being combined with another predicate with OR logic" do
      describe "#to_sql" do
        it "manufactures sql with an OR operation" do
          sql = @operand1.or(@operand2).to_sql

          adapter_is :mysql do
            sql.should be_like(%Q{
              (`users`.`id` = 1 OR `users`.`name` = 'name')
            })
          end

          adapter_is :sqlite3 do
            sql.should be_like(%Q{
              ("users"."id" = 1 OR "users"."name" = 'name')
            })
          end

          adapter_is :postgresql do
            sql.should be_like(%Q{
              ("users"."id" = 1 OR "users"."name" = E'name')
            })
          end
        end
      end
    end
  end
end