mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Merge pull request #12343 from filipefurtad0/spec_regression_s2_12340
Adds regression spec for S2 bug #12340
This commit is contained in:
@@ -445,7 +445,7 @@ describe '
|
||||
within "tr#order_#{order3.id}" do
|
||||
expect(page).to have_content "Note"
|
||||
find(".icon-warning-sign").hover
|
||||
expect(page).to have_content /#{order3.special_instructions}/i
|
||||
expect(page).to have_content(/#{order3.special_instructions}/i)
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -662,17 +662,77 @@ describe '
|
||||
end
|
||||
end
|
||||
|
||||
shared_examples "prints invoices accordering to column ordering" do
|
||||
it "bulk prints invoices in pdf format" do
|
||||
page.find("span.icon-reorder", text: "ACTIONS").click
|
||||
within ".ofn-drop-down .menu" do
|
||||
expect {
|
||||
page.find("span", text: "Print Invoices").click # Prints invoices in bulk
|
||||
}.to enqueue_job(BulkInvoiceJob).exactly(:once)
|
||||
end
|
||||
|
||||
expect(page).to have_content "Compiling Invoices"
|
||||
expect(page).to have_content "Please wait until the PDF is ready " \
|
||||
"before closing this modal."
|
||||
|
||||
perform_enqueued_jobs(only: BulkInvoiceJob)
|
||||
|
||||
expect(page).to have_content "Bulk Invoice created"
|
||||
|
||||
within ".modal-content" do
|
||||
expect(page).to have_link(class: "button", text: "VIEW FILE",
|
||||
href: /invoices/)
|
||||
|
||||
invoice_content = extract_pdf_content
|
||||
|
||||
expect(
|
||||
invoice_content
|
||||
).to match(/#{surnames[0]}.*#{surnames[1]}.*#{surnames[2]}.*#{surnames[3]}/m)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "ABN is not required" do
|
||||
before do
|
||||
allow(Spree::Config).to receive(:enterprise_number_required_on_invoices?)
|
||||
.and_return false
|
||||
end
|
||||
|
||||
it_behaves_like "can bulk print invoices from 2 orders"
|
||||
|
||||
context "with legal invoices feature", feature: :invoices do
|
||||
it_behaves_like "can bulk print invoices from 2 orders"
|
||||
end
|
||||
|
||||
context "ordering by customer name" do
|
||||
context "ascending" do
|
||||
let!(:surnames) {
|
||||
[order2.name.gsub(/.* /, ""), order3.name.gsub(/.* /, ""),
|
||||
order4.name.gsub(/.* /, ""), order5.name.gsub(/.* /, "")].sort
|
||||
}
|
||||
before do
|
||||
pending("#12340")
|
||||
page.find('a', text: "NAME").click # orders alphabetically (asc)
|
||||
sleep(0.5) # waits for column sorting
|
||||
page.find('#selectAll').click
|
||||
end
|
||||
it_behaves_like "prints invoices accordering to column ordering"
|
||||
end
|
||||
context "descending" do
|
||||
let!(:surnames) {
|
||||
[order2.name.gsub(/.* /, ""), order3.name.gsub(/.* /, ""),
|
||||
order4.name.gsub(/.* /, ""), order5.name.gsub(/.* /, "")].sort.reverse
|
||||
}
|
||||
before do
|
||||
pending("#12340")
|
||||
page.find('a', text: "NAME").click # orders alphabetically (asc)
|
||||
sleep(0.5) # waits for column sorting
|
||||
page.find('a', text: "NAME").click # orders alphabetically (desc)
|
||||
sleep(0.5) # waits for column sorting
|
||||
page.find('#selectAll').click
|
||||
end
|
||||
it_behaves_like "prints invoices accordering to column ordering"
|
||||
end
|
||||
end
|
||||
context "one of the two orders is not invoiceable" do
|
||||
before do
|
||||
order4.cancel!
|
||||
@@ -684,7 +744,6 @@ describe '
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "ABN is required" do
|
||||
before do
|
||||
allow(Spree::Config).to receive(:enterprise_number_required_on_invoices?)
|
||||
@@ -747,7 +806,6 @@ describe '
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
it "can bulk cancel 2 orders" do
|
||||
page.find("#listing_orders tbody tr:nth-child(1) input[name='bulk_ids[]']").click
|
||||
page.find("#listing_orders tbody tr:nth-child(2) input[name='bulk_ids[]']").click
|
||||
|
||||
Reference in New Issue
Block a user