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

63 lines
1.9 KiB

def get_project(identifier)
Project.find(:first, :conditions => "identifier='#{identifier}'")
end
def initialize_story_params
14 years ago
@story = HashWithIndifferentAccess.new(Story.new.attributes)
@story['project_id'] = @project.id
@story['tracker_id'] = Story.trackers.first
@story['author_id'] = @user.id
@story
end
def initialize_task_params(story_id)
14 years ago
params = HashWithIndifferentAccess.new(Task.new.attributes)
params['project_id'] = @project.id
params['tracker_id'] = Task.tracker
params['author_id'] = @user.id
params['parent_issue_id'] = story_id
params['status_id'] = IssueStatus.find(:first).id
params
end
14 years ago
def initialize_impediment_params(sprint_id)
params = HashWithIndifferentAccess.new(Task.new.attributes)
params['project_id'] = @project.id
params['tracker_id'] = Task.tracker
params['author_id'] = @user.id
params['fixed_version_id'] = sprint_id
params['status_id'] = IssueStatus.find(:first).id
params
end
def login_as_product_owner
visit url_for(:controller => 'account', :action=>'login')
fill_in 'username', :with => 'jsmith'
fill_in 'password', :with => 'jsmith'
click_button 'Login »'
@user = User.find(:first, :conditions => "login='jsmith'")
end
def login_as_scrum_master
visit url_for(:controller => 'account', :action=>'login')
fill_in 'username', :with => 'jsmith'
fill_in 'password', :with => 'jsmith'
click_button 'Login »'
@user = User.find(:first, :conditions => "login='jsmith'")
end
def login_as_team_member
visit url_for(:controller => 'account', :action=>'login')
fill_in 'username', :with => 'jsmith'
fill_in 'password', :with => 'jsmith'
click_button 'Login »'
@user = User.find(:first, :conditions => "login='jsmith'")
end
def login_as_admin
visit url_for(:controller => 'account', :action=>'login')
fill_in 'username', :with => 'admin'
fill_in 'password', :with => 'admin'
click_button 'Login »'
@user = User.find(:first, :conditions => "login='admin'")
end