To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 24 / 247b283cdc31d8c730597eba0ebe99d82df6440a.svn-base @ 1298:4f746d8966dd
History | View | Annotate | Download (4.18 KB)
| 1 | 1295:622f24f53b42 | Chris | # Redmine - project management software |
|---|---|---|---|
| 2 | # Copyright (C) 2006-2013 Jean-Philippe Lang |
||
| 3 | # |
||
| 4 | # This program is free software; you can redistribute it and/or |
||
| 5 | # modify it under the terms of the GNU General Public License |
||
| 6 | # as published by the Free Software Foundation; either version 2 |
||
| 7 | # of the License, or (at your option) any later version. |
||
| 8 | # |
||
| 9 | # This program is distributed in the hope that it will be useful, |
||
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 12 | # GNU General Public License for more details. |
||
| 13 | # |
||
| 14 | # You should have received a copy of the GNU General Public License |
||
| 15 | # along with this program; if not, write to the Free Software |
||
| 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||
| 17 | |||
| 18 | require File.expand_path('../../test_helper', __FILE__)
|
||
| 19 | |||
| 20 | class GanttsControllerTest < ActionController::TestCase |
||
| 21 | fixtures :projects, :trackers, :issue_statuses, :issues, |
||
| 22 | :enumerations, :users, :issue_categories, |
||
| 23 | :projects_trackers, |
||
| 24 | :roles, |
||
| 25 | :member_roles, |
||
| 26 | :members, |
||
| 27 | :enabled_modules, |
||
| 28 | :versions |
||
| 29 | |||
| 30 | def test_gantt_should_work |
||
| 31 | i2 = Issue.find(2) |
||
| 32 | i2.update_attribute(:due_date, 1.month.from_now) |
||
| 33 | get :show, :project_id => 1 |
||
| 34 | assert_response :success |
||
| 35 | assert_template 'gantts/show' |
||
| 36 | assert_not_nil assigns(:gantt) |
||
| 37 | # Issue with start and due dates |
||
| 38 | i = Issue.find(1) |
||
| 39 | assert_not_nil i.due_date |
||
| 40 | assert_select "div a.issue", /##{i.id}/
|
||
| 41 | # Issue with on a targeted version should not be in the events but loaded in the html |
||
| 42 | i = Issue.find(2) |
||
| 43 | assert_select "div a.issue", /##{i.id}/
|
||
| 44 | end |
||
| 45 | |||
| 46 | def test_gantt_should_work_without_issue_due_dates |
||
| 47 | Issue.update_all("due_date = NULL")
|
||
| 48 | get :show, :project_id => 1 |
||
| 49 | assert_response :success |
||
| 50 | assert_template 'gantts/show' |
||
| 51 | assert_not_nil assigns(:gantt) |
||
| 52 | end |
||
| 53 | |||
| 54 | def test_gantt_should_work_without_issue_and_version_due_dates |
||
| 55 | Issue.update_all("due_date = NULL")
|
||
| 56 | Version.update_all("effective_date = NULL")
|
||
| 57 | get :show, :project_id => 1 |
||
| 58 | assert_response :success |
||
| 59 | assert_template 'gantts/show' |
||
| 60 | assert_not_nil assigns(:gantt) |
||
| 61 | end |
||
| 62 | |||
| 63 | def test_gantt_should_work_cross_project |
||
| 64 | get :show |
||
| 65 | assert_response :success |
||
| 66 | assert_template 'gantts/show' |
||
| 67 | assert_not_nil assigns(:gantt) |
||
| 68 | assert_not_nil assigns(:gantt).query |
||
| 69 | assert_nil assigns(:gantt).project |
||
| 70 | end |
||
| 71 | |||
| 72 | def test_gantt_should_not_disclose_private_projects |
||
| 73 | get :show |
||
| 74 | assert_response :success |
||
| 75 | assert_template 'gantts/show' |
||
| 76 | assert_tag 'a', :content => /eCookbook/ |
||
| 77 | # Root private project |
||
| 78 | assert_no_tag 'a', {:content => /OnlineStore/}
|
||
| 79 | # Private children of a public project |
||
| 80 | assert_no_tag 'a', :content => /Private child of eCookbook/ |
||
| 81 | end |
||
| 82 | |||
| 83 | def test_gantt_should_display_relations |
||
| 84 | IssueRelation.delete_all |
||
| 85 | issue1 = Issue.generate!(:start_date => 1.day.from_now, :due_date => 3.day.from_now) |
||
| 86 | issue2 = Issue.generate!(:start_date => 1.day.from_now, :due_date => 3.day.from_now) |
||
| 87 | IssueRelation.create!(:issue_from => issue1, :issue_to => issue2, :relation_type => 'precedes') |
||
| 88 | |||
| 89 | get :show |
||
| 90 | assert_response :success |
||
| 91 | |||
| 92 | relations = assigns(:gantt).relations |
||
| 93 | assert_kind_of Hash, relations |
||
| 94 | assert relations.present? |
||
| 95 | assert_select 'div.task_todo[id=?][data-rels*=?]', "task-todo-issue-#{issue1.id}", issue2.id.to_s
|
||
| 96 | assert_select 'div.task_todo[id=?]:not([data-rels])', "task-todo-issue-#{issue2.id}"
|
||
| 97 | end |
||
| 98 | |||
| 99 | def test_gantt_should_export_to_pdf |
||
| 100 | get :show, :project_id => 1, :format => 'pdf' |
||
| 101 | assert_response :success |
||
| 102 | assert_equal 'application/pdf', @response.content_type |
||
| 103 | assert @response.body.starts_with?('%PDF')
|
||
| 104 | assert_not_nil assigns(:gantt) |
||
| 105 | end |
||
| 106 | |||
| 107 | def test_gantt_should_export_to_pdf_cross_project |
||
| 108 | get :show, :format => 'pdf' |
||
| 109 | assert_response :success |
||
| 110 | assert_equal 'application/pdf', @response.content_type |
||
| 111 | assert @response.body.starts_with?('%PDF')
|
||
| 112 | assert_not_nil assigns(:gantt) |
||
| 113 | end |
||
| 114 | |||
| 115 | if Object.const_defined?(:Magick) |
||
| 116 | def test_gantt_should_export_to_png |
||
| 117 | get :show, :project_id => 1, :format => 'png' |
||
| 118 | assert_response :success |
||
| 119 | assert_equal 'image/png', @response.content_type |
||
| 120 | end |
||
| 121 | end |
||
| 122 | end |