Mercurial > hg > soundsoftware-site
diff test/unit/lib/redmine/helpers/gantt_test.rb @ 1115:433d4f72a19b redmine-2.2
Update to Redmine SVN revision 11137 on 2.2-stable branch
author | Chris Cannam |
---|---|
date | Mon, 07 Jan 2013 12:01:42 +0000 |
parents | cbb26bc654de |
children | 622f24f53b42 261b3d9a4903 |
line wrap: on
line diff
--- a/test/unit/lib/redmine/helpers/gantt_test.rb Wed Jun 27 14:54:18 2012 +0100 +++ b/test/unit/lib/redmine/helpers/gantt_test.rb Mon Jan 07 12:01:42 2013 +0000 @@ -1,5 +1,5 @@ # Redmine - project management software -# Copyright (C) 2006-2011 Jean-Philippe Lang +# Copyright (C) 2006-2012 Jean-Philippe Lang # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -17,39 +17,31 @@ require File.expand_path('../../../../../test_helper', __FILE__) -class Redmine::Helpers::GanttTest < ActiveSupport::TestCase - # Utility methods and classes so assert_select can be used. - class GanttViewTest < ActionView::Base - include ActionView::Helpers::UrlHelper - include ActionView::Helpers::TextHelper - include ActionController::UrlWriter - include ApplicationHelper - include ProjectsHelper - include IssuesHelper +class Redmine::Helpers::GanttHelperTest < ActionView::TestCase + fixtures :projects, :trackers, :issue_statuses, :issues, + :journals, :journal_details, + :enumerations, :users, :issue_categories, + :projects_trackers, + :roles, + :member_roles, + :members, + :enabled_modules, + :workflows, + :versions, + :groups_users - def self.default_url_options - {:only_path => true } - end - - end - - include ActionController::Assertions::SelectorAssertions + include ApplicationHelper + include ProjectsHelper + include IssuesHelper + include ERB::Util def setup - @response = ActionController::TestResponse.new - # Fixtures - ProjectCustomField.delete_all - Project.destroy_all - + setup_with_controller User.current = User.find(1) end - def build_view - @view = GanttViewTest.new - end - - def html_document - HTML::Document.new(@response.body) + def today + @today ||= Date.today end # Creates a Gantt chart for a 4 week span @@ -57,14 +49,13 @@ @project = project @gantt = Redmine::Helpers::Gantt.new(options) @gantt.project = @project - @gantt.query = Query.generate_default!(:project => @project) - @gantt.view = build_view - @gantt.instance_variable_set('@date_from', options[:date_from] || 2.weeks.ago.to_date) - @gantt.instance_variable_set('@date_to', options[:date_to] || 2.weeks.from_now.to_date) + @gantt.query = Query.create!(:project => @project, :name => 'Gantt') + @gantt.view = self + @gantt.instance_variable_set('@date_from', options[:date_from] || (today - 14)) + @gantt.instance_variable_set('@date_to', options[:date_to] || (today + 14)) end context "#number_of_rows" do - context "with one project" do should "return the number of rows just for that project" end @@ -76,14 +67,12 @@ should "not exceed max_rows option" do p = Project.generate! 5.times do - Issue.generate_for_project!(p) + Issue.generate!(:project => p) end - create_gantt(p) @gantt.render assert_equal 6, @gantt.number_of_rows assert !@gantt.truncated - create_gantt(p, :max_rows => 3) @gantt.render assert_equal 3, @gantt.number_of_rows @@ -101,15 +90,14 @@ end should "count the number of issues without a version" do - @project.issues << Issue.generate_for_project!(@project, :fixed_version => nil) + @project.issues << Issue.generate!(:project => @project, :fixed_version => nil) assert_equal 2, @gantt.number_of_rows_on_project(@project) end should "count the number of issues on versions, including cross-project" do version = Version.generate! @project.versions << version - @project.issues << Issue.generate_for_project!(@project, :fixed_version => version) - + @project.issues << Issue.generate!(:project => @project, :fixed_version => version) assert_equal 3, @gantt.number_of_rows_on_project(@project) end end @@ -121,50 +109,51 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @version = Version.generate!(:effective_date => 1.week.from_now.to_date, :sharing => 'none') + @version = Version.generate!(:effective_date => (today + 7), :sharing => 'none') @project.versions << @version - @issue = Issue.generate!(:fixed_version => @version, :subject => "gantt#line_for_project", :tracker => @tracker, :project => @project, :done_ratio => 30, - :start_date => Date.yesterday, - :due_date => 1.week.from_now.to_date) + :start_date => (today - 1), + :due_date => (today + 7)) @project.issues << @issue end context "project" do should "be rendered" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.project-name a", /#{@project.name}/ end should "have an indent of 4" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.project-name[style*=left:4px]" end end context "version" do should "be rendered" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.version-name a", /#{@version.name}/ end should "be indented 24 (one level)" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.version-name[style*=left:24px]" end context "without assigned issues" do setup do - @version = Version.generate!(:effective_date => 2.week.from_now.to_date, :sharing => 'none', :name => 'empty_version') + @version = Version.generate!(:effective_date => (today + 14), + :sharing => 'none', + :name => 'empty_version') @project.versions << @version end should "not be rendered" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.version-name a", :text => /#{@version.name}/, :count => 0 end end @@ -172,36 +161,34 @@ context "issue" do should "be rendered" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.issue-subject", /#{@issue.subject}/ end should "be indented 44 (two levels)" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.issue-subject[style*=left:44px]" end context "assigned to a shared version of another project" do setup do p = Project.generate! - p.trackers << @tracker p.enabled_module_names = [:issue_tracking] @shared_version = Version.generate!(:sharing => 'system') p.versions << @shared_version # Reassign the issue to a shared version of another project - @issue = Issue.generate!(:fixed_version => @shared_version, :subject => "gantt#assigned_to_shared_version", :tracker => @tracker, :project => @project, :done_ratio => 30, - :start_date => Date.yesterday, - :due_date => 1.week.from_now.to_date) + :start_date => (today - 1), + :due_date => (today + 7)) @project.issues << @issue end should "be rendered" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects assert_select "div.issue-subject", /#{@issue.subject}/ end end @@ -209,20 +196,35 @@ context "with subtasks" do setup do attrs = {:project => @project, :tracker => @tracker, :fixed_version => @version} - @child1 = Issue.generate!(attrs.merge(:subject => 'child1', :parent_issue_id => @issue.id, :start_date => Date.yesterday, :due_date => 2.day.from_now.to_date)) - @child2 = Issue.generate!(attrs.merge(:subject => 'child2', :parent_issue_id => @issue.id, :start_date => Date.today, :due_date => 1.week.from_now.to_date)) - @grandchild = Issue.generate!(attrs.merge(:subject => 'grandchild', :parent_issue_id => @child1.id, :start_date => Date.yesterday, :due_date => 2.day.from_now.to_date)) + @child1 = Issue.generate!( + attrs.merge(:subject => 'child1', + :parent_issue_id => @issue.id, + :start_date => (today - 1), + :due_date => (today + 2)) + ) + @child2 = Issue.generate!( + attrs.merge(:subject => 'child2', + :parent_issue_id => @issue.id, + :start_date => today, + :due_date => (today + 7)) + ) + @grandchild = Issue.generate!( + attrs.merge(:subject => 'grandchild', + :parent_issue_id => @child1.id, + :start_date => (today - 1), + :due_date => (today + 2)) + ) end should "indent subtasks" do - @response.body = @gantt.subjects + @output_buffer = @gantt.subjects # parent task 44px assert_select "div.issue-subject[style*=left:44px]", /#{@issue.subject}/ # children 64px assert_select "div.issue-subject[style*=left:64px]", /child1/ assert_select "div.issue-subject[style*=left:64px]", /child2/ # grandchild 84px - assert_select "div.issue-subject[style*=left:84px]", /grandchild/, @response.body + assert_select "div.issue-subject[style*=left:84px]", /grandchild/, @output_buffer end end end @@ -234,18 +236,17 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @version = Version.generate!(:effective_date => 1.week.from_now.to_date) + @version = Version.generate!(:effective_date => (today + 7)) @project.versions << @version @issue = Issue.generate!(:fixed_version => @version, :subject => "gantt#line_for_project", :tracker => @tracker, :project => @project, :done_ratio => 30, - :start_date => Date.yesterday, - :due_date => 1.week.from_now.to_date) + :start_date => (today - 1), + :due_date => (today + 7)) @project.issues << @issue - - @response.body = @gantt.lines + @output_buffer = @gantt.lines end context "project" do @@ -294,38 +295,33 @@ context ":html format" do should "add an absolute positioned div" do - @response.body = @gantt.subject_for_project(@project, {:format => :html}) + @output_buffer = @gantt.subject_for_project(@project, {:format => :html}) assert_select "div[style*=absolute]" end should "use the indent option to move the div to the right" do - @response.body = @gantt.subject_for_project(@project, {:format => :html, :indent => 40}) + @output_buffer = @gantt.subject_for_project(@project, {:format => :html, :indent => 40}) assert_select "div[style*=left:40]" end should "include the project name" do - @response.body = @gantt.subject_for_project(@project, {:format => :html}) + @output_buffer = @gantt.subject_for_project(@project, {:format => :html}) assert_select 'div', :text => /#{@project.name}/ end should "include a link to the project" do - @response.body = @gantt.subject_for_project(@project, {:format => :html}) + @output_buffer = @gantt.subject_for_project(@project, {:format => :html}) assert_select 'a[href=?]', "/projects/#{@project.identifier}", :text => /#{@project.name}/ end should "style overdue projects" do @project.enabled_module_names = [:issue_tracking] - @project.versions << Version.generate!(:effective_date => Date.yesterday) - - assert @project.overdue?, "Need an overdue project for this test" - @response.body = @gantt.subject_for_project(@project, {:format => :html}) - + @project.versions << Version.generate!(:effective_date => (today - 1)) + assert @project.reload.overdue?, "Need an overdue project for this test" + @output_buffer = @gantt.subject_for_project(@project, {:format => :html}) assert_select 'div span.project-overdue' end - - end - should "test the PNG format" should "test the PDF format" end @@ -336,107 +332,100 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @version = Version.generate!(:effective_date => Date.yesterday) + @version = Version.generate!(:effective_date => (today - 1)) @project.versions << @version - @project.issues << Issue.generate!(:fixed_version => @version, :subject => "gantt#line_for_project", :tracker => @tracker, :project => @project, :done_ratio => 30, - :start_date => 1.week.ago.to_date, - :due_date => 1.week.from_now.to_date) + :start_date => (today - 7), + :due_date => (today + 7)) end context ":html format" do context "todo line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.task_todo[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.task_todo[style*=left:28px]", true, @output_buffer end should "be the total width of the project" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.task_todo[style*=width:58px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.task_todo[style*=width:58px]", true, @output_buffer end - end context "late line" do should_eventually "start from the starting point on the left" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.task_late[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.task_late[style*=left:28px]", true, @output_buffer end should_eventually "be the total delayed width of the project" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.task_late[style*=width:30px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.task_late[style*=width:30px]", true, @output_buffer end end context "done line" do should_eventually "start from the starting point on the left" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.task_done[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.task_done[style*=left:28px]", true, @output_buffer end should_eventually "Be the total done width of the project" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.task_done[style*=width:18px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.task_done[style*=width:18px]", true, @output_buffer end end context "starting marker" do should "not appear if the starting point is off the gantt chart" do # Shift the date range of the chart - @gantt.instance_variable_set('@date_from', Date.today) - - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.starting", false, @response.body + @gantt.instance_variable_set('@date_from', today) + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.starting", false, @output_buffer end should "appear at the starting point" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.starting[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.starting[style*=left:28px]", true, @output_buffer end end context "ending marker" do should "not appear if the starting point is off the gantt chart" do # Shift the date range of the chart - @gantt.instance_variable_set('@date_to', 2.weeks.ago.to_date) - - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.ending", false, @response.body - + @gantt.instance_variable_set('@date_to', (today - 14)) + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.ending", false, @output_buffer end should "appear at the end of the date range" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) - assert_select "div.project.ending[style*=left:88px]", true, @response.body + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + assert_select "div.project.ending[style*=left:88px]", true, @output_buffer end end context "status content" do should "appear at the far left, even if it's far in the past" do - @gantt.instance_variable_set('@date_to', 2.weeks.ago.to_date) - - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + @gantt.instance_variable_set('@date_to', (today - 14)) + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) assert_select "div.project.label", /#{@project.name}/ end should "show the project name" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) assert_select "div.project.label", /#{@project.name}/ end should_eventually "show the percent complete" do - @response.body = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_project(@project, {:format => :html, :zoom => 4}) assert_select "div.project.label", /0%/ end end end - should "test the PNG format" should "test the PDF format" end @@ -447,49 +436,46 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @version = Version.generate!(:effective_date => Date.yesterday) + @version = Version.generate!(:effective_date => (today - 1)) @project.versions << @version - @project.issues << Issue.generate!(:fixed_version => @version, :subject => "gantt#subject_for_version", :tracker => @tracker, :project => @project, - :start_date => Date.today) + :start_date => today) end context ":html format" do should "add an absolute positioned div" do - @response.body = @gantt.subject_for_version(@version, {:format => :html}) + @output_buffer = @gantt.subject_for_version(@version, {:format => :html}) assert_select "div[style*=absolute]" end should "use the indent option to move the div to the right" do - @response.body = @gantt.subject_for_version(@version, {:format => :html, :indent => 40}) + @output_buffer = @gantt.subject_for_version(@version, {:format => :html, :indent => 40}) assert_select "div[style*=left:40]" end should "include the version name" do - @response.body = @gantt.subject_for_version(@version, {:format => :html}) + @output_buffer = @gantt.subject_for_version(@version, {:format => :html}) assert_select 'div', :text => /#{@version.name}/ end should "include a link to the version" do - @response.body = @gantt.subject_for_version(@version, {:format => :html}) + @output_buffer = @gantt.subject_for_version(@version, {:format => :html}) assert_select 'a[href=?]', Regexp.escape("/versions/#{@version.to_param}"), :text => /#{@version.name}/ end should "style late versions" do assert @version.overdue?, "Need an overdue version for this test" - @response.body = @gantt.subject_for_version(@version, {:format => :html}) - + @output_buffer = @gantt.subject_for_version(@version, {:format => :html}) assert_select 'div span.version-behind-schedule' end should "style behind schedule versions" do assert @version.behind_schedule?, "Need a behind schedule version for this test" - @response.body = @gantt.subject_for_version(@version, {:format => :html}) - + @output_buffer = @gantt.subject_for_version(@version, {:format => :html}) assert_select 'div span.version-behind-schedule' end end @@ -503,107 +489,100 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @version = Version.generate!(:effective_date => 1.week.from_now.to_date) + @version = Version.generate!(:effective_date => (today + 7)) @project.versions << @version - @project.issues << Issue.generate!(:fixed_version => @version, :subject => "gantt#line_for_project", :tracker => @tracker, :project => @project, :done_ratio => 30, - :start_date => 1.week.ago.to_date, - :due_date => 1.week.from_now.to_date) + :start_date => (today - 7), + :due_date => (today + 7)) end context ":html format" do context "todo line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.task_todo[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.task_todo[style*=left:28px]", true, @output_buffer end should "be the total width of the version" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.task_todo[style*=width:58px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.task_todo[style*=width:58px]", true, @output_buffer end - end context "late line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.task_late[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.task_late[style*=left:28px]", true, @output_buffer end should "be the total delayed width of the version" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.task_late[style*=width:30px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.task_late[style*=width:30px]", true, @output_buffer end end context "done line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.task_done[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.task_done[style*=left:28px]", true, @output_buffer end should "be the total done width of the version" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.task_done[style*=width:16px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.task_done[style*=width:16px]", true, @output_buffer end end context "starting marker" do should "not appear if the starting point is off the gantt chart" do # Shift the date range of the chart - @gantt.instance_variable_set('@date_from', Date.today) - - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + @gantt.instance_variable_set('@date_from', today) + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) assert_select "div.version.starting", false end should "appear at the starting point" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.starting[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.starting[style*=left:28px]", true, @output_buffer end end context "ending marker" do should "not appear if the starting point is off the gantt chart" do # Shift the date range of the chart - @gantt.instance_variable_set('@date_to', 2.weeks.ago.to_date) - - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + @gantt.instance_variable_set('@date_to', (today - 14)) + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) assert_select "div.version.ending", false - end should "appear at the end of the date range" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) - assert_select "div.version.ending[style*=left:88px]", true, @response.body + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + assert_select "div.version.ending[style*=left:88px]", true, @output_buffer end end context "status content" do should "appear at the far left, even if it's far in the past" do - @gantt.instance_variable_set('@date_to', 2.weeks.ago.to_date) - - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + @gantt.instance_variable_set('@date_to', (today - 14)) + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) assert_select "div.version.label", /#{@version.name}/ end should "show the version name" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) assert_select "div.version.label", /#{@version.name}/ end should "show the percent complete" do - @response.body = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_version(@version, {:format => :html, :zoom => 4}) assert_select "div.version.label", /30%/ end end end - should "test the PNG format" should "test the PDF format" end @@ -614,44 +593,40 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @issue = Issue.generate!(:subject => "gantt#subject_for_issue", :tracker => @tracker, :project => @project, - :start_date => 3.days.ago.to_date, - :due_date => Date.yesterday) + :start_date => (today - 3), + :due_date => (today - 1)) @project.issues << @issue - end context ":html format" do should "add an absolute positioned div" do - @response.body = @gantt.subject_for_issue(@issue, {:format => :html}) + @output_buffer = @gantt.subject_for_issue(@issue, {:format => :html}) assert_select "div[style*=absolute]" end should "use the indent option to move the div to the right" do - @response.body = @gantt.subject_for_issue(@issue, {:format => :html, :indent => 40}) + @output_buffer = @gantt.subject_for_issue(@issue, {:format => :html, :indent => 40}) assert_select "div[style*=left:40]" end should "include the issue subject" do - @response.body = @gantt.subject_for_issue(@issue, {:format => :html}) + @output_buffer = @gantt.subject_for_issue(@issue, {:format => :html}) assert_select 'div', :text => /#{@issue.subject}/ end should "include a link to the issue" do - @response.body = @gantt.subject_for_issue(@issue, {:format => :html}) + @output_buffer = @gantt.subject_for_issue(@issue, {:format => :html}) assert_select 'a[href=?]', Regexp.escape("/issues/#{@issue.to_param}"), :text => /#{@tracker.name} ##{@issue.id}/ end should "style overdue issues" do assert @issue.overdue?, "Need an overdue issue for this test" - @response.body = @gantt.subject_for_issue(@issue, {:format => :html}) - + @output_buffer = @gantt.subject_for_issue(@issue, {:format => :html}) assert_select 'div span.issue-overdue' end - end should "test the PNG format" should "test the PDF format" @@ -663,62 +638,60 @@ @project.enabled_module_names = [:issue_tracking] @tracker = Tracker.generate! @project.trackers << @tracker - @version = Version.generate!(:effective_date => 1.week.from_now.to_date) + @version = Version.generate!(:effective_date => (today + 7)) @project.versions << @version @issue = Issue.generate!(:fixed_version => @version, :subject => "gantt#line_for_project", :tracker => @tracker, :project => @project, :done_ratio => 30, - :start_date => 1.week.ago.to_date, - :due_date => 1.week.from_now.to_date) + :start_date => (today - 7), + :due_date => (today + 7)) @project.issues << @issue end context ":html format" do context "todo line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_todo[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_todo[style*=left:28px]", true, @output_buffer end should "be the total width of the issue" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_todo[style*=width:58px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_todo[style*=width:58px]", true, @output_buffer end - end context "late line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_late[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_late[style*=left:28px]", true, @output_buffer end should "be the total delayed width of the issue" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_late[style*=width:30px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_late[style*=width:30px]", true, @output_buffer end end context "done line" do should "start from the starting point on the left" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_done[style*=left:28px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_done[style*=left:28px]", true, @output_buffer end should "be the total done width of the issue" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) # 15 days * 4 px * 30% - 2 px for borders = 16 px - assert_select "div.task_done[style*=width:16px]", true, @response.body + assert_select "div.task_done[style*=width:16px]", true, @output_buffer end should "not be the total done width if the chart starts after issue start date" do - create_gantt(@project, :date_from => 5.days.ago.to_date) - - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_done[style*=left:0px]", true, @response.body - assert_select "div.task_done[style*=width:8px]", true, @response.body + create_gantt(@project, :date_from => (today - 5)) + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_done[style*=left:0px]", true, @output_buffer + assert_select "div.task_done[style*=width:8px]", true, @output_buffer end context "for completed issue" do @@ -727,43 +700,41 @@ end should "be the total width of the issue" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_done[style*=width:58px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_done[style*=width:58px]", true, @output_buffer end should "be the total width of the issue with due_date=start_date" do @issue.due_date = @issue.start_date - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task_done[style*=width:2px]", true, @response.body + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task_done[style*=width:2px]", true, @output_buffer end end end context "status content" do should "appear at the far left, even if it's far in the past" do - @gantt.instance_variable_set('@date_to', 2.weeks.ago.to_date) - - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) - assert_select "div.task.label", true, @response.body + @gantt.instance_variable_set('@date_to', (today - 14)) + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + assert_select "div.task.label", true, @output_buffer end should "show the issue status" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) assert_select "div.task.label", /#{@issue.status.name}/ end should "show the percent complete" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) assert_select "div.task.label", /30%/ end end end should "have an issue tooltip" do - @response.body = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) + @output_buffer = @gantt.line_for_issue(@issue, {:format => :html, :zoom => 4}) assert_select "div.tooltip", /#{@issue.subject}/ end - should "test the PNG format" should "test the PDF format" end @@ -775,5 +746,4 @@ context "#to_pdf" do should "be tested" end - end