You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/spec/system/template_spec.rb

144 lines
4.0 KiB

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Template' do
let!(:account) { create(:account) }
let!(:user) { create(:user, account:) }
let!(:template) { create(:template, account:, author: user) }
before do
sign_in(user)
end
context 'when no submissions' do
it 'shows the template page' do
visit template_path(template)
expect(page).to have_content(template.name)
expect(page).to have_content('There are no Submissions')
expect(page).to have_content('Send an invitation to fill and complete the form')
expect(page).to have_link('Sign it Yourself')
end
end
context 'when there are submissions' do
let!(:submission) { create(:submission, template:, created_by_user: user) }
let!(:submitters) { template.submitters.map { |s| create(:submitter, submission:, uuid: s['uuid']) } }
it 'shows the template page with submissions' do
visit template_path(template)
submitters.each do |submitter|
expect(page).to have_content(submitter.name)
end
expect(page).to have_content(template.name)
end
end
context 'when managing a template' do
before do
visit template_path(template)
end
it 'archives a template' do
expect do
accept_confirm('Are you sure?') do
click_button 'Archive'
end
end.to change { Template.active.count }.by(-1)
expect(page).to have_content('Template has been archived')
end
it 'edits a template' do
click_link 'Edit'
expect(page).to have_current_path(edit_template_path(template), ignore_query: true)
end
it 'clones a template' do
click_link 'Clone'
within '#modal' do
fill_in 'template[name]', with: 'New Template Name'
expect do
click_button 'Submit'
end.to change { Template.active.count }.by(1)
template = Template.last
expect(template.name).to eq('New Template Name')
expect(page).to have_current_path(edit_template_path(template), ignore_query: true)
end
end
it 'clone a template and move it to a new folder' do
click_link 'Clone'
within '#modal' do
fill_in 'template[name]', with: 'New Template Name'
click_link 'Change Folder'
fill_in 'folder_name', with: 'New Folder Name'
expect do
click_button 'Submit'
end.to change { Template.active.count }.by(1).and change { TemplateFolder.active.count }.by(1)
template = Template.last
expect(template.name).to eq('New Template Name')
expect(template.folder.name).to eq('New Folder Name')
expect(page).to have_current_path(edit_template_path(template), ignore_query: true)
end
end
it 'clones a template and moves it to an existing folder' do
template_folder = create(:template_folder, :with_templates, account:, author: user)
click_link 'Clone'
within '#modal' do
template_folder.reload
fill_in 'template[name]', with: 'New Template Name'
click_link 'Change Folder'
end
within '.autocomplete' do
find('div', text: template_folder.name).click
end
within '#modal' do
expect do
click_button 'Submit'
end.not_to(change { TemplateFolder.active.count })
end
template = Template.last
expect(template.name).to eq('New Template Name')
expect(template.folder.name).to eq(template_folder.name)
expect(page).to have_current_path(edit_template_path(template), ignore_query: true)
end
it 'moves a template' do
find('[data-tip="Move"]', visible: false).hover
find('[data-tip="Move"]').click
within '#modal' do
fill_in 'name', with: 'New Folder Name'
expect do
click_button 'Move'
end.to change { TemplateFolder.active.count }.by(1)
template_folder = TemplateFolder.last
expect(template_folder.name).to eq('New Folder Name')
expect(page).to have_current_path(template_path(template), ignore_query: true)
end
end
end
end