summaryrefslogtreecommitdiff
path: root/spec/features/issues/user_sees_live_update_spec.rb
blob: d27cdb774a51bd414d00d86e2fdb74b599dd6af1 (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
51
52
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Issues > User sees live update', :js 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 sibebar 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_css('.issuable-note-warning')
      expect(find('.issuable-sidebar-item.confidentiality')).to have_css('.is-active')
      expect(find('.issuable-sidebar-item.confidentiality')).not_to have_css('.not-active')

      find('.confidential-edit').click
      expect(page).to have_css('.sidebar-item-warning-message')

      within('.sidebar-item-warning-message') do
        find('[data-testid="confidential-toggle"]').click
      end

      wait_for_requests

      visit project_issue_path(project, issue)

      expect(page).not_to have_css('.is-active')
    end
  end
end