about summary refs log tree commit diff
path: root/spec/models/status_pin_spec.rb
blob: c4ebf96da9f2075a780fb2e69e0c3846e52ec15d (plain) (blame)
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
74
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe StatusPin, type: :model do
  describe 'validations' do
    it 'allows pins of own statuses' do
      account = Fabricate(:account)
      status  = Fabricate(:status, account: account)

      expect(StatusPin.new(account: account, status: status).save).to be true
    end

    it 'does not allow pins of statuses by someone else' do
      account = Fabricate(:account)
      status  = Fabricate(:status)

      expect(StatusPin.new(account: account, status: status).save).to be false
    end

    it 'does not allow pins of reblogs' do
      account = Fabricate(:account)
      status  = Fabricate(:status, account: account)
      reblog  = Fabricate(:status, reblog: status)

      expect(StatusPin.new(account: account, status: reblog).save).to be false
    end

    it 'does allow pins of direct statuses' do
      account = Fabricate(:account)
      status  = Fabricate(:status, account: account, visibility: :private)

      expect(StatusPin.new(account: account, status: status).save).to be true
    end

    it 'does not allow pins of direct statuses' do
      account = Fabricate(:account)
      status  = Fabricate(:status, account: account, visibility: :direct)

      expect(StatusPin.new(account: account, status: status).save).to be false
    end

    max_pins = 5
    it 'does not allow pins above the max' do
      account = Fabricate(:account)
      status = []

      (max_pins + 1).times do |i|
        status[i] = Fabricate(:status, account: account)
      end

      max_pins.times do |i|
        expect(StatusPin.new(account: account, status: status[i]).save).to be true
      end

      expect(StatusPin.new(account: account, status: status[max_pins]).save).to be false
    end

    it 'allows pins above the max for remote accounts' do
      account = Fabricate(:account, domain: 'remote.test', username: 'bob', url: 'https://remote.test/')
      status = []

      (max_pins + 1).times do |i|
        status[i] = Fabricate(:status, account: account)
      end

      max_pins.times do |i|
        expect(StatusPin.new(account: account, status: status[i]).save).to be true
      end

      expect(StatusPin.new(account: account, status: status[max_pins]).save).to be true
    end
  end
end