forked from rails-api/active_model_serializers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rails-api#811 from mateomurphy/scope
Reimplement serialization scope and scope_name
- Loading branch information
Showing
3 changed files
with
99 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
require 'test_helper' | ||
require 'pathname' | ||
|
||
class DefaultScopeNameTest < ActionController::TestCase | ||
TestUser = Struct.new(:name, :admin) | ||
|
||
class UserSerializer < ActiveModel::Serializer | ||
attributes :admin? | ||
def admin? | ||
current_user.admin | ||
end | ||
end | ||
|
||
class UserTestController < ActionController::Base | ||
protect_from_forgery | ||
|
||
before_filter { request.format = :json } | ||
|
||
def current_user | ||
TestUser.new('Pete', false) | ||
end | ||
|
||
def render_new_user | ||
render json: TestUser.new('pete', false), serializer: UserSerializer, adapter: :json_api | ||
end | ||
end | ||
|
||
tests UserTestController | ||
|
||
def test_default_scope_name | ||
get :render_new_user | ||
assert_equal '{"users":{"admin?":false}}', @response.body | ||
end | ||
end | ||
|
||
class SerializationScopeNameTest < ActionController::TestCase | ||
TestUser = Struct.new(:name, :admin) | ||
|
||
class AdminUserSerializer < ActiveModel::Serializer | ||
attributes :admin? | ||
def admin? | ||
current_admin.admin | ||
end | ||
end | ||
|
||
class AdminUserTestController < ActionController::Base | ||
protect_from_forgery | ||
|
||
serialization_scope :current_admin | ||
before_filter { request.format = :json } | ||
|
||
def current_admin | ||
TestUser.new('Bob', true) | ||
end | ||
|
||
def render_new_user | ||
render json: TestUser.new('pete', false), serializer: AdminUserSerializer, adapter: :json_api | ||
end | ||
end | ||
|
||
tests AdminUserTestController | ||
|
||
def test_override_scope_name_with_controller | ||
get :render_new_user | ||
assert_equal '{"admin_users":{"admin?":true}}', @response.body | ||
end | ||
end |