Skip to content

Commit

Permalink
Add unit tests for PDF and index page
Browse files Browse the repository at this point in the history
  • Loading branch information
norrismei committed Sep 24, 2024
1 parent a643e2a commit b385ba2
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 1 deletion.
11 changes: 10 additions & 1 deletion spec/factories/partners.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,20 @@
status { :awaiting_review }
end

transient do
pick_up_person { false }
end

after(:create) do |partner, evaluator|
next if evaluator.try(:without_profile)

# Create associated records
create(:partner_profile, partner_id: partner.id)
if evaluator.pick_up_person
create(:partner_profile, :with_pickup_person, partner_id: partner.id)
else
create(:partner_profile, partner_id: partner.id)
end

create(:partner_user, email: partner.email, name: partner.name, partner: partner)
end
end
Expand Down
6 changes: 6 additions & 0 deletions spec/factories/partners/profiles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,11 @@
website { "http://some-site.org" }
primary_contact_email { Faker::Internet.email }
primary_contact_name { Faker::Name.name }

trait :with_pickup_person do
pick_up_name { "Paul Bunyan" }
pick_up_email { "paul@kenton.com" }
pick_up_phone { "503-123-4567" }
end
end
end
4 changes: 4 additions & 0 deletions spec/factories/requests.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ def random_request_items
status { 'pending' }
end

trait :discarded do
status { 'discarded' }
end

trait :with_varied_quantities do
request_items {
# get 10 unique item ids
Expand Down
84 changes: 84 additions & 0 deletions spec/pdfs/picklists_pdf_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
describe PicklistsPdf do
let(:organization) { create(:organization) }
let(:item1) { create(:item, name: "Item 1", organization: organization) }
let(:item2) { create(:item, name: "Item 2", organization: organization) }

describe "#compute_and_render" do
it "renders multiple requests correctly" do
request1 = create(:request, :pending, organization: organization)
request2 = create(:request, :pending, organization: organization)
create(:item_request, request: request1, item: item1, name: "Item 1")
create(:item_request, request: request2, item: item2, name: "Item 2")

pdf = described_class.new(organization, [request1, request2])
pdf_test = PDF::Reader.new(StringIO.new(pdf.compute_and_render))

expect(pdf_test.page(1).text).to include(request1.partner.name)
expect(pdf_test.page(1).text).to include(request1.partner.profile.primary_contact_name)
expect(pdf_test.page(1).text).to include(request1.partner.profile.primary_contact_email)
expect(pdf_test.page(1).text).to include("Requested on:")
expect(pdf_test.page(1).text).to include("Items Received Year-to-Date:")
expect(pdf_test.page(1).text).to include("Comments")
expect(pdf_test.page(1).text).to include("Items Requested")
expect(pdf_test.page(1).text).to include("Item 1")

expect(pdf_test.page(2).text).to include(request2.partner.name)
expect(pdf_test.page(2).text).to include(request2.partner.profile.primary_contact_name)
expect(pdf_test.page(2).text).to include(request2.partner.profile.primary_contact_email)
expect(pdf_test.page(2).text).to include("Requested on:")
expect(pdf_test.page(2).text).to include("Items Received Year-to-Date:")
expect(pdf_test.page(2).text).to include("Comments")
expect(pdf_test.page(2).text).to include("Items Requested")
expect(pdf_test.page(2).text).to include("Item 2")
end

context "When partner pickup person is set" do
it "renders pickup person details" do
partner = create(:partner, pick_up_person: true)
request = create(:request, :pending, organization: organization, partner: partner)
pdf = described_class.new(organization, [request])
pdf_test = PDF::Reader.new(StringIO.new(pdf.compute_and_render))

expect(pdf_test.page(1).text).to include(request.partner.profile.pick_up_name)
expect(pdf_test.page(1).text).to include(request.partner.profile.pick_up_email)
expect(pdf_test.page(1).text).to include(request.partner.profile.pick_up_phone)
end
end
end

context "When packs are not enabled" do
specify "#data_no_units" do
request = create(:request, :pending, organization: organization)
create(:item_request, request: request, item: item1, name: "Item 1")
create(:item_request, request: request, item: item2, name: "Item 2")
pdf = described_class.new(organization, [request])
data = pdf.data_no_units(request.item_requests)

expect(data).to eq([
["Items Requested", "Quantity", "[X]", "Differences / Comments"],
["Item 1", "5", "[ ]", ""],
["Item 2", "5", "[ ]", ""]
])
end
end

context "When packs are enabled" do
before { Flipper.enable(:enable_packs) }

specify "#data_with_units" do
item_with_units = create(:item, name: "Item with units", organization: organization)
create(:item_unit, item: item_with_units, name: "Pack")
request = create(:request, :pending, organization: organization)
create(:item_request, request: request, item: item_with_units, name: "Item with units", request_unit: "Pack")
create(:item_request, request: request, item: item2, name: "Item 2")
pdf = described_class.new(organization, [request])
data = pdf.data_with_units(request.item_requests)

expect(data).to eq([
["Items Requested", "Quantity", "Unit (if applicable)", "[X]", "Differences / Comments"],
["Item with units", "5", "Packs", "[ ]", ""],
["Item 2", "5", nil, "[ ]", ""]
])
end
end
end
15 changes: 15 additions & 0 deletions spec/requests/requests_requests_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@

it { is_expected.to be_successful }
end

context "when there are pending or started requests" do
it "shows print unfulfilled picklists button with correct quantity" do
Request.delete_all

create(:request, :pending)
create(:request, :started)
create(:request, :fulfilled)
create(:request, :discarded)

get requests_path

expect(response.body).to include('Print Unfulfilled Picklists (2)')
end
end
end

describe 'GET #show' do
Expand Down

0 comments on commit b385ba2

Please sign in to comment.