~cytrogen/masto-fe

ref: 685270f3f7ea6d4a8a48ec641e8fdfd9fc2e2d7f masto-fe/spec/controllers/intents_controller_spec.rb -rw-r--r-- 1.2 KiB
685270f3 — Claire [Glitch] Fix clicking “Explore” or “Live feeds” column headers to scroll in advanced mode 2 years ago
                                                                                
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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe IntentsController do
  render_views

  let(:user) { Fabricate(:user) }

  before { sign_in user, scope: :user }

  describe 'GET #show' do
    subject { get :show, params: { uri: uri } }

    context 'when schema is web+mastodon' do
      context 'when host is follow' do
        let(:uri) { 'web+mastodon://follow?uri=test' }

        it { is_expected.to redirect_to authorize_interaction_path(uri: 'test') }
      end

      context 'when host is share' do
        let(:uri) { 'web+mastodon://share?text=test' }

        it { is_expected.to redirect_to share_path(text: 'test') }
      end

      context 'when host is none of the above' do
        let(:uri) { 'web+mastodon://test' }

        it { is_expected.to have_http_status 404 }
      end
    end

    context 'when schema is not web+mastodon' do
      let(:uri) { 'api+mastodon://test.com' }

      it { is_expected.to have_http_status 404 }
    end

    context 'when uri param is blank' do
      let(:uri) { '' }

      it { is_expected.to have_http_status 404 }
    end

    context 'when uri is invalid' do
      let(:uri) { 'invalid uri://test.com' }

      it { is_expected.to have_http_status 404 }
    end
  end
end