2014-08-30 17:38:47 +00:00
|
|
|
require 'rails_helper'
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 00:26:58 +00:00
|
|
|
describe BrowsePagePresenter do
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 00:10:54 +00:00
|
|
|
describe '.build' do
|
|
|
|
subject { described_class.build(category, order, page, per_page) }
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 00:10:54 +00:00
|
|
|
let(:category) { 'awesome' }
|
|
|
|
let(:order) { 'awesomeness' }
|
|
|
|
let(:page) { 2 }
|
|
|
|
let(:per_page) { 5 }
|
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with given category symbolized" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.category).to eq(:awesome)
|
|
|
|
end
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 00:10:54 +00:00
|
|
|
context "when category is nil" do
|
|
|
|
let(:category) { nil }
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with category defaulting to DEFAULT_CATEGORY" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.category).to eq(described_class::DEFAULT_CATEGORY)
|
|
|
|
end
|
2014-01-17 16:21:22 +00:00
|
|
|
end
|
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with given order symbolized" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.order).to eq(:awesomeness)
|
|
|
|
end
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 00:10:54 +00:00
|
|
|
context "when order is nil" do
|
|
|
|
let(:order) { nil }
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with order defaulting to DEFAULT_ORDER" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.order).to eq(described_class::DEFAULT_ORDER)
|
|
|
|
end
|
2014-01-17 16:21:22 +00:00
|
|
|
end
|
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with given page" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.page).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when page is nil" do
|
|
|
|
let(:page) { nil }
|
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with page = 1" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.page).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with given per_page" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.per_page).to eq(5)
|
|
|
|
end
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 00:10:54 +00:00
|
|
|
context "when per_page is nil" do
|
|
|
|
let(:per_page) { nil }
|
2014-01-17 16:21:22 +00:00
|
|
|
|
2014-02-01 09:29:49 +00:00
|
|
|
it "builds presenter with per_page = PER_PAGE" do
|
2014-02-01 00:10:54 +00:00
|
|
|
expect(subject.per_page).to eq(described_class::PER_PAGE)
|
|
|
|
end
|
2014-01-17 16:21:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-01 00:10:54 +00:00
|
|
|
let(:presenter) { described_class.new(category, order, page, per_page) }
|
|
|
|
let(:category) { :awesome }
|
|
|
|
let(:order) { :awesomeness }
|
|
|
|
let(:page) { 2 }
|
|
|
|
let(:per_page) { 5 }
|
|
|
|
|
2014-01-17 16:21:22 +00:00
|
|
|
describe '#category_name' do
|
|
|
|
subject { presenter.category_name }
|
|
|
|
|
|
|
|
it { should eq('Awesome asciicasts') }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#items' do
|
|
|
|
subject { presenter.items }
|
|
|
|
|
|
|
|
let(:collection) { [asciicast] }
|
|
|
|
let(:asciicast) { double('asciicast', decorate: double(title: 'quux')) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Asciicast).to receive(:for_category_ordered) { collection }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "gets the asciicasts for given category, order, page and per_page" do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(Asciicast).to have_received(:for_category_ordered).
|
|
|
|
with(:awesome, :awesomeness, 2, 5)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "wraps the asciicasts with paginating decorator" do
|
|
|
|
expect(subject).to respond_to(:current_page)
|
|
|
|
expect(subject).to respond_to(:total_pages)
|
|
|
|
expect(subject).to respond_to(:limit_value)
|
|
|
|
expect(subject.first.title).to eq('quux')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|