discourse/spec/components/concern/positionable_spec.rb

52 lines
1.4 KiB
Ruby
Raw Normal View History

require "rails_helper"
2013-10-18 03:09:30 -04:00
2014-04-19 00:00:40 -04:00
describe Positionable do
2013-10-18 03:09:30 -04:00
def positions
TestItem.order('position asc, id asc').pluck(:id)
end
context "move_to" do
before do
class TestItem < ActiveRecord::Base
2014-04-19 00:00:40 -04:00
include Positionable
2013-10-18 03:09:30 -04:00
end
DB.exec("create temporary table test_items(id int primary key, position int)")
2013-10-18 03:09:30 -04:00
end
after do
DB.exec("drop table test_items")
2013-10-18 03:09:30 -04:00
# import is making my life hard, we need to nuke this out of orbit
des = ActiveSupport::DescendantsTracker.class_variable_get :@@direct_descendants
des[ActiveRecord::Base].delete(TestItem)
end
it "can position stuff correctly" do
5.times do |i|
DB.exec("insert into test_items(id,position) values(#{i}, #{i})")
2013-10-18 03:09:30 -04:00
end
2017-07-27 21:20:09 -04:00
expect(positions).to eq([0, 1, 2, 3, 4])
2013-10-18 03:09:30 -04:00
TestItem.find(3).move_to(0)
2017-07-27 21:20:09 -04:00
expect(positions).to eq([3, 0, 1, 2, 4])
expect(TestItem.pluck(:position).sort).to eq([0, 1, 2, 3, 4])
2013-10-18 03:09:30 -04:00
2013-10-21 01:14:09 -04:00
TestItem.find(3).move_to(1)
2017-07-27 21:20:09 -04:00
expect(positions).to eq([0, 3, 1, 2, 4])
2013-10-18 03:09:30 -04:00
# this is somewhat odd, but when there is no such position, not much we can do
2013-10-18 03:09:30 -04:00
TestItem.find(1).move_to(5)
2017-07-27 21:20:09 -04:00
expect(positions).to eq([0, 3, 2, 4, 1])
2013-10-18 03:09:30 -04:00
2017-07-27 21:20:09 -04:00
expect(TestItem.pluck(:position).sort).to eq([0, 1, 2, 3, 4])
2013-10-18 03:09:30 -04:00
item = TestItem.new
item.id = 7
item.save
2015-01-09 11:34:37 -05:00
expect(item.position).to eq(5)
2013-10-18 03:09:30 -04:00
end
end
end