2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2020-11-03 01:24:20 +01:00
|
|
|
|
|
|
|
describe ApplicationController do
|
2024-10-16 13:52:03 +02:00
|
|
|
fab!(:user) do
|
|
|
|
Fabricate(:user, username: "angus", email: "angus@email.com", trust_level: TrustLevel[3])
|
|
|
|
end
|
2021-09-07 14:06:13 +02:00
|
|
|
let(:wizard_template) { get_wizard_fixture("wizard") }
|
2024-09-24 13:39:25 +02:00
|
|
|
let(:permitted_json) { get_wizard_fixture("wizard/permitted") }
|
2020-11-03 01:24:20 +01:00
|
|
|
|
|
|
|
before do
|
2021-09-07 14:06:13 +02:00
|
|
|
CustomWizard::Template.save(wizard_template, skip_jobs: true)
|
2024-10-16 13:52:03 +02:00
|
|
|
@template = CustomWizard::Template.find("super_mega_fun_wizard")
|
2020-11-03 01:24:20 +01:00
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
context "with signed in user" do
|
2024-10-16 13:52:03 +02:00
|
|
|
before { sign_in(user) }
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
context "who is required to complete wizard" do
|
|
|
|
before do
|
2024-10-16 13:52:03 +02:00
|
|
|
user.custom_fields["redirect_to_wizard"] = "super_mega_fun_wizard"
|
2020-11-03 01:24:20 +01:00
|
|
|
user.save_custom_fields(true)
|
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2022-01-31 10:18:04 +01:00
|
|
|
it "does not redirect if wizard if no after setting is enabled" do
|
2020-11-03 01:24:20 +01:00
|
|
|
get "/"
|
2024-09-24 13:39:25 +02:00
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
2020-11-03 01:24:20 +01:00
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2022-01-31 10:18:04 +01:00
|
|
|
context "after signup enabled" do
|
|
|
|
before do
|
|
|
|
@template["after_signup"] = true
|
|
|
|
CustomWizard::Template.save(@template)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not redirect if wizard does not exist" do
|
|
|
|
CustomWizard::Template.remove(@template[:id])
|
|
|
|
get "/"
|
2024-09-24 13:39:25 +02:00
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
2022-01-31 10:18:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "redirects if user is required to complete a wizard" do
|
|
|
|
get "/"
|
|
|
|
expect(response).to redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not redirect if wizard is subsequently disabled" do
|
|
|
|
get "/"
|
|
|
|
expect(response).to redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
|
|
|
|
@template["after_signup"] = false
|
|
|
|
CustomWizard::Template.save(@template)
|
|
|
|
|
|
|
|
get "/"
|
2024-09-24 13:39:25 +02:00
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
2022-01-31 10:18:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "saves original destination of user" do
|
2024-10-16 13:52:03 +02:00
|
|
|
get "/", headers: { "REFERER" => "/t/2" }
|
2022-01-31 10:18:04 +01:00
|
|
|
expect(
|
2024-10-16 13:52:03 +02:00
|
|
|
CustomWizard::Wizard.create(@template["id"], user).submissions.first.redirect_to,
|
2022-01-31 10:18:04 +01:00
|
|
|
).to eq("/t/2")
|
|
|
|
end
|
2020-11-03 01:24:20 +01:00
|
|
|
end
|
2021-06-07 15:15:41 +02:00
|
|
|
|
2024-09-24 13:39:25 +02:00
|
|
|
include ActiveSupport::Testing::TimeHelpers
|
2022-01-31 10:18:04 +01:00
|
|
|
context "after time enabled" do
|
|
|
|
before do
|
|
|
|
@template["after_time"] = true
|
|
|
|
@template["after_time_scheduled"] = (Time.now + 3.hours).iso8601
|
|
|
|
CustomWizard::Template.save(@template)
|
|
|
|
end
|
|
|
|
|
2024-09-24 13:39:25 +02:00
|
|
|
context "when time hasn't passed" do
|
|
|
|
it "does not redirect" do
|
|
|
|
get "/"
|
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
2022-01-31 10:18:04 +01:00
|
|
|
end
|
|
|
|
|
2024-09-24 13:39:25 +02:00
|
|
|
context "when time has passed" do
|
2024-10-17 16:15:25 +02:00
|
|
|
def run_job!
|
2024-09-24 13:39:25 +02:00
|
|
|
travel_to Time.now + 4.hours
|
2024-10-17 16:15:25 +02:00
|
|
|
MessageBus.expects(:publish).at_least_once
|
|
|
|
Jobs::SetAfterTimeWizard.new.execute(
|
|
|
|
Jobs::SetAfterTimeWizard.jobs.first["args"].first.symbolize_keys,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "redirects if time has passed" do
|
|
|
|
run_job!
|
2024-09-24 13:39:25 +02:00
|
|
|
get "/"
|
|
|
|
expect(response).to redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when permitted is set" do
|
|
|
|
before do
|
|
|
|
enable_subscription("business")
|
|
|
|
@template["permitted"] = permitted_json["permitted"]
|
|
|
|
CustomWizard::Template.save(@template.as_json)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user is in permitted group" do
|
|
|
|
it "redirects user" do
|
2024-10-17 16:15:25 +02:00
|
|
|
run_job!
|
2024-09-24 13:39:25 +02:00
|
|
|
get "/"
|
|
|
|
expect(response).to redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user is not in permitted group" do
|
2024-10-16 13:52:03 +02:00
|
|
|
before { Group.find(13).remove(user) }
|
2024-09-24 13:39:25 +02:00
|
|
|
|
|
|
|
it "does not redirect user" do
|
2024-10-17 16:15:25 +02:00
|
|
|
run_job!
|
2024-09-24 13:39:25 +02:00
|
|
|
user.trust_level = TrustLevel[2]
|
|
|
|
user.save!
|
|
|
|
get "/"
|
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not redirect if user is an admin" do
|
2024-10-17 16:15:25 +02:00
|
|
|
run_job!
|
2024-09-24 13:39:25 +02:00
|
|
|
user.trust_level = TrustLevel[2]
|
|
|
|
user.admin = true
|
|
|
|
user.save!
|
|
|
|
get "/"
|
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2024-10-10 10:19:43 +02:00
|
|
|
|
|
|
|
context "when user has completed the wizard" do
|
|
|
|
before do
|
|
|
|
@template[:steps].each do |step|
|
|
|
|
CustomWizard::UserHistory.create!(
|
|
|
|
action: CustomWizard::UserHistory.actions[:step],
|
|
|
|
actor_id: user.id,
|
|
|
|
context: @template[:id],
|
2024-10-16 13:52:03 +02:00
|
|
|
subject: step[:id],
|
2024-10-10 10:19:43 +02:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not redirect" do
|
2024-10-17 16:15:25 +02:00
|
|
|
run_job!
|
2024-10-10 10:19:43 +02:00
|
|
|
get "/"
|
|
|
|
expect(response).not_to redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
end
|
2024-10-17 16:15:25 +02:00
|
|
|
|
|
|
|
context "when after_time_groups is set" do
|
|
|
|
fab!(:group)
|
|
|
|
|
|
|
|
before do
|
|
|
|
enable_subscription("business")
|
|
|
|
@template["after_time_groups"] = [group.name]
|
|
|
|
CustomWizard::Template.save(@template.as_json)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user is in group" do
|
|
|
|
before { group.add(user) }
|
|
|
|
|
|
|
|
it "redirects user" do
|
|
|
|
run_job!
|
|
|
|
get "/"
|
|
|
|
expect(response).to redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user is not in group" do
|
|
|
|
before { group.remove(user) }
|
|
|
|
|
|
|
|
it "does not redirect user" do
|
|
|
|
run_job!
|
|
|
|
get "/"
|
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not redirect if user is an admin" do
|
|
|
|
run_job!
|
|
|
|
user.admin = true
|
|
|
|
user.save!
|
|
|
|
get "/"
|
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-01-31 10:18:04 +01:00
|
|
|
end
|
2021-06-07 15:15:41 +02:00
|
|
|
end
|
2020-11-03 01:24:20 +01:00
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
context "who is not required to complete wizard" do
|
|
|
|
it "does nothing" do
|
|
|
|
get "/"
|
2024-09-24 13:39:25 +02:00
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
2020-11-03 01:24:20 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-03 01:24:20 +01:00
|
|
|
context "with guest" do
|
|
|
|
it "does nothing" do
|
|
|
|
get "/"
|
2024-09-24 13:39:25 +02:00
|
|
|
expect(response).to_not redirect_to("/w/super-mega-fun-wizard")
|
2020-11-03 01:24:20 +01:00
|
|
|
end
|
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
end
|