summaryrefslogtreecommitdiff
path: root/spec/helpers/sidebars_helper_spec.rb
blob: 299e4cb0133f6ff7dfa8591f30e6b25f8e5db515 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SidebarsHelper do
  include Devise::Test::ControllerHelpers

  describe '#sidebar_tracking_attributes_by_object' do
    subject { helper.sidebar_tracking_attributes_by_object(object) }

    before do
      stub_application_setting(snowplow_enabled: true)
    end

    context 'when object is a project' do
      let(:object) { build(:project) }

      it 'returns tracking attrs for project' do
        expect(subject[:data]).to eq({ track_label: 'projects_side_navigation', track_property: 'projects_side_navigation', track_action: 'render' })
      end
    end

    context 'when object is a group' do
      let(:object) { build(:group) }

      it 'returns tracking attrs for group' do
        expect(subject[:data]).to eq({ track_label: 'groups_side_navigation', track_property: 'groups_side_navigation', track_action: 'render' })
      end
    end

    context 'when object is a user' do
      let(:object) { build(:user) }

      it 'returns tracking attrs for user' do
        expect(subject[:data]).to eq({ track_label: 'user_side_navigation', track_property: 'user_side_navigation', track_action: 'render' })
      end
    end

    context 'when object is something else' do
      let(:object) { build(:ci_pipeline) }

      it 'returns no attributes' do
        expect(subject).to eq({})
      end
    end
  end

  describe '#super_sidebar_context' do
    let(:user) { build(:user) }

    subject { helper.super_sidebar_context(user) }

    it 'returns sidebar values from user', :use_clean_rails_memory_store_caching do
      Rails.cache.write(['users', user.id, 'assigned_open_issues_count'], 1)
      Rails.cache.write(['users', user.id, 'assigned_open_merge_requests_count'], 2)
      Rails.cache.write(['users', user.id, 'todos_pending_count'], 3)

      expect(subject).to eq({
        name: user.name,
        username: user.username,
        avatar_url: user.avatar_url,
        assigned_open_issues_count: 1,
        assigned_open_merge_requests_count: 2,
        todos_pending_count: 3,
        issues_dashboard_path: issues_dashboard_path(assignee_username: user.username)
      })
    end
  end
end