summaryrefslogtreecommitdiff
path: root/spec/lib/banzai/reference_parser/mentioned_user_parser_spec.rb
blob: f117d796dadfb8f33013d6341ea3ca7a18e54834 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Banzai::ReferenceParser::MentionedUserParser do
  include ReferenceParserHelpers

  let(:group) { create(:group, :private) }
  let(:user) { create(:user) }
  let(:new_user) { create(:user) }
  let(:project) { create(:project, group: group, creator: user) }
  let(:link) { empty_html_link }

  subject { described_class.new(Banzai::RenderContext.new(project, new_user)) }

  describe '#gather_references' do
    context 'when the link has a data-group attribute' do
      context 'using an existing group ID' do
        before do
          link['data-group'] = project.group.id.to_s
          group.add_developer(new_user)
        end

        it 'returns empty list of users' do
          expect_gathered_references(subject.gather_references([link]), [], [link], [link])
        end
      end
    end

    context 'when the link has a data-project attribute' do
      context 'using an existing project ID' do
        before do
          link['data-project'] = project.id.to_s
          project.add_developer(new_user)
        end

        it 'returns empty list of users' do
          expect_gathered_references(subject.gather_references([link]), [], [link], [link])
        end
      end
    end

    context 'when the link has a data-user attribute' do
      it 'returns an Array of users' do
        link['data-user'] = user.id.to_s

        expect_gathered_references(subject.gather_references([link]), [user], [link], [link])
      end
    end
  end
end