kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
207 lines
7.4 KiB
207 lines
7.4 KiB
#-- 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 'spec_helper'
|
|
|
|
describe WorkPackagesHelper do
|
|
let(:stub_work_package) { FactoryGirl.build_stubbed(:planning_element) }
|
|
let(:form) { double('form', :select => "").as_null_object }
|
|
let(:stub_user) { FactoryGirl.build_stubbed(:user) }
|
|
|
|
def inside_form &block
|
|
ret = ''
|
|
|
|
form_for(stub_work_package, :as => 'work_package', :url => work_package_path(stub_work_package)) do |f|
|
|
ret = yield f
|
|
end
|
|
|
|
ret
|
|
end
|
|
|
|
describe :work_package_breadcrumb do
|
|
it 'should provide a link to index as the first element and all ancestors as links' do
|
|
index_link = double('work_package_index_link')
|
|
ancestors_links = double('ancestors_links')
|
|
|
|
helper.stub!(:ancestors_links).and_return([ancestors_links])
|
|
helper.stub!(:work_package_index_link).and_return(index_link)
|
|
|
|
@expectation = [index_link, ancestors_links]
|
|
|
|
helper.should_receive(:breadcrumb_paths).with(*@expectation)
|
|
|
|
helper.work_package_breadcrumb
|
|
end
|
|
end
|
|
|
|
describe :ancestors_links do
|
|
it 'should return a list of links for every ancestor' do
|
|
ancestors = [mock('ancestor1', id: 1),
|
|
mock('ancestor2', id: 2)]
|
|
|
|
controller.stub!(:ancestors).and_return(ancestors)
|
|
|
|
ancestors.each_with_index do |ancestor, index|
|
|
helper.ancestors_links[index].should have_selector("a[href='#{work_package_path(ancestor.id)}']", :text => "##{ancestor.id}")
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
describe :work_package_index_link do
|
|
it "should return a link to issue_index (work_packages index later)" do
|
|
helper.work_package_index_link.should have_selector("a[href='#{issues_path}']", :text => I18n.t(:label_issue_plural))
|
|
end
|
|
end
|
|
|
|
describe :work_package_show_spent_time_attribute do
|
|
it "should show a spent time link pointing to the time entries of the work package" do
|
|
stub_work_package.stub(:spent_hours).and_return(5.0)
|
|
|
|
field = helper.work_package_show_spent_time_attribute(stub_work_package).field
|
|
|
|
expected_href = issue_time_entries_path(stub_work_package)
|
|
|
|
field.should have_css(".spent-time a[@href='#{ expected_href }']", :text => '5.0')
|
|
end
|
|
|
|
it "should show a '-' if spent time is 0" do
|
|
stub_work_package.stub(:spent_hours).and_return(0.0)
|
|
|
|
field = helper.work_package_show_spent_time_attribute(stub_work_package).field
|
|
|
|
field.should have_css(".spent-time", :text => '-')
|
|
end
|
|
end
|
|
|
|
describe :work_package_form_issue_category_attribute do
|
|
let(:stub_project) { FactoryGirl.build_stubbed(:project) }
|
|
let(:stub_category) { FactoryGirl.build_stubbed(:issue_category) }
|
|
|
|
before do
|
|
# set sensible defaults
|
|
stub!(:authorize_for).and_return(false)
|
|
stub_project.stub!(:issue_categories).and_return([stub_category])
|
|
end
|
|
|
|
it "should return nothing if the project has no categories assigned" do
|
|
stub_project.stub!(:issue_categories).and_return([])
|
|
|
|
work_package_form_issue_category_attribute(form, stub_work_package, :project => stub_project).should be_nil
|
|
end
|
|
|
|
it "should have a :category symbol as the attribute" do
|
|
work_package_form_issue_category_attribute(form, stub_work_package, :project => stub_project).attribute.should == :category
|
|
end
|
|
|
|
it "should render a select with the project's issue category" do
|
|
select = double('select')
|
|
|
|
form.should_receive(:select).with(:category_id,
|
|
[[stub_category.name, stub_category.id]],
|
|
:include_blank => true).and_return(select)
|
|
|
|
work_package_form_issue_category_attribute(form, stub_work_package, :project => stub_project).field.should == select
|
|
end
|
|
|
|
it "should add an additional remote link to create new categories if allowed" do
|
|
remote = "remote"
|
|
|
|
stub!(:authorize_for).and_return(true)
|
|
|
|
should_receive(:prompt_to_remote).with(*([anything()] * 3), project_issue_categories_path(stub_project), anything()).and_return(remote)
|
|
|
|
work_package_form_issue_category_attribute(form, stub_work_package, :project => stub_project).field.should include(remote)
|
|
end
|
|
end
|
|
|
|
describe :work_package_form_estimated_hours_attribute do
|
|
it "should output the estimated hours value with a precision of 2" do
|
|
stub_work_package.estimated_hours = 3
|
|
|
|
attribute = inside_form do |f|
|
|
helper.work_package_form_estimated_hours_attribute(f, stub_work_package, {})
|
|
end
|
|
|
|
attribute.field.should have_selector('input#work_package_estimated_hours[@value="3.00"]')
|
|
end
|
|
end
|
|
|
|
describe :work_package_form_custom_values_attribute do
|
|
let(:stub_custom_value) { FactoryGirl.build_stubbed(:work_package_custom_value) }
|
|
let(:expected) { "field contents" }
|
|
|
|
before do
|
|
stub_work_package.stub!(:custom_field_values).and_return([stub_custom_value])
|
|
|
|
helper.should_receive(:custom_field_tag_with_label).with(:work_package, stub_custom_value).and_return(expected)
|
|
end
|
|
|
|
it "should return an array for an element for every value" do
|
|
helper.work_package_form_custom_values_attribute(form, stub_work_package, {}).size.should == 1
|
|
end
|
|
|
|
it "should return the result inside the field" do
|
|
helper.work_package_form_custom_values_attribute(form, stub_work_package, {}).first.field.should == expected
|
|
end
|
|
end
|
|
|
|
describe :work_package_form_status_attribute do
|
|
let(:status1) { FactoryGirl.build_stubbed(:issue_status) }
|
|
let(:status2) { FactoryGirl.build_stubbed(:issue_status) }
|
|
|
|
it "should return a select with every available status as an option" do
|
|
stub_work_package.stub!(:new_statuses_allowed_to)
|
|
.with(stub_user, true)
|
|
.and_return([status1, status2])
|
|
|
|
stub_work_package.status = status1
|
|
|
|
attribute = inside_form do |f|
|
|
helper.work_package_form_status_attribute(f, stub_work_package, :user => stub_user)
|
|
end
|
|
|
|
status1_selector = "select#work_package_status_id option[@value='#{status1.id}'][@selected='selected']"
|
|
status2_selector = "select#work_package_status_id option[@value='#{status1.id}']"
|
|
|
|
attribute.field.should have_selector(status1_selector)
|
|
attribute.field.should have_selector(status2_selector)
|
|
end
|
|
|
|
it "should return a label and the name of the current status if no new status is available" do
|
|
stub_work_package.stub!(:new_statuses_allowed_to)
|
|
.with(stub_user, true)
|
|
.and_return([])
|
|
|
|
stub_work_package.status = status1
|
|
|
|
attribute = inside_form do |f|
|
|
helper.work_package_form_status_attribute(f, stub_work_package, :user => stub_user)
|
|
end
|
|
|
|
attribute.field.should have_text(WorkPackage.human_attribute_name(:status))
|
|
attribute.field.should have_text(status1.name)
|
|
end
|
|
|
|
it "should return a label and a '-' if the work_package has no status" do
|
|
stub_work_package.stub!(:new_statuses_allowed_to)
|
|
.with(stub_user, true)
|
|
.and_return([])
|
|
|
|
attribute = inside_form do |f|
|
|
helper.work_package_form_status_attribute(f, stub_work_package, :user => stub_user)
|
|
end
|
|
|
|
attribute.field.should have_text(WorkPackage.human_attribute_name(:status))
|
|
attribute.field.should have_text("-")
|
|
end
|
|
end
|
|
end
|
|
|