0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/spec/components/custom_wizard/builder_spec.rb

182 Zeilen
3,8 KiB
Ruby

2019-12-04 12:13:51 +01:00
# frozen_string_literal: true
require 'rails_helper'
describe CustomWizard::Builder do
fab!(:user) { Fabricate(:user) }
2019-12-04 12:13:51 +01:00
before do
@template = File.open(
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/wizard.json"
).read
2019-12-04 12:13:51 +01:00
end
it "returns no steps when disabled" do
CustomWizard::Wizard.add_wizard(@template)
SiteSetting.custom_wizard_enabled = false
wizard = CustomWizard::Builder.new(user, 'welcome').build
expect(wizard.steps.length).to eq(0)
expect(wizard.name).to eq('Welcome')
2019-12-04 12:13:51 +01:00
end
context 'enabled' do
before do
SiteSetting.custom_wizard_enabled = true
2019-12-04 12:13:51 +01:00
end
it "returns steps when enabled" do
CustomWizard::Wizard.add_wizard(@template)
wizard = CustomWizard::Builder.new(user, 'welcome').build
expect(wizard.steps.length).to eq(2)
2019-12-04 12:13:51 +01:00
end
it 'returns no steps if the multiple submissions are disabled and user has completed' do
@template['multiple_submissions'] = false
CustomWizard::Wizard.add_wizard(@template)
wizard = CustomWizard::Builder.new(user, 'welcome').build
expect(wizard.steps.length).to eq(0)
2019-12-04 12:13:51 +01:00
end
it 'returns nothing if the user is not permitted to see it' do
2019-12-04 12:13:51 +01:00
end
it 'returns a wizard with prefilled data if user has partially completed' do
2019-12-04 12:13:51 +01:00
end
it 'returns a wizard with no prefilled data if options include reset' do
2019-12-04 12:13:51 +01:00
end
context 'building steps' do
it 'returns step data correctly' do
2019-12-04 12:13:51 +01:00
end
it 'saves permitted params' do
2019-12-04 12:13:51 +01:00
end
it 'ensures required data is present' do
2019-12-04 12:13:51 +01:00
end
end
context 'building fields' do
it 'returns field data correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns checkbox fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns upload fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns category fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns tag fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns custom dropdown fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns translated dropdown fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'returns preset dropdown fields correctly' do
2019-12-04 12:13:51 +01:00
end
it 'applies preset dropdown filters correctly' do
2019-12-04 12:13:51 +01:00
end
it 'prefils profile data correctly' do
2019-12-04 12:13:51 +01:00
end
end
context 'on update' do
context 'validation' do
it 'applies min length correctly' do
end
it 'standardises boolean entries' do
end
it 'requires required fields' do
## this may require additional work?
end
context 'submisisons' do
it 'saves submissions' do
end
it "doesn't save submissions if disabled" do
end
end
end
2019-12-04 12:13:51 +01:00
context 'custom_step_handlers' do
it 'runs custom step handlers' do
end
end
context 'actions' do
it 'runs all actions attached to a step' do
end
it 'interpolates wizard and user data correctly' do
end
it 'creates a topic' do
end
it 'sends a message' do
end
it 'doesnt sent a message if the required data is not present' do
end
it 'updates a profile' do
2019-12-04 12:13:51 +01:00
end
it 'calls an api' do
end
it 'opens a composer' do
end
it 'adds a user to a group' do
end
it 're-routes a user' do
end
2019-12-04 12:13:51 +01:00
end
end
end
end