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:
authorRémy Coutable <remy@rymai.me>2016-01-12 20:10:06 +0300
committerRémy Coutable <remy@rymai.me>2016-01-13 13:59:10 +0300
commit9d7f88c12258e27a189e8229090920db0627e88b (patch)
treebcfde81f33a6b506152f415d3ac337d57a840f3d /features
parentc4511a123401dcf9c2e1b3de732d18463fe9ba90 (diff)
Show referenced MRs & Issues only when the current viewer can access them
Diffstat (limited to 'features')
-rw-r--r--features/project/issues/references.feature31
-rw-r--r--features/steps/project/issues/references.rb106
-rw-r--r--features/steps/shared/note.rb6
-rw-r--r--features/steps/shared/project.rb7
4 files changed, 150 insertions, 0 deletions
diff --git a/features/project/issues/references.feature b/features/project/issues/references.feature
new file mode 100644
index 00000000000..bf7a4c6cb91
--- /dev/null
+++ b/features/project/issues/references.feature
@@ -0,0 +1,31 @@
+@project_issues
+Feature: Project Issues References
+ Background:
+ Given I sign in as "John Doe"
+ And "John Doe" owns public project "Community"
+ And project "Community" has "Public Issue 01" open issue
+ And I logout
+ And I sign in as "Mary Jane"
+ And "Mary Jane" owns private project "Private Library"
+ And project "Private Library" has "Fix NS-01" open merge request
+ And project "Private Library" has "Private Issue 01" open issue
+ And I visit merge request page "Fix NS-01"
+ And I leave a comment referencing issue "Public Issue 01" from "Fix NS-01" merge request
+ And I visit issue page "Private Issue 01"
+ And I leave a comment referencing issue "Public Issue 01" from "Private Issue 01" issue
+ And I logout
+
+ @javascript
+ Scenario: Viewing the public issue as a "John Doe"
+ Given I sign in as "John Doe"
+ When I visit issue page "Public Issue 01"
+ Then I should not see any related merge requests
+ And I should see no notes at all
+
+ @javascript
+ Scenario: Viewing the public issue as "Mary Jane"
+ Given I sign in as "Mary Jane"
+ When I visit issue page "Public Issue 01"
+ Then I should see the "Fix NS-01" related merge request
+ And I should see a note linking to "Fix NS-01" merge request
+ And I should see a note linking to "Private Issue 01" issue
diff --git a/features/steps/project/issues/references.rb b/features/steps/project/issues/references.rb
new file mode 100644
index 00000000000..9c7725e8c14
--- /dev/null
+++ b/features/steps/project/issues/references.rb
@@ -0,0 +1,106 @@
+class Spinach::Features::ProjectIssuesReferences < Spinach::FeatureSteps
+ include SharedAuthentication
+ include SharedNote
+ include SharedProject
+ include SharedUser
+
+ step 'project "Community" has "Public Issue 01" open issue' do
+ project = Project.find_by(name: 'Community')
+ create(:issue,
+ title: 'Public Issue 01',
+ project: project,
+ author: project.users.first,
+ description: '# Description header'
+ )
+ end
+
+ step 'project "Private Library" has "Fix NS-01" open merge request' do
+ project = Project.find_by(name: 'Private Library')
+ create(:merge_request,
+ title: 'Fix NS-01',
+ source_project: project,
+ target_project: project,
+ source_branch: 'fix',
+ target_branch: 'master',
+ author: project.users.first,
+ description: '# Description header'
+ )
+ end
+
+ step 'project "Private Library" has "Private Issue 01" open issue' do
+ project = Project.find_by(name: 'Private Library')
+ create(:issue,
+ title: 'Private Issue 01',
+ project: project,
+ author: project.users.first,
+ description: '# Description header'
+ )
+ end
+
+ step 'I leave a comment referencing issue "Public Issue 01" from "Fix NS-01" merge request' do
+ project = Project.find_by(name: 'Private Library')
+ issue = Issue.find_by!(title: 'Public Issue 01')
+
+ page.within(".js-main-target-form") do
+ fill_in "note[note]", with: "##{issue.to_reference(project)}"
+ click_button "Add Comment"
+ end
+ end
+
+ step 'I leave a comment referencing issue "Public Issue 01" from "Private Issue 01" issue' do
+ project = Project.find_by(name: 'Private Library')
+ issue = Issue.find_by!(title: 'Public Issue 01')
+
+ page.within(".js-main-target-form") do
+ fill_in "note[note]", with: "##{issue.to_reference(project)}"
+ click_button "Add Comment"
+ end
+ end
+
+ step 'I visit merge request page "Fix NS-01"' do
+ mr = MergeRequest.find_by(title: "Fix NS-01")
+ visit namespace_project_merge_request_path(mr.target_project.namespace, mr.target_project, mr)
+ end
+
+ step 'I visit issue page "Private Issue 01"' do
+ issue = Issue.find_by(title: "Private Issue 01")
+ visit namespace_project_issue_path(issue.project.namespace, issue.project, issue)
+ end
+
+ step 'I visit issue page "Public Issue 01"' do
+ issue = Issue.find_by(title: "Public Issue 01")
+ visit namespace_project_issue_path(issue.project.namespace, issue.project, issue)
+ end
+
+ step 'I should not see any related merge requests' do
+ page.within '.issue-details' do
+ expect(page).not_to have_content('.merge-requests')
+ end
+ end
+
+ step 'I should see the "Fix NS-01" related merge request' do
+ page.within '.merge-requests' do
+ expect(page).to have_content("1 Related Merge Request")
+ expect(page).to have_content('Fix NS-01')
+ end
+ end
+
+ step 'I should see a note linking to "Fix NS-01" merge request' do
+ project = Project.find_by(name: 'Community')
+ mr = MergeRequest.find_by(title: 'Fix NS-01')
+ page.within('.notes') do
+ expect(page).to have_content('Mary Jane')
+ expect(page).to have_content("mentioned in merge request #{mr.to_reference(project)}")
+ end
+ end
+
+ step 'I should see a note linking to "Private Issue 01" issue' do
+ project = Project.find_by(name: 'Community')
+ issue = Issue.find_by(title: 'Private Issue 01')
+ page.within('.notes') do
+ expect(page).to have_content('Mary Jane')
+ expect(page).to have_content("mentioned in issue #{issue.to_reference(project)}")
+ end
+ end
+
+end
diff --git a/features/steps/shared/note.rb b/features/steps/shared/note.rb
index f6aabfefeff..6de58c6e2b1 100644
--- a/features/steps/shared/note.rb
+++ b/features/steps/shared/note.rb
@@ -106,6 +106,12 @@ module SharedNote
end
end
+ step 'I should see no notes at all' do
+ page.within('.notes') do
+ expect(page).to_not have_css('.note')
+ end
+ end
+
# Markdown
step 'I leave a comment with a header containing "Comment with a header"' do
diff --git a/features/steps/shared/project.rb b/features/steps/shared/project.rb
index da643bf3ba9..43a15f43470 100644
--- a/features/steps/shared/project.rb
+++ b/features/steps/shared/project.rb
@@ -181,6 +181,13 @@ module SharedProject
project.team << [user, :master]
end
+ step '"Mary Jane" owns private project "Private Library"' do
+ user = user_exists('Mary Jane', username: 'mary_jane')
+ project = Project.find_by(name: 'Private Library')
+ project ||= create(:project, name: 'Private Library', namespace: user.namespace)
+ project.team << [user, :master]
+ end
+
step 'public empty project "Empty Public Project"' do
create :project_empty_repo, :public, name: "Empty Public Project"
end