aboutsummaryrefslogtreecommitdiffstats
path: root/spec/active_relation/primitives/attribute_spec.rb
blob: f1aa404a34241fe4bdd044c0bb19a9ef0a04291d (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
require File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')

describe ActiveRelation::Primitives::Attribute do
  before do
    @relation1 = ActiveRelation::Relations::Table.new(:foo)
    @relation2 = ActiveRelation::Relations::Table.new(:bar)
  end
  
  describe '#as' do
    it "manufactures an aliased attributed when provided a parameter" do
      @relation1[:id].as(:alias).should == ActiveRelation::Primitives::Attribute.new(@relation1, :id, :alias)
    end
  end
  
  describe '#qualified_name' do
    it "manufactures an attribute name prefixed with the relation's name" do
      @relation1[:id].qualified_name.should == 'foo.id'
    end
    
    it "manufactures an attribute name prefixed with the relation's aliased name" do
      @relation1.as(:bar)[:id].qualified_name.should == 'bar.id'
    end
  end
  
  describe '#qualify' do
    it "manufactures an attribute aliased with that attributes qualified name" do
      @relation1[:id].qualify.should == @relation1[:id].qualify
    end
  end
  
  describe '==' do
    it "obtains if the relation and attribute name are identical" do
      ActiveRelation::Primitives::Attribute.new(@relation1, :name).should == ActiveRelation::Primitives::Attribute.new(@relation1, :name)
      ActiveRelation::Primitives::Attribute.new(@relation1, :name).should_not == ActiveRelation::Primitives::Attribute.new(@relation1, :another_name)
      ActiveRelation::Primitives::Attribute.new(@relation1, :name).should_not == ActiveRelation::Primitives::Attribute.new(@relation2, :name)
    end
  end
  
  describe 'predications' do
    before do
      @attribute1 = ActiveRelation::Primitives::Attribute.new(@relation1, :name)
      @attribute2 = ActiveRelation::Primitives::Attribute.new(@relation2, :name)
    end
    
    describe '#equals' do
      it "manufactures an equality predicate" do
        @attribute1.equals(@attribute2).should == ActiveRelation::Predicates::Equality.new(@attribute1, @attribute2)
      end
    end
    
    describe '#less_than' do
      it "manufactures a less-than predicate" do
        @attribute1.less_than(@attribute2).should == ActiveRelation::Predicates::LessThan.new(@attribute1, @attribute2)
      end
    end
    
    describe '#less_than_or_equal_to' do
      it "manufactures a less-than or equal-to predicate" do
        @attribute1.less_than_or_equal_to(@attribute2).should == ActiveRelation::Predicates::LessThanOrEqualTo.new(@attribute1, @attribute2)
      end
    end
    
    describe '#greater_than' do
      it "manufactures a greater-than predicate" do
        @attribute1.greater_than(@attribute2).should == ActiveRelation::Predicates::GreaterThan.new(@attribute1, @attribute2)
      end
    end
    
    describe '#greater_than_or_equal_to' do
      it "manufactures a greater-than or equal to predicate" do
        @attribute1.greater_than_or_equal_to(@attribute2).should == ActiveRelation::Predicates::GreaterThanOrEqualTo.new(@attribute1, @attribute2)
      end
    end
    
    describe '#matches' do
      it "manufactures a match predicate" do
        @attribute1.matches(/.*/).should == ActiveRelation::Predicates::Match.new(@attribute1, @attribute2)
      end
    end
  end
  
  describe 'aggregations' do
    before do
      @attribute1 = ActiveRelation::Primitives::Attribute.new(@relation1, :name)    
    end
    
    describe '#count' do
      it "manufactures a count aggregation" do
        @attribute1.count.should == ActiveRelation::Primitives::Aggregation.new(@attribute1, "COUNT")
      end
    end
    
    describe '#sum' do
      it "manufactures a sum aggregation" do
        @attribute1.sum.should == ActiveRelation::Primitives::Aggregation.new(@attribute1, "SUM")
      end
    end
    
    describe '#maximum' do
      it "manufactures a maximum aggregation" do
        @attribute1.maximum.should == ActiveRelation::Primitives::Aggregation.new(@attribute1, "MAX")
      end
    end
    
    describe '#minimum' do
      it "manufactures a minimum aggregation" do
        @attribute1.minimum.should == ActiveRelation::Primitives::Aggregation.new(@attribute1, "MIN")
      end
    end
    
    describe '#average' do
      it "manufactures an average aggregation" do
        @attribute1.average.should == ActiveRelation::Primitives::Aggregation.new(@attribute1, "AVG")
      end
    end
    
    
  end
end