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

user_sees_live_update_spec.rb « issues « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0822542ca022bea20dc529ca21dfb5e613491e88 (plain)
1
2
3
4
5
6
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Issues > User sees live update', :js, feature_category: :team_planning do
  let_it_be(:project) { create(:project, :public) }
  let_it_be(:user) { project.creator }

  before do
    sign_in(user)
  end

  describe 'title issue#show' do
    it 'updates the title' do
      issue = create(:issue, author: user, assignees: [user], project: project, title: 'new title')

      visit project_issue_path(project, issue)

      expect(page).to have_text("new title")

      issue.update!(title: "updated title")
      wait_for_requests

      expect(page).to have_text("updated title")
    end
  end

  describe 'confidential issue#show' do
    it 'shows confidential sidebar information as confidential and can be turned off' do
      issue = create(:issue, :confidential, project: project)

      visit project_issue_path(project, issue)

      expect(page).to have_text('This is a confidential issue. People without permission will never get a notification.')

      within '.block.confidentiality' do
        click_button 'Edit'
      end

      expect(page).to have_text('You are going to turn off the confidentiality. This means everyone will be able to see and leave a comment on this issue.')

      click_button 'Turn off'

      visit project_issue_path(project, issue)

      expect(page).not_to have_css('.gl-badge', text: 'Confidential')
      expect(page).not_to have_text('This is a confidential issue. People without permission will never get a notification.')
    end
  end
end