aboutsummaryrefslogtreecommitdiffstats
path: root/spec/relations/relation_spec.rb
blob: 7434bd563b1354ad7bee98bd481e8a57e2950a0c (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
require File.join(File.dirname(__FILE__), '..', 'spec_helper')

describe Relation do
  before do
    @relation1 = TableRelation.new(:foo)
    @relation2 = TableRelation.new(:bar)
  end
  
  describe Relation, '*' do
    it "manufactures a JoinOperation between those two relations" do
      (@relation1 * @relation2).should == JoinOperation.new(@relation1, @relation2)
    end
  end
  
  describe Relation, '[]' do
    it "manufactures a attribute" do
      @relation1[:id].should be_eql(Attribute.new(@relation1, :id))
    end
    
    it "raises an error if the named attribute is not part of the relation" do
      pending
    end
  end
  
  describe Relation, '#include?' do
    before do
      @attribute = Attribute.new(@relation1, :id)
    end
    
    it "manufactures an inclusion predicate" do
      @relation1.include?(@attribute).should == RelationInclusionPredicate.new(@attribute, @relation1)
    end
  end
  
  describe Relation, '#project' do
    before do
      @attribute1 = Attribute.new(@relation1, :id)
      @attribute2 = Attribute.new(@relation1, :name)
    end
    
    it "only allows projecting attributes in the relation" do
      pending
    end
    
    it "collapses identical projections" do
      pending
    end
    
    it "manufactures a projected relation" do
      @relation1.project(@attribute1, @attribute2).should == ProjectedRelation(@relation1, @attribute1, @attribute2)
    end
  end
  
  describe Relation, '#select' do
    before do
      @predicate = EqualityPredicate.new()
    end
    
    it "manufactures a selected relation" do
      @relation1.select(@attribute1, @attribute2).should == SelectedRelation(@relation1, @attribute1, @attribute2)
    end
  end 
end