OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/test/functional/issues/reports_controller_test.rb

74 lines
2.0 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require File.expand_path('../../../test_helper', __FILE__)
require 'issues/reports_controller'
# Re-raise errors caught by the controller.
class Issues::ReportsController; def rescue_action(e) raise e end; end
class Issues::ReportsControllerTest < ActionController::TestCase
fixtures :all
def setup
super
@controller = Issues::ReportsController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
User.current = nil
end
context "GET :issue_report without details" do
setup do
get :report, :project_id => 1
end
should respond_with :success
should render_template :report
[:issues_by_tracker, :issues_by_version, :issues_by_category, :issues_by_assigned_to,
:issues_by_author, :issues_by_subproject].each do |ivar|
should_assign_to ivar
should "set a value for #{ivar}" do
assert assigns[ivar.to_s].present?
end
end
end
context "GET :issue_report_details" do
%w(tracker version priority category assigned_to author subproject).each do |detail|
context "for #{detail}" do
setup do
get :report_details, :project_id => 1, :detail => detail
end
should respond_with :success
should render_template :report_details
should_assign_to :field
should_assign_to :rows
should_assign_to :data
should_assign_to :report_title
end
end
context "with an invalid detail" do
setup do
get :report_details, :project_id => 1, :detail => 'invalid'
end
should respond_with :redirect
should redirect_to('the issue report') { report_project_issues_path('ecookbook') }
end
end
end