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/features/step_definitions/helpers.rb

116 lines
3.8 KiB

#-- copyright
# OpenProject Backlogs Plugin
#
# Copyright (C)2013-2014 the OpenProject Foundation (OPF)
# Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda
# Copyright (C)2010-2011 friflaj
# Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns
# Copyright (C)2009-2010 Mark Maglana
# Copyright (C)2009 Joe Heck, Nate Lowrie
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License version 3.
#
# OpenProject Backlogs is a derivative work based on ChiliProject Backlogs.
# The copyright follows:
# Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj
# Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany
#
# This program 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 2
# of the License, or (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
def initialize_story_params(project, user = User.first)
story = HashWithIndifferentAccess.new(Story.new.attributes)
story['type_id'] = Story.types.first
# unsafe attributes that will not be used directly but added for your
# convenience
story['project_id'] = project.id
story['author_id'] = user.id
story['project'] = project
story['author'] = user
story
end
def initialize_task_params(project, story, user = User.first)
params = HashWithIndifferentAccess.new
params['type_id'] = Task.type
if story
params['fixed_version_id'] = story.fixed_version_id
params['parent_id'] = story.id
end
params['status_id'] = Status.first.pluck(:id)
# unsafe attributes that will not be used directly but added for your
# convenience
params['project_id'] = project.id
params['author_id'] = user.id
params['project'] = project
params['author'] = user
params
end
def initialize_work_package_params(project, type = Type.first, parent = nil, user = User.find(:first))
params = HashWithIndifferentAccess.new
params['type_id'] = type.id
params['parent_id'] = parent.id if parent
params['status_id'] = Status.first.pluck(:id)
# unsafe attributes that will not be used directly but added for your
# convenience
params['project_id'] = project.id
params['author_id'] = user.id
params['project'] = project
params['author'] = user
params
end
def initialize_impediment_params(project, sprint, user = User.first)
params = HashWithIndifferentAccess.new(Task.new.attributes)
params['type_id'] = Task.type
params['fixed_version_id'] = sprint.id
params['status_id'] = Status.first.pluck(:id)
# unsafe attributes that will not be used directly but added for your
# convenience
params['project_id'] = project.id
params['author_id'] = user.id
params['project'] = project
params['author'] = user
params
end
def task_position(task)
p1 = task.story.tasks.select { |t| t.id == task.id }[0].rank
p2 = task.rank
p1.should == p2
p1
end
def story_position(story)
p1 = Story.sprint_backlog(story.project, story.fixed_version).detect { |s| s.id == story.id }.rank
p2 = story.rank
p1.should == p2
Story.at_rank(story.project_id, story.fixed_version_id, p1).id.should == story.id
p1
end
def logout
visit url_for(controller: '/account', action: 'logout')
@user = nil
end