Skip to content

Commit

Permalink
Merge pull request #5822 from MadelineCollier/admin-update-refund-reason
Browse files Browse the repository at this point in the history
[Admin] Add request spec for Refund Reasons & other minor edits
  • Loading branch information
MadelineCollier authored Aug 14, 2024
2 parents 7d2d97a + cb33038 commit 8308687
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ en:
cancel: "Cancel"
submit: "Update Refund Reason"
hints:
active: "When checked, this adjustment reason will be available for selection when adding adjustments to orders."
active: "When checked, this refund reason will be available for selection when adding refunds to orders."
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
value: "1",
checked: f.object.active
) %>
<span class="font-semibold text-xs ml-2"><%= Spree::TaxCategory.human_attribute_name :active %></span>
<span class="font-semibold text-xs ml-2"><%= Spree::RefundReason.human_attribute_name :active %></span>
<%= render component("ui/toggletip").new(text: t(".hints.active")) %>
</label>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,6 @@ def destroy

private

def load_refund_reason
@refund_reason = Spree::RefundReason.find_by!(id: params[:id])
authorize! action_name, @refund_reason
end

def find_refund_reason
@refund_reason = Spree::RefundReason.find(params[:id])
end
Expand Down
2 changes: 1 addition & 1 deletion admin/config/locales/refund_reasons.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ en:
refund_reasons:
title: "Refund Reasons"
destroy:
success: "Refund Reasons were successfully removed."
success: "Refund reasons were successfully removed."
create:
success: "Refund reason was successfully created."
update:
Expand Down
2 changes: 1 addition & 1 deletion admin/spec/features/refund_reasons_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

select_row("Default-refund-reason")
click_on "Delete"
expect(page).to have_content("Refund Reasons were successfully removed.")
expect(page).to have_content("Refund reasons were successfully removed.")
expect(page).not_to have_content("Default-refund-reason")
expect(Spree::RefundReason.count).to eq(0)
expect(page).to be_axe_clean
Expand Down
134 changes: 134 additions & 0 deletions admin/spec/requests/solidus_admin/refund_reasons_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
# frozen_string_literal: true

require "spec_helper"

RSpec.describe "SolidusAdmin::RefundReasonsController", type: :request do
let(:admin_user) { create(:admin_user) }
let(:refund_reason) { create(:refund_reason) }

before do
allow_any_instance_of(SolidusAdmin::BaseController).to receive(:spree_current_user).and_return(admin_user)
end

describe "GET /index" do
it "renders the index template with a 200 OK status" do
get solidus_admin.refund_reasons_path
expect(response).to have_http_status(:ok)
end
end

describe "GET /new" do
it "renders the new template with a 200 OK status" do
get solidus_admin.new_refund_reason_path
expect(response).to have_http_status(:ok)
end
end

describe "POST /create" do
context "with valid parameters" do
let(:valid_attributes) { { name: "Refund for Defective Item", code: "DEFECT", active: true } }

it "creates a new RefundReason" do
expect {
post solidus_admin.refund_reasons_path, params: { refund_reason: valid_attributes }
}.to change(Spree::RefundReason, :count).by(1)
end

it "redirects to the index page with a 303 See Other status" do
post solidus_admin.refund_reasons_path, params: { refund_reason: valid_attributes }
expect(response).to redirect_to(solidus_admin.refund_reasons_path)
expect(response).to have_http_status(:see_other)
end

it "displays a success flash message" do
post solidus_admin.refund_reasons_path, params: { refund_reason: valid_attributes }
follow_redirect!
expect(response.body).to include("Refund reason was successfully created.")
end
end

context "with invalid parameters" do
let(:invalid_attributes) { { name: "", code: "", active: true } }

it "does not create a new RefundReason" do
expect {
post solidus_admin.refund_reasons_path, params: { refund_reason: invalid_attributes }
}.not_to change(Spree::RefundReason, :count)
end

it "renders the new template with unprocessable_entity status" do
post solidus_admin.refund_reasons_path, params: { refund_reason: invalid_attributes }
expect(response).to have_http_status(:unprocessable_entity)
end
end
end

describe "GET /edit" do
it "renders the edit template with a 200 OK status" do
get solidus_admin.edit_refund_reason_path(refund_reason)
expect(response).to have_http_status(:ok)
end
end

describe "PATCH /update" do
context "with valid parameters" do
let(:valid_attributes) { { name: "Updated Refund Reason", code: "UPD", active: false } }

it "updates the refund reason" do
patch solidus_admin.refund_reason_path(refund_reason), params: { refund_reason: valid_attributes }
refund_reason.reload
expect(refund_reason.name).to eq("Updated Refund Reason")
expect(refund_reason.code).to eq("UPD")
expect(refund_reason.active).to be(false)
end

it "redirects to the index page with a 303 See Other status" do
patch solidus_admin.refund_reason_path(refund_reason), params: { refund_reason: valid_attributes }
expect(response).to redirect_to(solidus_admin.refund_reasons_path)
expect(response).to have_http_status(:see_other)
end

it "displays a success flash message" do
patch solidus_admin.refund_reason_path(refund_reason), params: { refund_reason: valid_attributes }
follow_redirect!
expect(response.body).to include("Refund reason was successfully updated.")
end
end

context "with invalid parameters" do
let(:invalid_attributes) { { name: "", code: "UPD", active: false } }

it "does not update the refund reason" do
original_name = refund_reason.name
patch solidus_admin.refund_reason_path(refund_reason), params: { refund_reason: invalid_attributes }
refund_reason.reload
expect(refund_reason.name).to eq(original_name)
end

it "renders the edit template with unprocessable_entity status" do
patch solidus_admin.refund_reason_path(refund_reason), params: { refund_reason: invalid_attributes }
expect(response).to have_http_status(:unprocessable_entity)
end
end
end

describe "DELETE /destroy" do
it "deletes the refund reason and redirects to the index page with a 303 See Other status" do
# This ensures the refund_reason exists prior to deletion.
refund_reason

expect {
delete solidus_admin.refund_reason_path(refund_reason)
}.to change(Spree::RefundReason, :count).by(-1)

expect(response).to redirect_to(solidus_admin.refund_reasons_path)
expect(response).to have_http_status(:see_other)
end

it "displays a success flash message after deletion" do
delete solidus_admin.refund_reason_path(refund_reason)
follow_redirect!
expect(response.body).to include("Refund reasons were successfully removed.")
end
end
end

0 comments on commit 8308687

Please sign in to comment.