aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/mixin_test.rb
blob: cc56bc7cec19f8c4941cade27087a95cf2104fb1 (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
require 'abstract_unit'
require 'active_record/mixins/tree'
require 'active_record/mixins/list'
require 'active_record/mixins/touch'
require 'fixtures/mixin'

class TreeTest < Test::Unit::TestCase
  fixtures :mixins
  
  def test_has_child
    assert_equal true, @first.has_children?
    assert_equal false, @second.has_children?
    assert_equal false, @third.has_children?
  end

  def test_children
    assert_equal @first.children, [@second, @third]
    assert_equal @second.children, []
  end

  def test_parent
    assert_equal @second.parent, @first
    assert_equal @second.parent, @third.parent
    assert_nil @first.parent
  end
  
  def test_insert
    @extra = @first.children.create
    
    assert @extra
    
    assert_equal @extra.parent, @first
    assert_equal [@second, @third, @extra], @first.children
  end
  
  def test_delete
    assert_equal 3, Mixin.count
    @first.destroy
    assert_equal 0, Mixin.count
  end
end

class TouchTest < Test::Unit::TestCase
  fixtures :mixins
  
  def test_update
    assert_nil @first.updated_at
    @first.save
    assert_not_nil @first.updated_at
  end  

  def test_create
    @obj = Mixin.create({"parent" => @third})
    assert_not_nil @obj.updated_at
    assert_not_nil @obj.created_at
  end  
  
  
end


class ListTest < Test::Unit::TestCase
  fixtures :mixins
  
  def test_reordering
    
    assert_equal [ListMixin.find(2), ListMixin.find(3)], ListMixin.find_all("parent_id=1", "pos")
    
    ListMixin.find(2).move_lower
    
    assert_equal [ListMixin.find(3), ListMixin.find(2)], ListMixin.find_all("parent_id=1", "pos")
    
    ListMixin.find(2).move_higher

    assert_equal [ListMixin.find(2), ListMixin.find(3)], ListMixin.find_all("parent_id=1", "pos")
    
  end

  def test_insert
    new = ListMixin.create("parent_id"=>3)
    assert_equal 1, new.pos
    assert new.first?
    assert new.last?

    new = ListMixin.create("parent_id"=>3)
    assert_equal 2, new.pos
    assert !new.first?
    assert new.last?
    
    new = ListMixin.create("parent_id"=>3)
    assert_equal 3, new.pos    
    assert !new.first?
    assert new.last?
    
    new = ListMixin.create("parent_id"=>2)
    assert_equal 1, new.pos
    assert new.first?
    assert new.last?

  end  
end