redmine_contacts_helpdesk/test/functional/public_tickets_controller_test.rb
2024-11-13 17:20:58 +03:00

131 lines
5.9 KiB
Ruby

# encoding: utf-8
#
# This file is a part of Redmine Helpdesk (redmine_helpdesk) plugin,
# customer support management plugin for Redmine
#
# Copyright (C) 2011-2024 RedmineUP
# http://www.redmineup.com/
#
# redmine_helpdesk is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# redmine_helpdesk is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with redmine_helpdesk. If not, see <http://www.gnu.org/licenses/>.
require File.expand_path('../../test_helper', __FILE__)
class PublicTicketsControllerTest < ActionController::TestCase
fixtures :projects,
:users,
:roles,
:members,
:member_roles,
:issues,
:issue_statuses,
:versions,
:trackers,
:projects_trackers,
:issue_categories,
:enabled_modules,
:enumerations,
:attachments,
:workflows,
:custom_fields,
:custom_values,
:custom_fields_projects,
:custom_fields_trackers,
:time_entries,
:journals,
:journal_details,
:queries
RedmineHelpdesk::TestCase.create_fixtures(Redmine::Plugin.find(:redmine_contacts).directory + '/test/fixtures/', [:contacts,
:contacts_projects,
:deals,
:notes,
:tags,
:taggings,
:queries])
RedmineHelpdesk::TestCase.create_fixtures(Redmine::Plugin.find(:redmine_contacts_helpdesk).directory + '/test/fixtures/', [:journal_messages,
:helpdesk_tickets])
def setup
RedmineHelpdesk::TestCase.prepare
RedmineHelpdesk.settings = { 'helpdesk_public_tickets' => 1 }
@request.session[:user_id] = User.anonymous.id
end
def test_should_show_issue_with_correct_hash
compatible_request :get, :show, :id => 1, :hash => HelpdeskTicket.order('id ASC').first.token
assert_response 200
end
def test_should_show_404_with_incorrect_hash
compatible_request :get, :show, :id => 1, :hash => '123'
assert_response 404
end
def test_should_not_show_private_issues_and_notes
private_issue = Issue.find(5)
private_issue.is_private = true
private_issue.save
compatible_request :get, :show, :id => 1, :hash => HelpdeskTicket.order('id ASC').first.token
assert_select 'div#sidebar .issue', { :html => /#{private_issue.subject}/, :count => 0 }
end
def test_should_show_404_with_public_deny
RedmineHelpdesk.settings = { 'helpdesk_public_tickets' => 0 }
compatible_request :get, :show, :id => 1, :hash => HelpdeskTicket.order('id ASC').first.token
assert_response 404
end
def test_should_show_creator_email
compatible_request :get, :show, :id => 1, :hash => HelpdeskTicket.order('id ASC').first.token
assert_select 'h4', /#{HelpdeskTicket.first.from_address}/
end
def test_should_add_comment
RedmineHelpdesk.settings = { 'helpdesk_public_comments' => 1 }
ticket = HelpdeskTicket.find(1)
compatible_request :get, :add_comment, :id => 1, :hash => ticket.token, :journal => { :notes => 'Test public comment' }
assert_equal 'Test public comment', Journal.order('id DESC').first.notes
assert_equal Journal.order('id DESC').first.created_on.to_date.to_s, JournalMessage.order('id DESC').first.message_date.to_date.to_s
compatible_request :get, :show, :id => 1, :hash => ticket.token
assert_select '.journal .wiki p', /Test public comment/
end
def test_should_change_status
ticket = HelpdeskTicket.order('id ASC').first
reopen_status = IssueStatus.where('id != ?', ticket.issue.status).last
RedmineHelpdesk.settings = { 'helpdesk_public_comments' => 1 }
ContactsSetting['helpdesk_reopen_status', ticket.issue.project_id] = reopen_status.id
compatible_request :get, :add_comment, :id => 1, :hash => ticket.token, :journal => { :notes => 'Test public comment' }
assert_equal reopen_status, Journal.order('id DESC').last.issue.status
assert_equal reopen_status, ticket.issue.reload.status
end
def test_should_not_add_comment_if_deny
RedmineHelpdesk.settings = { 'helpdesk_public_comments' => 0 }
compatible_request :get, :add_comment, :id => 1, :hash => HelpdeskTicket.first.token, :journal => { :notes => 'Test comment' }
assert_response 404
end
def test_should_show_followups
@request.session[:user_id] = 1
journal = HelpdeskTicket.order('id ASC').first.issue.journals.create(:journalized_type => 'Issue', :notes => 'Followup1')
journal_message = journal.create_journal_message(:contact => Contact.order('id ASC').first, :is_incoming => true, :from_address => Contact.order('id ASC').first.email, :message_date => Time.now)
assert journal_message.valid?
compatible_request :get, :show, :id => 1, :hash => HelpdeskTicket.order('id ASC').first.token
assert_select '.journal h4', /#{Contact.order('id ASC').first.email}/
end
end