123 lines
4.8 KiB
Ruby
123 lines
4.8 KiB
Ruby
# encoding: utf-8
|
|
#
|
|
# This file is a part of Redmine CRM (redmine_contacts) plugin,
|
|
# customer relationship management plugin for Redmine
|
|
#
|
|
# Copyright (C) 2010-2018 RedmineUP
|
|
# http://www.redmineup.com/
|
|
#
|
|
# redmine_contacts 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_contacts 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_contacts. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
class DealStatusesControllerTest < 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
|
|
|
|
RedmineContacts::TestCase.create_fixtures(Redmine::Plugin.find(:redmine_contacts).directory + '/test/fixtures/', [:contacts,
|
|
:contacts_projects,
|
|
:contacts_issues,
|
|
:deals,
|
|
:deal_statuses,
|
|
:notes,
|
|
:tags,
|
|
:taggings,
|
|
:queries])
|
|
|
|
def setup
|
|
RedmineContacts::TestCase.prepare
|
|
@controller = DealStatusesController.new
|
|
User.current = nil
|
|
end
|
|
|
|
def test_index_by_anonymous_should_redirect_to_login_form
|
|
@request.session[:user_id] = nil
|
|
compatible_request :get, :index
|
|
assert_redirected_to '/login?back_url=http%3A%2F%2Ftest.host%2Fdeal_statuses'
|
|
end
|
|
|
|
def test_should_get_new
|
|
@request.session[:user_id] = 1
|
|
compatible_request :get, :new
|
|
assert_response :success
|
|
assert_select 'h2', %r{New}
|
|
end
|
|
|
|
def test_should_get_edit
|
|
@request.session[:user_id] = 1
|
|
compatible_request :get, :edit, :id => 1
|
|
assert_response :success
|
|
assert_select 'h2', %r{#{DealStatus.find(1).name}}
|
|
end
|
|
|
|
def test_should_post_update
|
|
@request.session[:user_id] = 1
|
|
status1 = DealStatus.find(1)
|
|
new_name = 'updated main'
|
|
compatible_request :put, :update, :id => 1, :deal_status => { :name => new_name, :color_name => '#000000' }
|
|
assert_redirected_to :controller => 'settings', :action => 'plugin', :id => 'redmine_contacts', :tab => 'deal_statuses'
|
|
status1.reload
|
|
assert_equal new_name, status1.name
|
|
end
|
|
|
|
def test_assing_to_project
|
|
@request.session[:user_id] = 1
|
|
compatible_request :put, :assing_to_project, :deal_statuses => ['1', '2'], :project_id => 'ecookbook'
|
|
assert_redirected_to :controller => 'projects', :action => 'settings', :tab => 'deals', :id => 'ecookbook'
|
|
end
|
|
|
|
def test_destroy
|
|
@request.session[:user_id] = 1
|
|
Deal.where('status_id = 1').delete_all
|
|
|
|
assert_difference 'DealStatus.count', -1 do
|
|
compatible_request :delete, :destroy, :id => '1'
|
|
end
|
|
assert_redirected_to :controller => 'settings', :action => 'plugin', :id => 'redmine_contacts', :tab => 'deal_statuses'
|
|
assert_nil DealStatus.find_by_id(1)
|
|
end
|
|
|
|
def test_destroy_should_block_if_status_in_use
|
|
@request.session[:user_id] = 1
|
|
assert_not_nil Deal.find_by_status_id(1)
|
|
|
|
assert_no_difference 'DealStatus.count' do
|
|
compatible_request :delete, :destroy, :id => '1'
|
|
end
|
|
assert_redirected_to :controller => 'settings', :action => 'plugin', :id => "redmine_contacts", :tab => "deal_statuses"
|
|
assert_not_nil DealStatus.find_by_id(1)
|
|
end
|
|
end
|