summaryrefslogtreecommitdiff
path: root/spec/services/boards/visits/create_service_spec.rb
blob: 6baf7ac9debf42e51fffe474c3628253e9fe4716 (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
# frozen_string_literal: true

require 'spec_helper'

describe Boards::Visits::CreateService do
  describe '#execute' do
    let(:user) { create(:user) }

    context 'when a project board' do
      let(:project)       { create(:project) }
      let(:project_board) { create(:board, project: project) }

      subject(:service) { described_class.new(project_board.parent, user) }

      it 'returns nil when there is no user' do
        service.current_user = nil

        expect(service.execute(project_board)).to eq nil
      end

      it 'returns nil when database is read only' do
        allow(Gitlab::Database).to receive(:read_only?) { true }

        expect(service.execute(project_board)).to eq nil
      end

      it 'records the visit' do
        expect(BoardProjectRecentVisit).to receive(:visited!).once

        service.execute(project_board)
      end
    end

    context 'when a group board' do
      let(:group)       { create(:group) }
      let(:group_board) { create(:board, group: group) }

      subject(:service) { described_class.new(group_board.parent, user) }

      it 'returns nil when there is no user' do
        service.current_user = nil

        expect(service.execute(group_board)).to eq nil
      end

      it 'records the visit' do
        expect(BoardGroupRecentVisit).to receive(:visited!).once

        service.execute(group_board)
      end
    end
  end
end