.cache
.circleci
.dependabot
.github
app
bin
config
db
dist
lib
log
nanobox
public
spec
controllers
activitypub
admin
api
auth
concerns
oauth
settings
well_known
about_controller_spec.rb
account_follow_controller_spec.rb
account_unfollow_controller_spec.rb
accounts_controller_spec.rb
application_controller_spec.rb
authorize_interactions_controller_spec.rb
emojis_controller_spec.rb
follower_accounts_controller_spec.rb
following_accounts_controller_spec.rb
home_controller_spec.rb
intents_controller_spec.rb
invites_controller_spec.rb
manifests_controller_spec.rb
media_controller_spec.rb
relationships_controller_spec.rb
remote_follow_controller_spec.rb
remote_interaction_controller_spec.rb
shares_controller_spec.rb
statuses_controller_spec.rb
tags_controller_spec.rb
fabricators
features
fixtures
helpers
lib
mailers
models
policies
presenters
requests
routing
serializers
services
support
validators
views
workers
rails_helper.rb
spec_helper.rb
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.sass-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
crowdin.yml
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Add remote interaction dialog for toots * Change AuthorizeFollow into AuthorizeInteraction, support statuses * Update brakeman.ignore * Adjust how interaction buttons are display on public pages * Fix tests
51 lines
1.2 KiB
Ruby
51 lines
1.2 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe IntentsController, type: :controller 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
|