about summary refs log tree commit diff
path: root/spec/lib/tag_manager_spec.rb
blob: cbb427a8c1703aca949b930ac6c9190aa14f057d (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
require 'rails_helper'

RSpec.describe TagManager do
  let(:local_domain) { Rails.configuration.x.local_domain }

  describe '#unique_tag' do
    it 'returns a string' do
      expect(TagManager.instance.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(TagManager.instance.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(TagManager.instance.local_id?("tag:#{local_domain};objectId=12:objectType=Status")).to be true
    end

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

  describe '#uri_for' do
    let(:alice)  { Fabricate(:account, username: 'alice') }
    let(:bob)    { Fabricate(:account, username: 'bob') }
    let(:status) { Fabricate(:status, text: 'Hello world', account: alice) }

    subject { TagManager.instance.uri_for(target) }

    context 'Account' do
      let(:target) { alice }

      it 'returns a string' do
        expect(subject).to be_a String
      end
    end

    context 'Status' do
      let(:target) { status }

      it 'returns a string' do
        expect(subject).to be_a String
      end
    end
  end

  describe '#url_for' do
    let(:alice)  { Fabricate(:account, username: 'alice') }
    let(:bob)    { Fabricate(:account, username: 'bob') }
    let(:status) { Fabricate(:status, text: 'Hello world', account: alice) }

    subject { TagManager.instance.url_for(target) }

    context 'Account' do
      let(:target) { alice }

      it 'returns a URL' do
        expect(subject).to be_a String
      end
    end

    context 'Status' do
      let(:target) { status }

      it 'returns a URL' do
        expect(subject).to be_a String
      end
    end
  end
end