-
Notifications
You must be signed in to change notification settings - Fork 87
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 #32 from Ladas/add_discriminator_support
Add support for discriminator
- Loading branch information
Showing
11 changed files
with
280 additions
and
1 deletion.
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
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,11 @@ | ||
module OpenAPIParser::Schemas | ||
class Discriminator < Base | ||
# @!attribute [r] property_name | ||
# @return [String, nil] | ||
openapi_attr_value :property_name, schema_key: :propertyName | ||
|
||
# @!attribute [r] mapping | ||
# @return [Hash{String => String] | ||
openapi_attr_value :mapping | ||
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,109 @@ | ||
openapi: "3.0.0" | ||
info: | ||
version: 1.0.0 | ||
title: Swagger Petstore | ||
description: A sample API that uses a petstore as an example to demonstrate features in the OpenAPI 3.0 specification | ||
termsOfService: http://swagger.io/terms/ | ||
contact: | ||
name: Swagger API Team | ||
email: [email protected] | ||
url: http://swagger.io | ||
license: | ||
name: Apache 2.0 | ||
url: https://www.apache.org/licenses/LICENSE-2.0.html | ||
servers: | ||
- url: http://petstore.swagger.io/api | ||
paths: | ||
/save_the_pets: | ||
post: | ||
description: Creates a new pet in the store. Duplicates are allowed | ||
operationId: addPet | ||
requestBody: | ||
description: Pet to add to the store | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/PetBaskets' | ||
responses: | ||
'200': | ||
description: pet response | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
components: | ||
schemas: | ||
PetBaskets: | ||
type: object | ||
properties: | ||
baskets: | ||
type: array | ||
items: | ||
anyOf: | ||
- "$ref": "#/components/schemas/SquirrelBasket" | ||
- "$ref": "#/components/schemas/CatBasket" | ||
discriminator: | ||
propertyName: name | ||
mapping: | ||
cats: "#/components/schemas/CatBasket" | ||
squirrels: "#/components/schemas/SquirrelBasket" | ||
SquirrelBasket: | ||
type: object | ||
required: | ||
- name | ||
properties: | ||
name: | ||
type: string | ||
content: | ||
type: array | ||
items: | ||
"$ref": "#/components/schemas/Squirrel" | ||
Squirrel: | ||
type: object | ||
required: | ||
- name | ||
- nut_stock | ||
properties: | ||
name: | ||
type: string | ||
born_at: | ||
format: date-time | ||
nullable: true | ||
type: string | ||
description: | ||
nullable: true | ||
type: string | ||
nut_stock: | ||
nullable: true | ||
type: integer | ||
CatBasket: | ||
type: object | ||
required: | ||
- name | ||
properties: | ||
name: | ||
type: string | ||
content: | ||
type: array | ||
items: | ||
"$ref": "#/components/schemas/Cat" | ||
Cat: | ||
type: object | ||
required: | ||
- name | ||
- milk_stock | ||
properties: | ||
name: | ||
type: string | ||
born_at: | ||
format: date-time | ||
nullable: true | ||
type: string | ||
description: | ||
nullable: true | ||
type: string | ||
milk_stock: | ||
nullable: true | ||
type: integer | ||
|
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,100 @@ | ||
require_relative '../../spec_helper' | ||
|
||
RSpec.describe OpenAPIParser::Schemas::RequestBody do | ||
let(:root) { OpenAPIParser.parse(petstore_with_discriminator_schema, {}) } | ||
|
||
describe 'discriminator' do | ||
let(:content_type) { 'application/json' } | ||
let(:http_method) { :post } | ||
let(:request_path) { '/save_the_pets' } | ||
let(:request_operation) { root.request_operation(http_method, request_path) } | ||
let(:params) { {} } | ||
|
||
it 'picks correct object based on mapping and succeeds' do | ||
body = { | ||
"baskets" => [ | ||
{ | ||
"name" => "cats", | ||
"content" => [ | ||
{ | ||
"name" => "Mr. Cat", | ||
"born_at" => "2019-05-16T11:37:02.160Z", | ||
"description" => "Cat gentleman", | ||
"milk_stock" => 10 | ||
} | ||
] | ||
}, | ||
] | ||
} | ||
|
||
request_operation.validate_request_body(content_type, body) | ||
end | ||
|
||
it 'picks correct object based on mapping and fails' do | ||
body = { | ||
"baskets" => [ | ||
{ | ||
"name" => "cats", | ||
"content" => [ | ||
{ | ||
"name" => "Mr. Cat", | ||
"born_at" => "2019-05-16T11:37:02.160Z", | ||
"description" => "Cat gentleman", | ||
"nut_stock" => 10 # passing squirrel attribute here, but discriminator still picks cats and fails | ||
} | ||
] | ||
}, | ||
] | ||
} | ||
expect { request_operation.validate_request_body(content_type, body) }.to raise_error do |e| | ||
expect(e.kind_of?(OpenAPIParser::NotExistRequiredKey)).to eq true | ||
expect(e.message).to match("^required parameters milk_stock not exist.*?$") | ||
end | ||
end | ||
|
||
it "throws error when discriminator mapping is not found" do | ||
body = { | ||
"baskets" => [ | ||
{ | ||
"name" => "dogs", | ||
"content" => [ | ||
{ | ||
"name" => "Mr. Dog", | ||
"born_at" => "2019-05-16T11:37:02.160Z", | ||
"description" => "Dog bruiser", | ||
"nut_stock" => 10 | ||
} | ||
] | ||
}, | ||
] | ||
} | ||
|
||
expect { request_operation.validate_request_body(content_type, body) }.to raise_error do |e| | ||
expect(e.kind_of?(OpenAPIParser::NotExistDiscriminatorMappingTarget)).to eq true | ||
expect(e.message).to match("^discriminator mapping key dogs does not exist.*?$") | ||
end | ||
end | ||
|
||
it "throws error if discriminator propertyName is not present on object" do | ||
body = { | ||
"baskets" => [ | ||
{ | ||
"content" => [ | ||
{ | ||
"name" => "Mr. Dog", | ||
"born_at" => "2019-05-16T11:37:02.160Z", | ||
"description" => "Dog bruiser", | ||
"milk_stock" => 10 | ||
} | ||
] | ||
}, | ||
] | ||
} | ||
|
||
expect { request_operation.validate_request_body(content_type, body) }.to raise_error do |e| | ||
expect(e.kind_of?(OpenAPIParser::NotExistDiscriminatorPropertyName)).to eq true | ||
expect(e.message).to match("^discriminator propertyName name does not exist in value.*?$") | ||
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