Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'features/step_definitions/project')
-rw-r--r--features/step_definitions/project/browse_code_steps.rb50
-rw-r--r--features/step_definitions/project/project_commits_steps.rb61
-rw-r--r--features/step_definitions/project/project_issues_steps.rb47
-rw-r--r--features/step_definitions/project/project_merge_requests_steps.rb38
-rw-r--r--features/step_definitions/project/project_team_steps.rb63
-rw-r--r--features/step_definitions/project/project_wiki_steps.rb18
-rw-r--r--features/step_definitions/project/projects_steps.rb68
7 files changed, 345 insertions, 0 deletions
diff --git a/features/step_definitions/project/browse_code_steps.rb b/features/step_definitions/project/browse_code_steps.rb
new file mode 100644
index 00000000000..7f9001bb989
--- /dev/null
+++ b/features/step_definitions/project/browse_code_steps.rb
@@ -0,0 +1,50 @@
+Given /^I visit project source page$/ do
+ visit tree_project_ref_path(@project, @project.root_ref)
+end
+
+Then /^I should see files from repository$/ do
+ page.should have_content("app")
+ page.should have_content("History")
+ page.should have_content("Gemfile")
+end
+
+Given /^I visit project source page for "(.*?)"$/ do |arg1|
+ visit tree_project_ref_path(@project, arg1)
+end
+
+Then /^I should see files from repository for "(.*?)"$/ do |arg1|
+ current_path.should == tree_project_ref_path(@project, arg1)
+ page.should have_content("app")
+ page.should have_content("History")
+ page.should have_content("Gemfile")
+end
+
+Given /^I click on file from repo$/ do
+ click_link "Gemfile"
+end
+
+Then /^I should see it content$/ do
+ page.should have_content("rubygems.org")
+end
+
+Given /^I click on raw button$/ do
+ click_link "raw"
+end
+
+Given /^I visit blob file from repo$/ do
+ visit tree_project_ref_path(@project, ValidCommit::ID, :path => ValidCommit::BLOB_FILE_PATH)
+end
+
+Then /^I should see raw file content$/ do
+ page.source.should == ValidCommit::BLOB_FILE
+end
+
+Given /^I click blame button$/ do
+ click_link "blame"
+end
+
+Then /^I should see git file blame$/ do
+ page.should have_content("rubygems.org")
+ page.should have_content("Dmitriy Zaporozhets")
+ page.should have_content("bc3735004cb Moving to rails 3.2")
+end
diff --git a/features/step_definitions/project/project_commits_steps.rb b/features/step_definitions/project/project_commits_steps.rb
new file mode 100644
index 00000000000..9b3b0aa1f81
--- /dev/null
+++ b/features/step_definitions/project/project_commits_steps.rb
@@ -0,0 +1,61 @@
+Given /^I visit project commits page$/ do
+ visit project_commits_path(@project)
+end
+
+Then /^I see project commits$/ do
+ current_path.should == project_commits_path(@project)
+
+ commit = @project.commit
+ page.should have_content(@project.name)
+ page.should have_content(commit.message)
+ page.should have_content(commit.id.to_s[0..5])
+end
+
+Given /^I click atom feed link$/ do
+ click_link "Feed"
+end
+
+Then /^I see commits atom feed$/ do
+ commit = CommitDecorator.decorate(@project.commit)
+ page.response_headers['Content-Type'].should have_content("application/atom+xml")
+ page.body.should have_selector("title", :text => "Recent commits to #{@project.name}")
+ page.body.should have_selector("author email", :text => commit.author_email)
+ page.body.should have_selector("entry summary", :text => commit.description)
+end
+
+Given /^I click on commit link$/ do
+ visit project_commit_path(@project, ValidCommit::ID)
+end
+
+Then /^I see commit info$/ do
+ page.should have_content ValidCommit::MESSAGE
+ page.should have_content "Showing 1 changed file"
+end
+
+Given /^I visit compare refs page$/ do
+ visit compare_project_commits_path(@project)
+end
+
+Given /^I fill compare fields with refs$/ do
+ fill_in "from", :with => "master"
+ fill_in "to", :with => "stable"
+ click_button "Compare"
+end
+
+Given /^I see compared refs$/ do
+ page.should have_content "Commits (27)"
+ page.should have_content "Compare View"
+ page.should have_content "Showing 73 changed files"
+end
+
+Given /^I visit project branches page$/ do
+ visit branches_project_repository_path(@project)
+end
+
+Given /^I visit project commit page$/ do
+ visit project_commit_path(@project, ValidCommit::ID)
+end
+
+Given /^I visit project tags page$/ do
+ visit tags_project_repository_path(@project)
+end
diff --git a/features/step_definitions/project/project_issues_steps.rb b/features/step_definitions/project/project_issues_steps.rb
new file mode 100644
index 00000000000..2c47f37233e
--- /dev/null
+++ b/features/step_definitions/project/project_issues_steps.rb
@@ -0,0 +1,47 @@
+Given /^project "(.*?)" have "(.*?)" open issue$/ do |arg1, arg2|
+ project = Project.find_by_name(arg1)
+ Factory.create(:issue, :title => arg2, :project => project, :author => project.users.first)
+end
+
+Given /^project "(.*?)" have "(.*?)" closed issue$/ do |arg1, arg2|
+ project = Project.find_by_name(arg1)
+ Factory.create(:issue, :title => arg2, :project => project, :author => project.users.first, :closed => true)
+end
+
+Given /^I visit project "(.*?)" issues page$/ do |arg1|
+ visit project_issues_path(Project.find_by_name(arg1))
+end
+
+Given /^I should see "(.*?)" in issues$/ do |arg1|
+ page.should have_content arg1
+end
+
+Given /^I should not see "(.*?)" in issues$/ do |arg1|
+ page.should_not have_content arg1
+end
+
+Then /^I should see issue "(.*?)"$/ do |arg1|
+ issue = Issue.find_by_title(arg1)
+ page.should have_content issue.title
+ page.should have_content issue.author_name
+ page.should have_content issue.project.name
+end
+
+Given /^I visit issue page "(.*?)"$/ do |arg1|
+ issue = Issue.find_by_title(arg1)
+ visit project_issue_path(issue.project, issue)
+end
+
+Given /^I leave a comment like "(.*?)"$/ do |arg1|
+ fill_in "note_note", :with => arg1
+ click_button "Add Comment"
+end
+
+Then /^I should see commetn "(.*?)"$/ do |arg1|
+ page.should have_content(arg1)
+end
+
+Given /^I submit new issue "(.*?)"$/ do |arg1|
+ fill_in "issue_title", :with => arg1
+ click_button "Submit new issue"
+end
diff --git a/features/step_definitions/project/project_merge_requests_steps.rb b/features/step_definitions/project/project_merge_requests_steps.rb
new file mode 100644
index 00000000000..6749773e2b5
--- /dev/null
+++ b/features/step_definitions/project/project_merge_requests_steps.rb
@@ -0,0 +1,38 @@
+Given /^project "(.*?)" has milestone "(.*?)"$/ do |arg1, arg2|
+ project = Project.find_by_name(arg1)
+
+ milestone = Factory :milestone,
+ :title => arg2,
+ :project => project
+
+ 3.times do |i|
+ issue = Factory :issue,
+ :project => project,
+ :milestone => milestone
+ end
+end
+
+Given /^I visit project "(.*?)" milestones page$/ do |arg1|
+ @project = Project.find_by_name(arg1)
+ visit project_milestones_path(@project)
+end
+
+Then /^I should see active milestones$/ do
+ milestone = @project.milestones.first
+ page.should have_content(milestone.title[0..10])
+ page.should have_content(milestone.expires_at)
+ page.should have_content("Browse Issues")
+end
+
+Then /^I should see milestone "(.*?)"$/ do |arg1|
+ milestone = @project.milestones.find_by_title(arg1)
+ page.should have_content(milestone.title[0..10])
+ page.should have_content(milestone.expires_at)
+ page.should have_content("Browse Issues")
+end
+
+Given /^I submit new milestone "(.*?)"$/ do |arg1|
+ fill_in "milestone_title", :with => arg1
+ click_button "Create milestone"
+end
+
diff --git a/features/step_definitions/project/project_team_steps.rb b/features/step_definitions/project/project_team_steps.rb
new file mode 100644
index 00000000000..f0bab29a6f8
--- /dev/null
+++ b/features/step_definitions/project/project_team_steps.rb
@@ -0,0 +1,63 @@
+Given /^gitlab user "(.*?)"$/ do |arg1|
+ Factory :user, :name => arg1
+end
+
+Given /^"(.*?)" is "(.*?)" developer$/ do |arg1, arg2|
+ user = User.find_by_name(arg1)
+ project = Project.find_by_name(arg2)
+ project.add_access(user, :write)
+end
+
+Given /^I visit project "(.*?)" team page$/ do |arg1|
+ visit team_project_path(Project.find_by_name(arg1))
+end
+
+Then /^I should be able to see myself in team$/ do
+ page.should have_content(@user.name)
+ page.should have_content(@user.email)
+end
+
+Then /^I should see "(.*?)" in team list$/ do |arg1|
+ user = User.find_by_name(arg1)
+ page.should have_content(user.name)
+ page.should have_content(user.email)
+end
+
+Given /^I click link "(.*?)"$/ do |arg1|
+ click_link arg1
+end
+
+Given /^I select "(.*?)" as "(.*?)"$/ do |arg1, arg2|
+ user = User.find_by_name(arg1)
+ within "#new_team_member" do
+ select user.name, :from => "team_member_user_id"
+ select arg2, :from => "team_member_project_access"
+ end
+ click_button "Save"
+end
+
+Then /^I should see "(.*?)" in team list as "(.*?)"$/ do |arg1, arg2|
+ user = User.find_by_name(arg1)
+ role_id = find(".user_#{user.id} #team_member_project_access").value
+ role_id.should == UsersProject.access_roles[arg2].to_s
+end
+
+Given /^I change "(.*?)" role to "(.*?)"$/ do |arg1, arg2|
+ user = User.find_by_name(arg1)
+ within ".user_#{user.id}" do
+ select arg2, :from => "team_member_project_access"
+ end
+end
+
+Then /^I should see "(.*?)" team profile$/ do |arg1|
+ user = User.find_by_name(arg1)
+ page.should have_content(user.name)
+ page.should have_content(user.email)
+ page.should have_content("To team list")
+end
+
+Then /^I should not see "(.*?)" in team list$/ do |arg1|
+ user = User.find_by_name(arg1)
+ page.should_not have_content(user.name)
+ page.should_not have_content(user.email)
+end
diff --git a/features/step_definitions/project/project_wiki_steps.rb b/features/step_definitions/project/project_wiki_steps.rb
new file mode 100644
index 00000000000..10de38d9ae3
--- /dev/null
+++ b/features/step_definitions/project/project_wiki_steps.rb
@@ -0,0 +1,18 @@
+Given /^I visit project wiki page$/ do
+ visit project_wiki_path(@project, :index)
+end
+
+Given /^I create Wiki page$/ do
+ fill_in "Title", :with => 'Test title'
+ fill_in "Content", :with => '[link test](test)'
+ click_on "Save"
+end
+
+Then /^I should see newly created wiki page$/ do
+ page.should have_content("Test title")
+ page.should have_content("link test")
+
+ click_link "link test"
+
+ page.should have_content("Editing page")
+end
diff --git a/features/step_definitions/project/projects_steps.rb b/features/step_definitions/project/projects_steps.rb
new file mode 100644
index 00000000000..bca1213908d
--- /dev/null
+++ b/features/step_definitions/project/projects_steps.rb
@@ -0,0 +1,68 @@
+include LoginMacros
+
+Given /^I signin as a user$/ do
+ login_as :user
+end
+
+When /^I visit new project page$/ do
+ visit new_project_path
+end
+
+When /^fill project form with valid data$/ do
+ fill_in 'project_name', :with => 'NewProject'
+ fill_in 'project_code', :with => 'NPR'
+ fill_in 'project_path', :with => 'newproject'
+ click_button "Create project"
+end
+
+Then /^I should see project page$/ do
+ current_path.should == project_path(Project.last)
+ page.should have_content('NewProject')
+end
+
+Then /^I should see empty project instuctions$/ do
+ page.should have_content("git init")
+ page.should have_content("git remote")
+ page.should have_content(Project.last.url_to_repo)
+end
+
+Given /^I own project "(.*?)"$/ do |arg1|
+ @project = Factory :project, :name => arg1
+ @project.add_access(@user, :admin)
+end
+
+Given /^I visit project "(.*?)" wall page$/ do |arg1|
+ project = Project.find_by_name(arg1)
+ visit wall_project_path(project)
+end
+
+Then /^I should see project wall note "(.*?)"$/ do |arg1|
+ page.should have_content arg1
+end
+
+Given /^project "(.*?)" has comment "(.*?)"$/ do |arg1, arg2|
+ project = Project.find_by_name(arg1)
+ project.notes.create(:note => arg1, :author => project.users.first)
+end
+
+Given /^I write new comment "(.*?)"$/ do |arg1|
+ fill_in "note_note", :with => arg1
+ click_button "Add Comment"
+end
+
+Given /^I visit project "(.*?)" network page$/ do |arg1|
+ project = Project.find_by_name(arg1)
+ visit graph_project_path(project)
+end
+
+Given /^show me page$/ do
+ save_and_open_page
+end
+
+Given /^page should have network graph$/ do
+ page.should have_content "Project Network Graph"
+ within ".graph" do
+ page.should have_content "stable"
+ page.should have_content "notes_refacto..."
+ end
+end