about summary refs log tree commit diff
path: root/spec/models/remote_follow_spec.rb
blob: 0b3adc9f90c897d27131ee5993efc5de7ce184e3 (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
75
76
77
78
79
80
81
82
83
84
85
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe RemoteFollow do
  describe '.initialize' do
    let(:remote_follow) { RemoteFollow.new(option) }

    context 'option with acct' do
      let(:option) { { acct: 'hoge@example.com' } }

      it 'sets acct' do
        expect(remote_follow.acct).to eq 'hoge@example.com'
      end
    end

    context 'option without acct' do
      let(:option) { {} }

      it 'does not set acct' do
        expect(remote_follow.acct).to be_nil
      end
    end
  end

  describe '#valid?' do
    let(:remote_follow) { RemoteFollow.new }

    context 'super is falsy' do
      module InvalidSuper
        def valid?
          nil
        end
      end

      before do
        class RemoteFollow
          include InvalidSuper
        end
      end

      it 'returns false without calling #populate_template and #errors' do
        expect(remote_follow).not_to receive(:populate_template)
        expect(remote_follow).not_to receive(:errors)
        expect(remote_follow.valid?).to be false
      end
    end

    context 'super is truthy' do
      module ValidSuper
        def valid?
          true
        end
      end

      before do
        class RemoteFollow
          include ValidSuper
        end
      end

      it 'calls #populate_template and #errors.empty?' do
        expect(remote_follow).to receive(:populate_template)
        expect(remote_follow).to receive_message_chain(:errors, :empty?)
        remote_follow.valid?
      end
    end
  end

  describe '#subscribe_address_for' do
    before do
      allow(remote_follow).to receive(:addressable_template).and_return(addressable_template)
    end

    let(:account)                   { instance_double('Account', local_username_and_domain: local_username_and_domain) }
    let(:addressable_template)      { instance_double('Addressable::Template') }
    let(:local_username_and_domain) { 'hoge@example.com' }
    let(:remote_follow)             { RemoteFollow.new }

    it 'calls Addressable::Template#expand.to_s' do
      expect(addressable_template).to receive_message_chain(:expand, :to_s).with(uri: local_username_and_domain).with(no_args)
      remote_follow.subscribe_address_for(account)
    end
  end
end