aboutsummaryrefslogtreecommitdiffstats
path: root/spec/active_relation/unit/relations/projection_spec.rb
blob: 5936cbc45f7b8eceaebf79e8810bdd9b3f585b47 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')

module ActiveRelation
  describe Projection do
    before do
      @relation = Table.new(:users)
      @attribute = @relation[:id]
    end
    
    describe '#attributes' do
      before do
        @projection = Projection.new(@relation, @attribute)
      end
      
      it "manufactures attributes associated with the projection relation" do
        @projection.attributes.should == [@attribute].collect { |a| a.bind(@projection) }
      end
    end
    
    describe '==' do
      before do
        @another_relation = Table.new(:photos)
        @another_attribute = @relation[:name]
      end
      
      it "obtains if the relations and attributes are identical" do
        Projection.new(@relation, @attribute).should == Projection.new(@relation, @attribute)
        Projection.new(@relation, @attribute).should_not == Projection.new(@another_relation, @attribute)
        Projection.new(@relation, @attribute).should_not == Projection.new(@relation, @another_attribute)
      end
    end
  
    describe '#to_sql' do
      describe 'when given an attribute' do
        it "manufactures sql with a limited select clause" do
          Projection.new(@relation, @attribute).to_sql.should be_like("
            SELECT `users`.`id`
            FROM `users`
          ")
        end
      end
      
      describe 'when given a relation' do
        before do
          @scalar_relation = Projection.new(@relation, @relation[:name])
        end
        
        it "manufactures sql with scalar selects" do
          Projection.new(@relation, @scalar_relation).to_sql.should be_like("
            SELECT (SELECT `users`.`name` FROM `users`) FROM `users`
          ")
        end
      end
      
      describe 'when given a string' do
        it "passes the string through to the select clause" do
          Projection.new(@relation, 'asdf').to_sql.should be_like("
            SELECT asdf FROM `users`
          ")
        end
      end
    end
    
    describe Projection::Externalizable do
      describe '#aggregation?' do
        describe 'when the projections are attributes' do
          it 'returns false' do
            Projection.new(@relation, @attribute).should_not be_aggregation
          end
        end
        
        describe 'when the projections include an aggregation' do
          it "obtains" do
            Projection.new(@relation, @attribute.sum).should be_aggregation
          end
        end
      end

    end
  end
end