Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
35021eb176
I've tweaked the subscription client gem so we can just use the gem's models and tables in this plugin's rspec, which makes duplicating and stubbing them unnecessary. See further https://github.com/paviliondev/discourse_subscription_client
56 Zeilen
1,7 KiB
Ruby
56 Zeilen
1,7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe ExtraLocalesControllerCustomWizard, type: :request do
|
|
let(:new_user) { Fabricate(:user, trust_level: TrustLevel[0]) }
|
|
let(:staff_user) { Fabricate(:moderator) }
|
|
let(:template) { get_wizard_fixture("wizard") }
|
|
let(:permitted) { get_wizard_fixture("wizard/permitted") }
|
|
|
|
before do
|
|
CustomWizard::Template.save(template, skip_jobs: true)
|
|
end
|
|
|
|
before do
|
|
js_hash = ExtraLocalesController.bundle_js_hash("wizard")
|
|
@locale_url = "#{Discourse.base_path}/extra-locales/wizard?v=#{js_hash}"
|
|
end
|
|
|
|
it "generates the correct wizard locale url" do
|
|
expect(ExtraLocalesController.url("wizard")).to eq(@locale_url)
|
|
end
|
|
|
|
it "returns wizard locales when requested by user in wizard" do
|
|
sign_in(new_user)
|
|
|
|
get @locale_url, headers: { 'REFERER' => "/w/super-mega-fun-wizard" }
|
|
expect(response.status).to eq(200)
|
|
end
|
|
|
|
it "returns wizard locales when requested by user in a wizard step" do
|
|
sign_in(new_user)
|
|
|
|
get @locale_url, headers: { 'REFERER' => "/w/super-mega-fun-wizard/steps/step_1" }
|
|
expect(response.status).to eq(200)
|
|
end
|
|
|
|
it "return wizard locales if user cant access wizard" do
|
|
template[:permitted] = permitted["permitted"]
|
|
CustomWizard::Template.save(template.as_json)
|
|
|
|
sign_in(new_user)
|
|
get @locale_url, headers: { 'REFERER' => "/w/super-mega-fun-wizard" }
|
|
expect(response.status).to eq(200)
|
|
end
|
|
|
|
it "doesnt return wizard locales to non-staff when requested outside of wizard" do
|
|
sign_in(new_user)
|
|
get @locale_url
|
|
expect(response.status).to eq(403)
|
|
end
|
|
|
|
it "returns wizard locales to staff when requested outside of wizard" do
|
|
sign_in(staff_user)
|
|
get @locale_url
|
|
expect(response.status).to eq(200)
|
|
end
|
|
end
|