mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
8e48e45aa5
closes #306, and closes #366
247 lines
7.2 KiB
Ruby
247 lines
7.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
if defined? ActiveRecord
|
|
|
|
shared_examples_for 'the first page' do
|
|
it { should have(25).users }
|
|
its('first.name') { should == 'user001' }
|
|
end
|
|
|
|
shared_examples_for 'blank page' do
|
|
it { should have(0).users }
|
|
end
|
|
|
|
describe Kaminari::ActiveRecordExtension do
|
|
before do
|
|
1.upto(100) {|i| User.create! :name => "user#{'%03d' % i}", :age => (i / 10)}
|
|
1.upto(100) {|i| GemDefinedModel.create! :name => "user#{'%03d' % i}", :age => (i / 10)}
|
|
end
|
|
|
|
[User, Admin, GemDefinedModel].each do |model_class|
|
|
context "for #{model_class}" do
|
|
describe '#page' do
|
|
context 'page 1' do
|
|
subject { model_class.page 1 }
|
|
it_should_behave_like 'the first page'
|
|
end
|
|
|
|
context 'page 2' do
|
|
subject { model_class.page 2 }
|
|
it { should have(25).users }
|
|
its('first.name') { should == 'user026' }
|
|
end
|
|
|
|
context 'page without an argument' do
|
|
subject { model_class.page }
|
|
it_should_behave_like 'the first page'
|
|
end
|
|
|
|
context 'page < 1' do
|
|
subject { model_class.page 0 }
|
|
it_should_behave_like 'the first page'
|
|
end
|
|
|
|
context 'page > max page' do
|
|
subject { model_class.page 5 }
|
|
it_should_behave_like 'blank page'
|
|
end
|
|
|
|
describe 'ensure #order_values is preserved' do
|
|
subject { model_class.order('id').page 1 }
|
|
its('order_values.uniq') { should == ['id'] }
|
|
end
|
|
end
|
|
|
|
describe '#per' do
|
|
context 'page 1 per 5' do
|
|
subject { model_class.page(1).per(5) }
|
|
it { should have(5).users }
|
|
its('first.name') { should == 'user001' }
|
|
end
|
|
|
|
context "page 1 per nil" do
|
|
subject { model_class.page(1).per(nil) }
|
|
it { should have(model_class.count).users }
|
|
end
|
|
end
|
|
|
|
describe '#padding' do
|
|
context 'page 1 per 5 padding 1' do
|
|
subject { model_class.page(1).per(5).padding(1) }
|
|
it { should have(5).users }
|
|
its('first.name') { should == 'user002' }
|
|
end
|
|
|
|
context 'page 19 per 5 padding 5' do
|
|
subject { model_class.page(19).per(5).padding(5) }
|
|
its(:current_page) { should == 19 }
|
|
its(:total_pages) { should == 19 }
|
|
end
|
|
end
|
|
|
|
describe '#total_pages' do
|
|
context 'per 25 (default)' do
|
|
subject { model_class.page }
|
|
its(:total_pages) { should == 4 }
|
|
end
|
|
|
|
context 'per 7' do
|
|
subject { model_class.page(2).per(7) }
|
|
its(:total_pages) { should == 15 }
|
|
end
|
|
|
|
context 'per 65536' do
|
|
subject { model_class.page(50).per(65536) }
|
|
its(:total_pages) { should == 1 }
|
|
end
|
|
|
|
context 'per 0 (using default)' do
|
|
subject { model_class.page(50).per(0) }
|
|
its(:total_pages) { should == 4 }
|
|
end
|
|
|
|
context 'per -1 (using default)' do
|
|
subject { model_class.page(5).per(-1) }
|
|
its(:total_pages) { should == 4 }
|
|
end
|
|
|
|
context 'per "String value that can not be converted into Number" (using default)' do
|
|
subject { model_class.page(5).per('aho') }
|
|
its(:total_pages) { should == 4 }
|
|
end
|
|
|
|
context 'with max_pages < total pages count from database' do
|
|
before { model_class.max_pages_per 3 }
|
|
subject { model_class.page }
|
|
its(:total_pages) { should == 3 }
|
|
after { model_class.max_pages_per nil }
|
|
end
|
|
|
|
context 'with max_pages > total pages count from database' do
|
|
before { model_class.max_pages_per 11 }
|
|
subject { model_class.page }
|
|
its(:total_pages) { should == 4 }
|
|
after { model_class.max_pages_per nil }
|
|
end
|
|
|
|
context 'with max_pages is nil' do
|
|
before { model_class.max_pages_per nil }
|
|
subject { model_class.page }
|
|
its(:total_pages) { should == 4 }
|
|
end
|
|
|
|
context "with per(nil)" do
|
|
subject { model_class.page.per(nil) }
|
|
its(:total_pages) { should == 1 }
|
|
end
|
|
end
|
|
|
|
describe '#current_page' do
|
|
context 'page 1' do
|
|
subject { model_class.page }
|
|
its(:current_page) { should == 1 }
|
|
end
|
|
|
|
context 'page 2' do
|
|
subject { model_class.page(2).per 3 }
|
|
its(:current_page) { should == 2 }
|
|
end
|
|
|
|
context "with per(nil)" do
|
|
subject { model_class.page.per(nil) }
|
|
its(:current_page) { should == 1 }
|
|
end
|
|
end
|
|
|
|
describe '#next_page' do
|
|
context 'page 1' do
|
|
subject { model_class.page }
|
|
its(:next_page) { should == 2 }
|
|
end
|
|
|
|
context 'page 5' do
|
|
subject { model_class.page(5) }
|
|
its(:next_page) { should be_nil }
|
|
end
|
|
end
|
|
|
|
describe '#prev_page' do
|
|
context 'page 1' do
|
|
subject { model_class.page }
|
|
its(:prev_page) { should be_nil }
|
|
end
|
|
|
|
context 'page 5' do
|
|
subject { model_class.page(5) }
|
|
its(:prev_page) { should == 4 }
|
|
end
|
|
end
|
|
|
|
describe '#first_page?' do
|
|
context 'on first page' do
|
|
subject { model_class.page(1).per(10) }
|
|
its(:first_page?) { should == true }
|
|
end
|
|
|
|
context 'not on first page' do
|
|
subject { model_class.page(5).per(10) }
|
|
its(:first_page?) { should == false }
|
|
end
|
|
end
|
|
|
|
describe '#last_page?' do
|
|
context 'on last page' do
|
|
subject { model_class.page(10).per(10) }
|
|
its(:last_page?) { should == true }
|
|
end
|
|
|
|
context 'not on last page' do
|
|
subject { model_class.page(1).per(10) }
|
|
its(:last_page?) { should == false }
|
|
end
|
|
end
|
|
|
|
describe '#out_of_range?' do
|
|
context 'on last page' do
|
|
subject { model_class.page(10).per(10) }
|
|
its(:out_of_range?) { should == false }
|
|
end
|
|
|
|
context 'within range' do
|
|
subject { model_class.page(1).per(10) }
|
|
its(:out_of_range?) { should == false }
|
|
end
|
|
|
|
context 'out of range' do
|
|
subject { model_class.page(11).per(10) }
|
|
its(:out_of_range?) { should == true }
|
|
end
|
|
end
|
|
|
|
describe '#count' do
|
|
context 'page 1' do
|
|
subject { model_class.page }
|
|
its(:count) { should == 25 }
|
|
end
|
|
|
|
context 'page 2' do
|
|
subject { model_class.page 2 }
|
|
its(:count) { should == 25 }
|
|
end
|
|
end
|
|
|
|
context 'chained with .group' do
|
|
subject { model_class.group('age').page(2).per 5 }
|
|
# 0..10
|
|
its(:total_count) { should == 11 }
|
|
its(:total_pages) { should == 3 }
|
|
end
|
|
|
|
context 'activerecord descendants' do
|
|
subject { ActiveRecord::Base.descendants }
|
|
its(:length) { should_not == 0 }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|