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

whats_new_spec.rb « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 887994106b6d5df07ef97e43c97c13c401574cb7 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# frozen_string_literal: true

require "spec_helper"

RSpec.describe "renders a `whats new` dropdown item", :js, feature_category: :onboarding do
  let_it_be(:user) { create(:user) }

  context 'when not logged in' do
    it 'and on SaaS it renders', :saas do
      visit user_path(user)

      within_testid('super-sidebar') { click_on 'Help' }

      expect(page).to have_button(text: "What's new")
    end

    it "doesn't render what's new" do
      visit user_path(user)

      within_testid('super-sidebar') { click_on 'Help' }

      expect(page).not_to have_button(text: "What's new")
    end
  end

  context 'when logged in' do
    before do
      sign_in(user)
    end

    it 'renders dropdown item when feature enabled' do
      Gitlab::CurrentSettings.update!(whats_new_variant: ApplicationSetting.whats_new_variants[:all_tiers])

      visit root_dashboard_path
      within_testid('super-sidebar') { click_on 'Help' }

      expect(page).to have_button(text: "What's new")
    end

    it 'does not render dropdown item when feature disabled' do
      Gitlab::CurrentSettings.update!(whats_new_variant: ApplicationSetting.whats_new_variants[:disabled])

      visit root_dashboard_path
      within_testid('super-sidebar') { click_on 'Help' }

      expect(page).not_to have_button(text: "What's new")
    end

    it 'shows notification dot and count and removes it once viewed' do
      visit root_dashboard_path

      within_testid('super-sidebar') do
        click_on 'Help'
        button = find_button(text: "What's new")

        has_testid?('notification-dot', visible: true)
        expect(button).to have_selector('.badge-pill')

        button.click
      end

      find('.whats-new-drawer .gl-drawer-close-button').click

      within_testid('super-sidebar') do
        click_on 'Help'
        button = find_button(text: "What's new")

        has_testid?('notification-dot', visible: false)
        expect(button).not_to have_selector('.badge-pill')
      end
    end
  end
end