-
Notifications
You must be signed in to change notification settings - Fork 476
options[:version] missing, changed to route.version. #438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
07372f5
options[:version] missing, changed to route.options[:version].
texpert b4c0fbd
Defining and using route.version method instead of route.options[:ver…
texpert 948b0de
Fixed string injection error: undefined method `path='.
texpert eca701f
Not good to inject anything into route.path. A copy into the local va…
texpert 1ee9634
Spec for Grape::Endpoint.path_and_definitions_obkect to return a vers…
texpert cee5c7c
Small typo fixed.
texpert 5807bb3
Fixed PathString.build arguments and its specs.
texpert 7c5cf81
Passing only route parameter to PathString (the specs changed accordi…
texpert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,30 @@ | ||
require 'spec_helper' | ||
|
||
describe 'Grape::Endpoint#path_and_definitions' do | ||
before do | ||
module API | ||
module V1 | ||
class Item < Grape::API | ||
version 'v1', using: :path | ||
|
||
resource :item do | ||
get '/' | ||
end | ||
end | ||
end | ||
|
||
class Root < Grape::API | ||
mount API::V1::Item | ||
add_swagger_documentation add_version: true | ||
end | ||
end | ||
|
||
@options = { add_version: true } | ||
@target_routes = API::Root.combined_namespace_routes | ||
end | ||
|
||
it 'is returning a versioned path' do | ||
expect(API::V1::Item.endpoints[0] | ||
.path_and_definition_objects(@target_routes, @options)[0].keys[0]).to eql '/v1/item' | ||
end | ||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it'd be cleaner if this received the entire route? So
def build(route, options = {})
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was my first thought eca701f but the PathString specs would need then some complex route initialization.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can make the request an
OpenStruct
in the spec, it will actually look simpler I think. API > spec anyway.