about summary refs log tree commit diff
path: root/spec/helpers/application_helper_spec.rb
blob: 9f68a504aec8732d063f34114b523a2df2e559a1 (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
require 'rails_helper'

RSpec.describe ApplicationHelper, type: :helper do
  let(:local_domain) { Rails.configuration.x.local_domain }

  describe '#unique_tag' do
    it 'returns a string' do
      expect(helper.unique_tag(Time.now, 12, 'Status')).to be_a String
    end
  end

  describe '#unique_tag_to_local_id' do
    it 'returns the ID part' do
      expect(helper.unique_tag_to_local_id("tag:#{local_domain};objectId=12:objectType=Status", 'Status')).to eql '12'
    end
  end

  describe '#local_id?' do
    it 'returns true for a local ID' do
      expect(helper.local_id?("tag:#{local_domain};objectId=12:objectType=Status")).to be true
    end

    it 'returns false for a foreign ID' do
      expect(helper.local_id?('tag:foreign.tld;objectId=12:objectType=Status')).to be false
    end
  end

  describe '#linkify' do
    let(:alice) { Fabricate(:account, username: 'alice') }
    let(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com', url: 'http://example.com/bob') }

    it 'turns mention of remote user into link' do
      status = Fabricate(:status, text: 'Hello @bob@example.com', account: bob)
      status.mentions.create(account: bob)
      expect(helper.linkify(status)).to match('<a href="http://example.com/bob" class="mention">@<span>bob@example.com</span></a>')
    end

    it 'turns mention of local user into link' do
      status = Fabricate(:status, text: 'Hello @alice', account: bob)
      status.mentions.create(account: alice)
      expect(helper.linkify(status)).to match('<a href="http://test.host/users/alice" class="mention">@<span>alice</span></a>')
    end

    it 'leaves mention of unresolvable user alone' do
      status = Fabricate(:status, text: 'Hello @foo', account: bob)
      expect(helper.linkify(status)).to match('Hello @foo')
    end
  end

  describe '#account_from_mentions' do
    let(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com') }
    let(:status) { Fabricate(:status, text: 'Hello @bob@example.com', account: bob) }
    let(:mentions) { [Mention.create(status: status, account: bob)] }

    it 'returns account' do
      expect(helper.account_from_mentions('bob@example.com', mentions)).to eq bob
    end
  end
end