2011-12-10 11:15:18 -05:00
|
|
|
require 'spec_helper'
|
2011-04-26 08:56:36 -04:00
|
|
|
|
|
|
|
describe 'Kaminari::ActionViewExtension' do
|
|
|
|
describe '#paginate' do
|
|
|
|
before do
|
2011-07-23 05:24:49 -04:00
|
|
|
50.times {|i| User.create! :name => "user#{i}"}
|
2011-05-05 10:28:41 -04:00
|
|
|
@users = User.page(1)
|
2011-04-26 08:56:36 -04:00
|
|
|
end
|
2011-05-05 10:28:41 -04:00
|
|
|
subject { helper.paginate @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should be_a String }
|
2011-04-26 08:56:36 -04:00
|
|
|
|
2011-05-05 10:28:41 -04:00
|
|
|
context 'escaping the pagination for javascript' do
|
|
|
|
it 'should escape for javascript' do
|
2012-05-22 23:01:54 -04:00
|
|
|
lambda { helper.escape_javascript(helper.paginate @users, :params => {:controller => 'users', :action => 'index'}) }.should_not raise_error
|
2011-04-26 08:56:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-05-05 10:41:17 -04:00
|
|
|
|
2011-12-29 14:13:20 -05:00
|
|
|
describe '#link_to_previous_page' do
|
|
|
|
before do
|
|
|
|
50.times {|i| User.create! :name => "user#{i}"}
|
|
|
|
end
|
|
|
|
context 'having previous pages' do
|
|
|
|
before do
|
|
|
|
@users = User.page(50)
|
|
|
|
end
|
|
|
|
context 'the default behaviour' do
|
|
|
|
subject { helper.link_to_previous_page @users, 'Previous', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should be_a String }
|
|
|
|
it { should match /rel="previous"/ }
|
|
|
|
end
|
|
|
|
context 'overriding rel=' do
|
|
|
|
subject { helper.link_to_previous_page @users, 'Previous', :rel => 'external', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should match /rel="external"/ }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
context 'the first page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(1)
|
|
|
|
end
|
|
|
|
subject { helper.link_to_previous_page @users, 'Previous', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should_not be }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-05 10:41:17 -04:00
|
|
|
describe '#link_to_next_page' do
|
2011-07-23 05:24:49 -04:00
|
|
|
before do
|
|
|
|
50.times {|i| User.create! :name => "user#{i}"}
|
|
|
|
end
|
2011-05-05 10:41:17 -04:00
|
|
|
context 'having more page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(1)
|
|
|
|
end
|
2011-11-04 15:09:02 -04:00
|
|
|
context 'the default behaviour' do
|
|
|
|
subject { helper.link_to_next_page @users, 'More', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should be_a String }
|
2012-02-14 05:26:04 -05:00
|
|
|
it { should match(/rel="next"/) }
|
2011-11-04 15:09:02 -04:00
|
|
|
end
|
|
|
|
context 'overriding rel=' do
|
|
|
|
subject { helper.link_to_next_page @users, 'More', :rel => 'external', :params => {:controller => 'users', :action => 'index'} }
|
2012-02-14 05:26:04 -05:00
|
|
|
it { should match(/rel="external"/) }
|
2011-11-04 15:09:02 -04:00
|
|
|
end
|
2011-05-05 10:41:17 -04:00
|
|
|
end
|
|
|
|
context 'the last page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(2)
|
|
|
|
end
|
|
|
|
subject { helper.link_to_next_page @users, 'More', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should_not be }
|
|
|
|
end
|
|
|
|
end
|
2011-07-23 05:24:49 -04:00
|
|
|
|
|
|
|
describe '#page_entries_info' do
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'on a model without namespace' do
|
2011-07-23 05:24:49 -04:00
|
|
|
before do
|
|
|
|
@users = User.page(1).per(25)
|
|
|
|
end
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'having no entries' do
|
|
|
|
subject { helper.page_entries_info @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'No entries found' }
|
|
|
|
end
|
2011-07-23 05:24:49 -04:00
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'having 1 entry' do
|
|
|
|
before do
|
2012-05-17 18:00:31 -04:00
|
|
|
User.create! :name => 'user1'
|
2012-02-19 10:57:59 -05:00
|
|
|
@users = User.page(1).per(25)
|
|
|
|
end
|
|
|
|
subject { helper.page_entries_info @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>1</b> user' }
|
|
|
|
|
|
|
|
context 'setting the entry name option to "member"' do
|
|
|
|
subject { helper.page_entries_info @users, :entry_name => 'member', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>1</b> member' }
|
|
|
|
end
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'having more than 1 but less than a page of entries' do
|
|
|
|
before do
|
2012-05-17 18:00:31 -04:00
|
|
|
10.times {|i| User.create! :name => "user#{i}"}
|
2012-02-19 10:57:59 -05:00
|
|
|
@users = User.page(1).per(25)
|
|
|
|
end
|
|
|
|
subject { helper.page_entries_info @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>all 10</b> users' }
|
|
|
|
|
|
|
|
context 'setting the entry name option to "member"' do
|
|
|
|
subject { helper.page_entries_info @users, :entry_name => 'member', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>all 10</b> members' }
|
|
|
|
end
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'having more than one page of entries' do
|
|
|
|
before do
|
2012-05-17 18:00:31 -04:00
|
|
|
50.times {|i| User.create! :name => "user#{i}"}
|
2012-02-19 10:57:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'the first page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(1).per(25)
|
|
|
|
end
|
|
|
|
subject { helper.page_entries_info @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying users <b>1 - 25</b> of <b>50</b> in total' }
|
|
|
|
|
|
|
|
context 'setting the entry name option to "member"' do
|
|
|
|
subject { helper.page_entries_info @users, :entry_name => 'member', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying members <b>1 - 25</b> of <b>50</b> in total' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'the next page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(2).per(25)
|
|
|
|
end
|
|
|
|
subject { helper.page_entries_info @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying users <b>26 - 50</b> of <b>50</b> in total' }
|
|
|
|
|
|
|
|
context 'setting the entry name option to "member"' do
|
|
|
|
subject { helper.page_entries_info @users, :entry_name => 'member', :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should == 'Displaying members <b>26 - 50</b> of <b>50</b> in total' }
|
|
|
|
end
|
|
|
|
end
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
|
|
|
end
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'on a model with namespace' do
|
2011-07-23 05:24:49 -04:00
|
|
|
before do
|
2012-02-19 10:57:59 -05:00
|
|
|
@addresses = User::Address.page(1).per(25)
|
|
|
|
end
|
|
|
|
context 'having no entries' do
|
|
|
|
subject { helper.page_entries_info @addresses, :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'No entries found' }
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'having 1 entry' do
|
2011-07-23 05:24:49 -04:00
|
|
|
before do
|
2012-02-19 10:57:59 -05:00
|
|
|
User::Address.create!
|
|
|
|
@addresses = User::Address.page(1).per(25)
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
2012-02-19 10:57:59 -05:00
|
|
|
subject { helper.page_entries_info @addresses, :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>1</b> address' }
|
2011-07-23 05:24:49 -04:00
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'setting the entry name option to "place"' do
|
|
|
|
subject { helper.page_entries_info @addresses, :entry_name => 'place', :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>1</b> place' }
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'having more than 1 but less than a page of entries' do
|
2011-07-23 05:24:49 -04:00
|
|
|
before do
|
2012-02-19 10:57:59 -05:00
|
|
|
10.times {|i| User::Address.create!}
|
|
|
|
@addresses = User::Address.page(1).per(25)
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
2012-02-19 10:57:59 -05:00
|
|
|
subject { helper.page_entries_info @addresses, :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>all 10</b> addresses' }
|
2011-07-23 05:24:49 -04:00
|
|
|
|
2012-02-19 10:57:59 -05:00
|
|
|
context 'setting the entry name option to "place"' do
|
|
|
|
subject { helper.page_entries_info @addresses, :entry_name => 'place', :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying <b>all 10</b> places' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'having more than one page of entries' do
|
|
|
|
before do
|
|
|
|
50.times {|i| User::Address.create!}
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'the first page' do
|
|
|
|
before do
|
|
|
|
@addresses = User::Address.page(1).per(25)
|
|
|
|
end
|
|
|
|
subject { helper.page_entries_info @addresses, :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying addresses <b>1 - 25</b> of <b>50</b> in total' }
|
|
|
|
|
|
|
|
context 'setting the entry name option to "place"' do
|
|
|
|
subject { helper.page_entries_info @addresses, :entry_name => 'place', :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying places <b>1 - 25</b> of <b>50</b> in total' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'the next page' do
|
|
|
|
before do
|
|
|
|
@addresses = User::Address.page(2).per(25)
|
|
|
|
end
|
|
|
|
subject { helper.page_entries_info @addresses, :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying addresses <b>26 - 50</b> of <b>50</b> in total' }
|
|
|
|
|
|
|
|
context 'setting the entry name option to "place"' do
|
|
|
|
subject { helper.page_entries_info @addresses, :entry_name => 'place', :params => {:controller => 'addresses', :action => 'index'} }
|
|
|
|
it { should == 'Displaying places <b>26 - 50</b> of <b>50</b> in total' }
|
|
|
|
end
|
2011-07-23 05:24:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-02-01 20:49:10 -05:00
|
|
|
|
|
|
|
describe '#rel_next_prev_link_tags' do
|
|
|
|
before do
|
|
|
|
75.times {|i| User.create! :name => "user#{i}"}
|
|
|
|
end
|
|
|
|
context 'the first page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(1).per(25)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { helper.rel_next_prev_link_tags @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should be_a String }
|
|
|
|
it { should match /rel="next"/ }
|
|
|
|
it { should_not match /rel="prev"/ }
|
|
|
|
end
|
|
|
|
context 'the middle page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(2).per(25)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { helper.rel_next_prev_link_tags @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should be_a String }
|
|
|
|
it { should match /rel="next"/ }
|
|
|
|
it { should match /rel="prev"/ }
|
|
|
|
end
|
|
|
|
context 'the last page' do
|
|
|
|
before do
|
|
|
|
@users = User.page(3).per(25)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { helper.rel_next_prev_link_tags @users, :params => {:controller => 'users', :action => 'index'} }
|
|
|
|
it { should be_a String }
|
|
|
|
it { should_not match /rel="next"/ }
|
|
|
|
it { should match /rel="prev"/ }
|
|
|
|
end
|
|
|
|
end
|
2011-04-26 08:56:36 -04:00
|
|
|
end
|