2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2020-11-03 01:24:20 +01:00
|
|
|
|
|
|
|
describe InvitesControllerCustomWizard, type: :request do
|
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2021-03-11 07:30:15 +01:00
|
|
|
let(:invite) { Invite.generate(topic.user, email: "angus@mcleod.org", topic: topic) }
|
2021-04-16 10:07:32 +02:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
let(:template) do
|
|
|
|
JSON.parse(File.open(
|
|
|
|
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/wizard.json"
|
|
|
|
).read)
|
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
before do
|
|
|
|
@controller = InvitesController.new
|
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
it "redirects a user to wizard after invite if after signup is enabled" do
|
|
|
|
template['after_signup'] = true
|
|
|
|
CustomWizard::Template.save(template, skip_jobs: true)
|
|
|
|
put "/invites/show/#{invite.invite_key}.json"
|
2021-04-16 10:07:32 +02:00
|
|
|
expect(cookies[:destination_url]).to eq("/w/super-mega-fun-wizard")
|
2021-03-11 07:30:15 +01:00
|
|
|
end
|
|
|
|
end
|