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

RSpec.describe ApplicationHelper, type: :helper do
  let(:local_domain) { 'local.tld' }

  before do
    stub_const('LOCAL_DOMAIN', local_domain)
  end

  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 '#add_base_url_prefix' do
    it 'returns full API URL from base to suffix' do
      expect(helper.add_base_url_prefix('test')).to eql "#{root_url}api/test"
    end
  end

  describe '#profile_url' do
    pending
  end

  describe '#status_url' do
    pending
  end
end