mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-13 23:37:47 +00:00
86 lines
2.8 KiB
Ruby
86 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "system_helper"
|
|
|
|
RSpec.describe "Developer Settings" do
|
|
include AuthenticationHelper
|
|
include WebHelper
|
|
|
|
describe "as a logged in user" do
|
|
before do
|
|
login_as user
|
|
visit "/account"
|
|
end
|
|
|
|
context "when show_api_key_view is true" do
|
|
let(:spree_api_key) { SecureRandom.hex(24) }
|
|
let(:user) { create(:user, show_api_key_view: true, spree_api_key:) }
|
|
|
|
it "shows the developer settings tab" do
|
|
find("a", text: "DEVELOPER SETTINGS").click
|
|
expect(page).to have_content "Developer Settings"
|
|
end
|
|
|
|
context "when the user has an api key" do
|
|
before do
|
|
find("a", text: "DEVELOPER SETTINGS").click
|
|
end
|
|
|
|
it "shows the api key" do
|
|
expect(page).to have_input "api_key", with: spree_api_key
|
|
end
|
|
|
|
it "lets the user regenerate the api key" do
|
|
click_button "Regenerate Key"
|
|
expect(page).to have_content "Key generated"
|
|
expect(page).to have_input "api_key", with: user.reload.spree_api_key
|
|
end
|
|
|
|
describe "Webhook Endpoints" do
|
|
it "creates a new webhook endpoint and deletes it" do
|
|
within "#webhook_endpoints" do
|
|
within(:table_row, ["Order Cycle Opened"]) do
|
|
fill_in "order_cycle_opened_webhook_endpoint_url", with: "https://url"
|
|
|
|
click_button "Create"
|
|
expect(page.document).to have_content "Webhook endpoint successfully created"
|
|
expect(page).to have_content "https://url"
|
|
|
|
accept_confirm do
|
|
click_button "Delete"
|
|
end
|
|
end
|
|
expect(page.document).to have_content "Webhook endpoint successfully deleted"
|
|
expect(page).not_to have_content "https://url"
|
|
|
|
within(:table_row, ["Post webhook on Payment status change"]) do
|
|
fill_in "payment_status_changed_webhook_endpoint_url", with: "https://url/payment"
|
|
click_button "Create"
|
|
expect(page.document).to have_content "Webhook endpoint successfully created"
|
|
expect(page).to have_content "https://url/payment"
|
|
|
|
accept_confirm do
|
|
click_button "Delete"
|
|
end
|
|
end
|
|
|
|
expect(page.document).to have_content "Webhook endpoint successfully deleted"
|
|
expect(page).not_to have_content "https://url/payment"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when show_api_key_view is false" do
|
|
let(:user) { create(:user, show_api_key_view: false) }
|
|
|
|
it "does not show the developer settings tab" do
|
|
within("#account-tabs") do
|
|
expect(page).not_to have_selector("a", text: "DEVELOPER SETTINGS")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|