gitlab-org--gitlab-foss/features/steps/shared/project.rb

126 lines
3.6 KiB
Ruby
Raw Normal View History

2012-09-10 11:35:03 -04:00
module SharedProject
include Spinach::DSL
# Create a project without caring about what it's called
And "I own a project" do
@project = create(:project, namespace: @user.namespace)
@project.team << [@user, :master]
end
# Create a specific project called "Shop"
2012-09-10 11:35:03 -04:00
And 'I own project "Shop"' do
2014-01-19 13:55:59 -05:00
@project = Project.find_by(name: "Shop")
@project ||= create(:project, name: "Shop", namespace: @user.namespace)
@project.team << [@user, :master]
2012-09-10 11:35:03 -04:00
end
# Create another specific project called "Forum"
And 'I own project "Forum"' do
2014-01-19 13:55:59 -05:00
@project = Project.find_by(name: "Forum")
@project ||= create(:project, name: "Forum", namespace: @user.namespace, path: 'forum_project')
@project.team << [@user, :master]
end
2013-01-09 00:14:05 -05:00
And 'project "Shop" has push event' do
2014-01-19 13:55:59 -05:00
@project = Project.find_by(name: "Shop")
2013-01-09 00:14:05 -05:00
data = {
before: "0000000000000000000000000000000000000000",
after: "0220c11b9a3e6c69dc8fd35321254ca9a7b98f7e",
ref: "refs/heads/new_design",
user_id: @user.id,
user_name: @user.name,
repository: {
name: @project.name,
url: "localhost/rubinius",
description: "",
homepage: "localhost/rubinius",
private: true
}
}
@event = Event.create(
project: @project,
2013-02-13 06:48:16 -05:00
action: Event::PUSHED,
2013-01-09 00:14:05 -05:00
data: data,
author_id: @user.id
)
end
Then 'I should see project "Shop" activity feed' do
2014-01-19 13:55:59 -05:00
project = Project.find_by(name: "Shop")
2013-06-22 16:57:29 -04:00
page.should have_content "#{@user.name} pushed new branch new_design at #{project.name_with_namespace}"
2013-01-09 00:14:05 -05:00
end
Then 'I should see project settings' do
current_path.should == edit_project_path(@project)
2013-10-18 00:28:49 -04:00
page.should have_content("Project name")
2013-01-09 00:14:05 -05:00
page.should have_content("Features:")
end
def current_project
@project ||= Project.first
end
# ----------------------------------------
# Visibility level
# ----------------------------------------
step 'private project "Enterprise"' do
create :project, name: 'Enterprise'
end
step 'I should see project "Enterprise"' do
page.should have_content "Enterprise"
end
step 'I should not see project "Enterprise"' do
page.should_not have_content "Enterprise"
end
step 'internal project "Internal"' do
2014-03-19 05:15:24 -04:00
create :project, :internal, name: 'Internal'
end
step 'I should see project "Internal"' do
page.should have_content "Internal"
end
step 'I should not see project "Internal"' do
page.should_not have_content "Internal"
end
step 'public project "Community"' do
2014-03-19 05:15:24 -04:00
create :project, :public, name: 'Community'
end
step 'I should see project "Community"' do
page.should have_content "Community"
end
step 'I should not see project "Community"' do
page.should_not have_content "Community"
end
step '"John Doe" is authorized to private project "Enterprise"' do
2014-02-07 11:59:55 -05:00
user = user_exists("John Doe", username: "john_doe")
project = Project.find_by(name: "Enterprise")
project ||= create(:project, name: "Enterprise", namespace: user.namespace)
project.team << [user, :master]
end
step '"John Doe" is authorized to internal project "Internal"' do
2014-02-07 11:59:55 -05:00
user = user_exists("John Doe", username: "john_doe")
project = Project.find_by(name: "Internal")
2014-03-19 05:15:24 -04:00
project ||= create :project, :internal, name: 'Internal'
project.team << [user, :master]
end
step '"John Doe" is authorized to public project "Community"' do
2014-02-07 11:59:55 -05:00
user = user_exists("John Doe", username: "john_doe")
project = Project.find_by(name: "Community")
2014-03-19 05:15:24 -04:00
project ||= create :project, :public, name: 'Community'
project.team << [user, :master]
end
2012-09-10 11:35:03 -04:00
end