BigW Consortium Gitlab

groups.rb 9.63 KB
Newer Older
1
class Spinach::Features::Groups < Spinach::FeatureSteps
2 3
  include SharedAuthentication
  include SharedPaths
4
  include SharedGroup
5
  include SharedUser
6
  include Select2Helper
7

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
  step 'gitlab user "Mike"' do
    create(:user, name: "Mike")
  end

  step 'I click link "Add members"' do
    find(:css, 'button.btn-new').click
  end

  step 'I select "Mike" as "Reporter"' do
    user = User.find_by(name: "Mike")

    within ".users-group-form" do
      select2(user.id, from: "#user_ids", multiple: true)
      select "Reporter", from: "access_level"
    end

    click_button "Add users to group"
  end

  step 'I should see "Mike" in team list as "Reporter"' do
    within '.well-list' do
      page.should have_content('Mike')
      page.should have_content('Reporter')
    end
  end

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  step 'I select "sjobs@apple.com" as "Reporter"' do
    within ".users-group-form" do
      select2("sjobs@apple.com", from: "#user_ids", multiple: true)
      select "Reporter", from: "access_level"
    end

    click_button "Add users to group"
  end

  step 'I should see "sjobs@apple.com" in team list as invited "Reporter"' do
    within '.well-list' do
      page.should have_content('sjobs@apple.com')
      page.should have_content('invited')
      page.should have_content('Reporter')
    end
  end

51
  step 'I should see group "Owned" projects list' do
52
    Group.find_by(name: "Owned").projects.each do |project|
53 54 55 56
      page.should have_link project.name
    end
  end

57
  step 'I should see projects activity feed' do
58 59 60
    page.should have_content 'closed issue'
  end

61
  step 'I should see issues from group "Owned" assigned to me' do
randx committed
62 63 64 65 66
    assigned_to_me(:issues).each do |issue|
      page.should have_content issue.title
    end
  end

67
  step 'I should see merge requests from group "Owned" assigned to me' do
randx committed
68
    assigned_to_me(:merge_requests).each do |issue|
Cyril committed
69
      page.should have_content issue.title[0..80]
randx committed
70 71 72
    end
  end

73
  step 'I select user "Mary Jane" from list with role "Reporter"' do
74
    user = User.find_by(name: "Mary Jane") || create(:user, name: "Mary Jane")
75
    click_button 'Add members'
Dmitriy Zaporozhets committed
76
    within ".users-group-form" do
77
      select2(user.id, from: "#user_ids", multiple: true)
78
      select "Reporter", from: "access_level"
79
    end
80
    click_button "Add users to group"
81 82
  end

83
  step 'I should see user "John Doe" in team list' do
Dmitriy Zaporozhets committed
84
    projects_with_access = find(".panel .well-list")
85
    projects_with_access.should have_content("John Doe")
86 87
  end

88
  step 'I should not see user "John Doe" in team list' do
Dmitriy Zaporozhets committed
89
    projects_with_access = find(".panel .well-list")
90 91 92
    projects_with_access.should_not have_content("John Doe")
  end

93
  step 'I should see user "Mary Jane" in team list' do
Dmitriy Zaporozhets committed
94
    projects_with_access = find(".panel .well-list")
95 96 97
    projects_with_access.should have_content("Mary Jane")
  end

98
  step 'I should not see user "Mary Jane" in team list' do
Dmitriy Zaporozhets committed
99
    projects_with_access = find(".panel .well-list")
100 101 102
    projects_with_access.should_not have_content("Mary Jane")
  end

103
  step 'project from group "Owned" has issues assigned to me' do
randx committed
104 105 106 107 108 109
    create :issue,
      project: project,
      assignee: current_user,
      author: current_user
  end

110
  step 'project from group "Owned" has merge requests assigned to me' do
randx committed
111
    create :merge_request,
112 113
      source_project: project,
      target_project: project,
randx committed
114 115 116 117
      assignee: current_user,
      author: current_user
  end

118
  step 'I change group "Owned" name to "new-name"' do
119
    fill_in 'group_name', with: 'new-name'
120
    fill_in 'group_path', with: 'new-name'
121 122 123
    click_button "Save group"
  end

124
  step 'I should see new group "Owned" name' do
125
    within ".navbar-gitlab" do
Dmitriy Zaporozhets committed
126
      page.should have_content "new-name"
127 128 129
    end
  end

130
  step 'I change group "Owned" avatar' do
Steven Thonus committed
131 132
    attach_file(:group_avatar, File.join(Rails.root, 'public', 'gitlab_logo.png'))
    click_button "Save group"
133
    Group.find_by(name: "Owned").reload
Steven Thonus committed
134 135
  end

136
  step 'I should see new group "Owned" avatar' do
137
    Group.find_by(name: "Owned").avatar.should be_instance_of AvatarUploader
138
    Group.find_by(name: "Owned").avatar.url.should == "/uploads/group/avatar/#{ Group.find_by(name:"Owned").id }/gitlab_logo.png"
Steven Thonus committed
139 140 141 142 143 144
  end

  step 'I should see the "Remove avatar" button' do
    page.should have_link("Remove avatar")
  end

145
  step 'I have group "Owned" avatar' do
Steven Thonus committed
146 147
    attach_file(:group_avatar, File.join(Rails.root, 'public', 'gitlab_logo.png'))
    click_button "Save group"
148
    Group.find_by(name: "Owned").reload
Steven Thonus committed
149 150
  end

151
  step 'I remove group "Owned" avatar' do
Steven Thonus committed
152
    click_link "Remove avatar"
153
    Group.find_by(name: "Owned").reload
Steven Thonus committed
154 155
  end

156 157
  step 'I should not see group "Owned" avatar' do
    Group.find_by(name: "Owned").avatar?.should be_false
Steven Thonus committed
158 159 160 161 162 163
  end

  step 'I should not see the "Remove avatar" button' do
    page.should_not have_link("Remove avatar")
  end

164 165 166 167
  step 'I click on the "Remove User From Group" button for "John Doe"' do
    find(:css, 'li', text: "John Doe").find(:css, 'a.btn-remove').click
    # poltergeist always confirms popups.
  end
168

169 170 171
  step 'I click on the "Remove User From Group" button for "Mary Jane"' do
    find(:css, 'li', text: "Mary Jane").find(:css, 'a.btn-remove').click
    # poltergeist always confirms popups.
172
  end
randx committed
173

174 175 176
  step 'I should not see the "Remove User From Group" button for "John Doe"' do
    find(:css, 'li', text: "John Doe").should_not have_selector(:css, 'a.btn-remove')
    # poltergeist always confirms popups.
randx committed
177 178
  end

179 180 181 182 183
  step 'I should not see the "Remove User From Group" button for "Mary Jane"' do
    find(:css, 'li', text: "Mary Jane").should_not have_selector(:css, 'a.btn-remove')
    # poltergeist always confirms popups.
  end

184 185 186 187 188 189 190
  step 'I search for \'Mary\' member' do
    within '.member-search-form' do
      fill_in 'search', with: 'Mary'
      click_button 'Search'
    end
  end

191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
  step 'I click on group milestones' do
    click_link 'Milestones'
  end

  step 'I should see group milestones index page has no milestones' do
    page.should have_content('No milestones to show')
  end

  step 'Group has projects with milestones' do
    group_milestone
  end

  step 'I should see group milestones index page with milestones' do
    page.should have_content('Version 7.2')
    page.should have_content('GL-113')
Douwe Maan committed
206 207
    page.should have_link('2 Issues', href: issues_group_path("owned", milestone_title: "Version 7.2"))
    page.should have_link('3 Merge Requests', href: merge_requests_group_path("owned", milestone_title: "GL-113"))
208 209 210 211 212 213
  end

  step 'I click on one group milestone' do
    click_link 'GL-113'
  end

214
  step 'I should see group milestone with descriptions and expiry date' do
215
    page.should have_content('expires at Aug 20, 2114')
216 217
  end

218 219 220
  step 'I should see group milestone with all issues and MRs assigned to that milestone' do
    page.should have_content('Milestone GL-113')
    page.should have_content('Progress: 0 closed – 4 open')
Vinnie Okada committed
221 222
    page.should have_link(@issue1.title, href: namespace_project_issue_path(@project1.namespace, @project1, @issue1))
    page.should have_link(@mr3.title, href: namespace_project_merge_request_path(@project3.namespace, @project3, @mr3))
223 224
  end

225 226
  protected

227
  def assigned_to_me(key)
randx committed
228 229
    project.send(key).where(assignee_id: current_user.id)
  end
230 231 232 233

  def project
    Group.find_by(name: "Owned").projects.first
  end
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262

  def group_milestone
    group = Group.find_by(name: "Owned")

    @project1 = create :project,
                 group: group
    project2 = create :project,
                 path: 'gitlab-ci',
                 group: group
    @project3 = create :project,
                 path: 'cookbook-gitlab',
                 group: group
    milestone1_project1 = create :milestone,
                            title: "Version 7.2",
                            project: @project1
    milestone1_project2 = create :milestone,
                            title: "Version 7.2",
                            project: project2
    milestone1_project3 = create :milestone,
                            title: "Version 7.2",
                            project: @project3
    milestone2_project1 = create :milestone,
                            title: "GL-113",
                            project: @project1
    milestone2_project2 = create :milestone,
                            title: "GL-113",
                            project: project2
    milestone2_project3 = create :milestone,
                            title: "GL-113",
263
                            project: @project3,
264
                            due_date: '2114-08-20',
265
                            description: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry'
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
    @issue1 = create :issue,
               project: @project1,
               assignee: current_user,
               author: current_user,
               milestone: milestone2_project1
    issue2 = create :issue,
               project: project2,
               assignee: current_user,
               author: current_user,
               milestone: milestone1_project2
    issue3 = create :issue,
               project: @project3,
               assignee: current_user,
               author: current_user,
               milestone: milestone1_project1
    mr1 = create :merge_request,
            source_project: @project1,
            target_project: @project1,
            assignee: current_user,
            author: current_user,
            milestone: milestone2_project1
    mr2 = create :merge_request,
            source_project: project2,
            target_project: project2,
            assignee: current_user,
            author: current_user,
            milestone: milestone2_project2
    @mr3 = create :merge_request,
            source_project: @project3,
            target_project: @project3,
            assignee: current_user,
            author: current_user,
            milestone: milestone2_project3
  end
300
end