list_test.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:10k
源码类别:

Ajax

开发平台:

Others

  1. require 'test/unit'
  2. require 'rubygems'
  3. gem 'activerecord', '>= 1.15.4.7794'
  4. require 'active_record'
  5. require "#{File.dirname(__FILE__)}/../init"
  6. ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :dbfile => ":memory:")
  7. def setup_db
  8.   ActiveRecord::Schema.define(:version => 1) do
  9.     create_table :mixins do |t|
  10.       t.column :pos, :integer
  11.       t.column :parent_id, :integer
  12.       t.column :created_at, :datetime      
  13.       t.column :updated_at, :datetime
  14.     end
  15.   end
  16. end
  17. def teardown_db
  18.   ActiveRecord::Base.connection.tables.each do |table|
  19.     ActiveRecord::Base.connection.drop_table(table)
  20.   end
  21. end
  22. class Mixin < ActiveRecord::Base
  23. end
  24. class ListMixin < Mixin
  25.   acts_as_list :column => "pos", :scope => :parent
  26.   def self.table_name() "mixins" end
  27. end
  28. class ListMixinSub1 < ListMixin
  29. end
  30. class ListMixinSub2 < ListMixin
  31. end
  32. class ListWithStringScopeMixin < ActiveRecord::Base
  33.   acts_as_list :column => "pos", :scope => 'parent_id = #{parent_id}'
  34.   def self.table_name() "mixins" end
  35. end
  36. class ListTest < Test::Unit::TestCase
  37.   def setup
  38.     setup_db
  39.     (1..4).each { |counter| ListMixin.create! :pos => counter, :parent_id => 5 }
  40.   end
  41.   def teardown
  42.     teardown_db
  43.   end
  44.   def test_reordering
  45.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  46.     ListMixin.find(2).move_lower
  47.     assert_equal [1, 3, 2, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  48.     ListMixin.find(2).move_higher
  49.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  50.     ListMixin.find(1).move_to_bottom
  51.     assert_equal [2, 3, 4, 1], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  52.     ListMixin.find(1).move_to_top
  53.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  54.     ListMixin.find(2).move_to_bottom
  55.     assert_equal [1, 3, 4, 2], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  56.     ListMixin.find(4).move_to_top
  57.     assert_equal [4, 1, 3, 2], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  58.   end
  59.   def test_move_to_bottom_with_next_to_last_item
  60.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  61.     ListMixin.find(3).move_to_bottom
  62.     assert_equal [1, 2, 4, 3], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  63.   end
  64.   def test_next_prev
  65.     assert_equal ListMixin.find(2), ListMixin.find(1).lower_item
  66.     assert_nil ListMixin.find(1).higher_item
  67.     assert_equal ListMixin.find(3), ListMixin.find(4).higher_item
  68.     assert_nil ListMixin.find(4).lower_item
  69.   end
  70.   def test_injection
  71.     item = ListMixin.new(:parent_id => 1)
  72.     assert_equal "parent_id = 1", item.scope_condition
  73.     assert_equal "pos", item.position_column
  74.   end
  75.   def test_insert
  76.     new = ListMixin.create(:parent_id => 20)
  77.     assert_equal 1, new.pos
  78.     assert new.first?
  79.     assert new.last?
  80.     new = ListMixin.create(:parent_id => 20)
  81.     assert_equal 2, new.pos
  82.     assert !new.first?
  83.     assert new.last?
  84.     new = ListMixin.create(:parent_id => 20)
  85.     assert_equal 3, new.pos
  86.     assert !new.first?
  87.     assert new.last?
  88.     new = ListMixin.create(:parent_id => 0)
  89.     assert_equal 1, new.pos
  90.     assert new.first?
  91.     assert new.last?
  92.   end
  93.   def test_insert_at
  94.     new = ListMixin.create(:parent_id => 20)
  95.     assert_equal 1, new.pos
  96.     new = ListMixin.create(:parent_id => 20)
  97.     assert_equal 2, new.pos
  98.     new = ListMixin.create(:parent_id => 20)
  99.     assert_equal 3, new.pos
  100.     new4 = ListMixin.create(:parent_id => 20)
  101.     assert_equal 4, new4.pos
  102.     new4.insert_at(3)
  103.     assert_equal 3, new4.pos
  104.     new.reload
  105.     assert_equal 4, new.pos
  106.     new.insert_at(2)
  107.     assert_equal 2, new.pos
  108.     new4.reload
  109.     assert_equal 4, new4.pos
  110.     new5 = ListMixin.create(:parent_id => 20)
  111.     assert_equal 5, new5.pos
  112.     new5.insert_at(1)
  113.     assert_equal 1, new5.pos
  114.     new4.reload
  115.     assert_equal 5, new4.pos
  116.   end
  117.   def test_delete_middle
  118.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  119.     ListMixin.find(2).destroy
  120.     assert_equal [1, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  121.     assert_equal 1, ListMixin.find(1).pos
  122.     assert_equal 2, ListMixin.find(3).pos
  123.     assert_equal 3, ListMixin.find(4).pos
  124.     ListMixin.find(1).destroy
  125.     assert_equal [3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  126.     assert_equal 1, ListMixin.find(3).pos
  127.     assert_equal 2, ListMixin.find(4).pos
  128.   end
  129.   def test_with_string_based_scope
  130.     new = ListWithStringScopeMixin.create(:parent_id => 500)
  131.     assert_equal 1, new.pos
  132.     assert new.first?
  133.     assert new.last?
  134.   end
  135.   def test_nil_scope
  136.     new1, new2, new3 = ListMixin.create, ListMixin.create, ListMixin.create
  137.     new2.move_higher
  138.     assert_equal [new2, new1, new3], ListMixin.find(:all, :conditions => 'parent_id IS NULL', :order => 'pos')
  139.   end
  140.   
  141.   
  142.   def test_remove_from_list_should_then_fail_in_list? 
  143.     assert_equal true, ListMixin.find(1).in_list?
  144.     ListMixin.find(1).remove_from_list
  145.     assert_equal false, ListMixin.find(1).in_list?
  146.   end 
  147.   
  148.   def test_remove_from_list_should_set_position_to_nil 
  149.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  150.   
  151.     ListMixin.find(2).remove_from_list 
  152.   
  153.     assert_equal [2, 1, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  154.   
  155.     assert_equal 1,   ListMixin.find(1).pos
  156.     assert_equal nil, ListMixin.find(2).pos
  157.     assert_equal 2,   ListMixin.find(3).pos
  158.     assert_equal 3,   ListMixin.find(4).pos
  159.   end 
  160.   
  161.   def test_remove_before_destroy_does_not_shift_lower_items_twice 
  162.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  163.   
  164.     ListMixin.find(2).remove_from_list 
  165.     ListMixin.find(2).destroy 
  166.   
  167.     assert_equal [1, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5', :order => 'pos').map(&:id)
  168.   
  169.     assert_equal 1, ListMixin.find(1).pos
  170.     assert_equal 2, ListMixin.find(3).pos
  171.     assert_equal 3, ListMixin.find(4).pos
  172.   end 
  173.   
  174. end
  175. class ListSubTest < Test::Unit::TestCase
  176.   def setup
  177.     setup_db
  178.     (1..4).each { |i| ((i % 2 == 1) ? ListMixinSub1 : ListMixinSub2).create! :pos => i, :parent_id => 5000 }
  179.   end
  180.   def teardown
  181.     teardown_db
  182.   end
  183.   def test_reordering
  184.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  185.     ListMixin.find(2).move_lower
  186.     assert_equal [1, 3, 2, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  187.     ListMixin.find(2).move_higher
  188.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  189.     ListMixin.find(1).move_to_bottom
  190.     assert_equal [2, 3, 4, 1], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  191.     ListMixin.find(1).move_to_top
  192.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  193.     ListMixin.find(2).move_to_bottom
  194.     assert_equal [1, 3, 4, 2], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  195.     ListMixin.find(4).move_to_top
  196.     assert_equal [4, 1, 3, 2], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  197.   end
  198.   def test_move_to_bottom_with_next_to_last_item
  199.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  200.     ListMixin.find(3).move_to_bottom
  201.     assert_equal [1, 2, 4, 3], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  202.   end
  203.   def test_next_prev
  204.     assert_equal ListMixin.find(2), ListMixin.find(1).lower_item
  205.     assert_nil ListMixin.find(1).higher_item
  206.     assert_equal ListMixin.find(3), ListMixin.find(4).higher_item
  207.     assert_nil ListMixin.find(4).lower_item
  208.   end
  209.   def test_injection
  210.     item = ListMixin.new("parent_id"=>1)
  211.     assert_equal "parent_id = 1", item.scope_condition
  212.     assert_equal "pos", item.position_column
  213.   end
  214.   def test_insert_at
  215.     new = ListMixin.create("parent_id" => 20)
  216.     assert_equal 1, new.pos
  217.     new = ListMixinSub1.create("parent_id" => 20)
  218.     assert_equal 2, new.pos
  219.     new = ListMixinSub2.create("parent_id" => 20)
  220.     assert_equal 3, new.pos
  221.     new4 = ListMixin.create("parent_id" => 20)
  222.     assert_equal 4, new4.pos
  223.     new4.insert_at(3)
  224.     assert_equal 3, new4.pos
  225.     new.reload
  226.     assert_equal 4, new.pos
  227.     new.insert_at(2)
  228.     assert_equal 2, new.pos
  229.     new4.reload
  230.     assert_equal 4, new4.pos
  231.     new5 = ListMixinSub1.create("parent_id" => 20)
  232.     assert_equal 5, new5.pos
  233.     new5.insert_at(1)
  234.     assert_equal 1, new5.pos
  235.     new4.reload
  236.     assert_equal 5, new4.pos
  237.   end
  238.   def test_delete_middle
  239.     assert_equal [1, 2, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  240.     ListMixin.find(2).destroy
  241.     assert_equal [1, 3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  242.     assert_equal 1, ListMixin.find(1).pos
  243.     assert_equal 2, ListMixin.find(3).pos
  244.     assert_equal 3, ListMixin.find(4).pos
  245.     ListMixin.find(1).destroy
  246.     assert_equal [3, 4], ListMixin.find(:all, :conditions => 'parent_id = 5000', :order => 'pos').map(&:id)
  247.     assert_equal 1, ListMixin.find(3).pos
  248.     assert_equal 2, ListMixin.find(4).pos
  249.   end
  250. end