-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow parsing Entity with no endpoint (#12)
* Allow parsing Entity with no endpoint * Move ThisApi to shared context * Test new conditional branch in Parser * Update changelog * Require all files in spec/support by default
- Loading branch information
1 parent
822d9ec
commit 8e074eb
Showing
6 changed files
with
90 additions
and
64 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
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,20 @@ | ||
require 'spec_helper' | ||
require_relative '../../../spec/support/shared_contexts/this_api' | ||
|
||
describe GrapeSwagger::Entity::Parser do | ||
include_context 'this api' | ||
|
||
describe '#call' do | ||
subject(:parsed_entity) { described_class.new(ThisApi::Entities::Something, endpoint).call } | ||
|
||
context 'when no endpoint is passed' do | ||
let(:endpoint) { nil } | ||
|
||
it 'parses the model with the correct :using definition' do | ||
expect(parsed_entity[:kind]['$ref']).to eq('#/definitions/Kind') | ||
expect(parsed_entity[:kind2]['$ref']).to eq('#/definitions/Kind') | ||
expect(parsed_entity[:kind3]['$ref']).to eq('#/definitions/Kind') | ||
end | ||
end | ||
end | ||
end |
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,65 @@ | ||
shared_context 'this api' do | ||
before :all do | ||
module ThisApi | ||
module Entities | ||
class Kind < Grape::Entity | ||
expose :title, documentation: { type: 'string', desc: 'Title of the kind.' } | ||
end | ||
|
||
class Relation < Grape::Entity | ||
expose :name, documentation: { type: 'string', desc: 'Name' } | ||
end | ||
class Tag < Grape::Entity | ||
expose :name, documentation: { type: 'string', desc: 'Name' } | ||
end | ||
class Error < Grape::Entity | ||
expose :code, documentation: { type: 'string', desc: 'Error code' } | ||
expose :message, documentation: { type: 'string', desc: 'Error message' } | ||
end | ||
|
||
class Something < Grape::Entity | ||
expose :text, documentation: { type: 'string', desc: 'Content of something.' } | ||
expose :colors, documentation: { type: 'string', desc: 'Colors', is_array: true } | ||
expose :kind, using: Kind, documentation: { type: 'ThisApi::Kind', desc: 'The kind of this something.' } | ||
expose :kind2, using: Kind, documentation: { desc: 'Secondary kind.' } | ||
expose :kind3, using: ThisApi::Entities::Kind, documentation: { desc: 'Tertiary kind.' } | ||
expose :tags, using: ThisApi::Entities::Tag, documentation: { desc: 'Tags.', is_array: true } | ||
expose :relation, using: ThisApi::Entities::Relation, documentation: { type: 'ThisApi::Relation', desc: 'A related model.' } | ||
end | ||
end | ||
|
||
class ResponseModelApi < Grape::API | ||
format :json | ||
desc 'This returns something', | ||
is_array: true, | ||
http_codes: [{ code: 200, message: 'OK', model: Entities::Something }] | ||
get '/something' do | ||
something = OpenStruct.new text: 'something' | ||
present something, with: Entities::Something | ||
end | ||
|
||
# something like an index action | ||
desc 'This returns something or an error', | ||
entity: Entities::Something, | ||
http_codes: [ | ||
{ code: 200, message: 'OK', model: Entities::Something }, | ||
{ code: 403, message: 'Refused to return something', model: Entities::Error } | ||
] | ||
params do | ||
optional :id, type: Integer | ||
end | ||
get '/something/:id' do | ||
if params[:id] == 1 | ||
something = OpenStruct.new text: 'something' | ||
present something, with: Entities::Something | ||
else | ||
error = OpenStruct.new code: 'some_error', message: 'Some error' | ||
present error, with: Entities::Error | ||
end | ||
end | ||
|
||
add_swagger_documentation | ||
end | ||
end | ||
end | ||
end |