Browse Source

Fix tests

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
6426819b6f
6 changed files with 18 additions and 6 deletions
  1. +6
    -0
      app/controllers/application_controller.rb
  2. +4
    -0
      app/services/fan_out_on_write_service.rb
  3. +1
    -1
      app/views/api/accounts/show.rabl
  4. +2
    -2
      app/views/api/statuses/show.rabl
  5. +1
    -1
      config/database.yml
  6. +4
    -2
      config/initializers/rack-mini-profiler.rb

+ 6
- 0
app/controllers/application_controller.rb View File

@ -9,4 +9,10 @@ class ApplicationController < ActionController::Base
Rack::MiniProfiler.authorize_request Rack::MiniProfiler.authorize_request
end end
end end
protected
def current_account
current_user.try(:account)
end
end end

+ 4
- 0
app/services/fan_out_on_write_service.rb View File

@ -54,6 +54,10 @@ class FanOutOnWriteService < BaseService
def current_user def current_user
@account.user @account.user
end end
def current_account
@account
end
end end
Rabl::Renderer.new('api/statuses/show', status, view_path: 'app/views', format: :json, scope: rabl_scope.new(receiver)).render Rabl::Renderer.new('api/statuses/show', status, view_path: 'app/views', format: :json, scope: rabl_scope.new(receiver)).render

+ 1
- 1
app/views/api/accounts/show.rabl View File

@ -7,4 +7,4 @@ node(:avatar) { |account| asset_url(account.avatar.url(:large, false))
node(:followers_count) { |account| account.followers.count } node(:followers_count) { |account| account.followers.count }
node(:following_count) { |account| account.following.count } node(:following_count) { |account| account.following.count }
node(:statuses_count) { |account| account.statuses.count } node(:statuses_count) { |account| account.statuses.count }
node(:following) { |account| current_user.account.following?(account) }
node(:following) { |account| current_account.following?(account) }

+ 2
- 2
app/views/api/statuses/show.rabl View File

@ -6,8 +6,8 @@ node(:content) { |status| content_for_status(status) }
node(:url) { |status| url_for_target(status) } node(:url) { |status| url_for_target(status) }
node(:reblogs_count) { |status| status.reblogs_count } node(:reblogs_count) { |status| status.reblogs_count }
node(:favourites_count) { |status| status.favourites_count } node(:favourites_count) { |status| status.favourites_count }
node(:favourited) { |status| current_user.account.favourited?(status) }
node(:reblogged) { |status| current_user.account.reblogged?(status) }
node(:favourited) { |status| current_account.favourited?(status) }
node(:reblogged) { |status| current_account.reblogged?(status) }
child :reblog => :reblog do child :reblog => :reblog do
extends('api/statuses/show') extends('api/statuses/show')

+ 1
- 1
config/database.yml View File

@ -1,6 +1,6 @@
default: &default default: &default
adapter: postgresql adapter: postgresql
pool: 15
pool: 17
timeout: 5000 timeout: 5000
encoding: unicode encoding: unicode

+ 4
- 2
config/initializers/rack-mini-profiler.rb View File

@ -1,2 +1,4 @@
Rails.application.middleware.swap(Rack::Deflater, Rack::MiniProfiler)
Rails.application.middleware.swap(Rack::MiniProfiler, Rack::Deflater)
unless Rails.env == 'test'
Rails.application.middleware.swap(Rack::Deflater, Rack::MiniProfiler)
Rails.application.middleware.swap(Rack::MiniProfiler, Rack::Deflater)
end

Loading…
Cancel
Save