.circleci
.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
remote_follow_controller_spec.rb
remote_interaction_controller_spec.rb
remote_unfollows_controller_spec.rb
shares_controller_spec.rb
statuses_controller_spec.rb
stream_entries_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
.scss-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
docker-compose.yml
jest.config.js
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
53 lines
1.4 KiB
Ruby
53 lines
1.4 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe FollowerAccountsController do
|
|
render_views
|
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
let(:follower0) { Fabricate(:account) }
|
|
let(:follower1) { Fabricate(:account) }
|
|
|
|
describe 'GET #index' do
|
|
let!(:follow0) { follower0.follow!(alice) }
|
|
let!(:follow1) { follower1.follow!(alice) }
|
|
|
|
context 'when format is html' do
|
|
subject(:response) { get :index, params: { account_username: alice.username, format: :html } }
|
|
|
|
it 'assigns follows' do
|
|
expect(response).to have_http_status(200)
|
|
|
|
assigned = assigns(:follows).to_a
|
|
expect(assigned.size).to eq 2
|
|
expect(assigned[0]).to eq follow1
|
|
expect(assigned[1]).to eq follow0
|
|
end
|
|
end
|
|
|
|
context 'when format is json' do
|
|
subject(:response) { get :index, params: { account_username: alice.username, page: page, format: :json } }
|
|
subject(:body) { JSON.parse(response.body) }
|
|
|
|
context 'with page' do
|
|
let(:page) { 1 }
|
|
|
|
it 'returns followers' do
|
|
expect(response).to have_http_status(200)
|
|
expect(body['totalItems']).to eq 2
|
|
expect(body['partOf']).to be_present
|
|
end
|
|
end
|
|
|
|
context 'without page' do
|
|
let(:page) { nil }
|
|
|
|
it 'returns followers' do
|
|
expect(response).to have_http_status(200)
|
|
expect(body['totalItems']).to eq 2
|
|
expect(body['partOf']).to be_blank
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|