~cytrogen/masto-fe

ref: b4e739ff0f64c601973762ac986c0e63092d2d7e masto-fe/spec/controllers/authorize_interactions_controller_spec.rb -rw-r--r-- 1.9 KiB
b4e739ff — Claire Change interaction modal in web UI (#26075) 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
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true

require 'rails_helper'

describe AuthorizeInteractionsController do
  render_views

  describe 'GET #show' do
    describe 'when signed out' do
      it 'redirects to sign in page' do
        get :show

        expect(response).to redirect_to(new_user_session_path)
      end
    end

    describe 'when signed in' do
      let(:user) { Fabricate(:user) }

      before do
        sign_in(user)
      end

      it 'renders error without acct param' do
        get :show

        expect(response).to have_http_status(404)
      end

      it 'renders error when account cant be found' do
        service = instance_double(ResolveAccountService)
        allow(ResolveAccountService).to receive(:new).and_return(service)
        allow(service).to receive(:call).with('missing@hostname').and_return(nil)

        get :show, params: { acct: 'acct:missing@hostname' }

        expect(response).to have_http_status(404)
        expect(service).to have_received(:call).with('missing@hostname')
      end

      it 'sets resource from url' do
        account = Fabricate(:account)
        service = instance_double(ResolveURLService)
        allow(ResolveURLService).to receive(:new).and_return(service)
        allow(service).to receive(:call).with('http://example.com').and_return(account)

        get :show, params: { acct: 'http://example.com' }

        expect(response).to have_http_status(302)
        expect(assigns(:resource)).to eq account
      end

      it 'sets resource from acct uri' do
        account = Fabricate(:account)
        service = instance_double(ResolveAccountService)
        allow(ResolveAccountService).to receive(:new).and_return(service)
        allow(service).to receive(:call).with('found@hostname').and_return(account)

        get :show, params: { acct: 'acct:found@hostname' }

        expect(response).to have_http_status(302)
        expect(assigns(:resource)).to eq account
      end
    end
  end
end