-
Notifications
You must be signed in to change notification settings - Fork 46
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
feat(#285): support OpenAPI 3.0 from HttpOperationScenario #286
Closed
tschlat
wants to merge
1
commit into
citrusframework:main
from
postfinance:issue/285/open_api_scenario_generator_TS
Closed
Changes from all commits
Commits
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 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
25 changes: 25 additions & 0 deletions
25
...t/src/main/java/org/citrusframework/simulator/config/OpenApiScenarioIdGenerationMode.java
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,25 @@ | ||
package org.citrusframework.simulator.config; | ||
|
||
/** | ||
* Enumeration representing the modes for generating scenario IDs in an OpenAPI context. | ||
* This enumeration defines two modes: | ||
* <ul> | ||
* <li>{@link #OPERATION_ID}: Uses the operation ID defined in the OpenAPI specification.</li> | ||
* <li>{@link #FULL_PATH}: Uses the full path of the API endpoint.</li> | ||
* </ul> | ||
* The choice of mode affects how scenario IDs are generated, with important implications: | ||
* <ul> | ||
* <li><b>OPERATION_ID:</b> This mode relies on the {@code operationId} field in the OpenAPI specification, which | ||
* provides a unique identifier for each operation. However, the {@code operationId} is not mandatory in the OpenAPI | ||
* specification. If an {@code operationId} is not specified, this mode cannot be used effectively.</li> | ||
* <li><b>FULL_PATH:</b> This mode constructs scenario IDs based on the entire URL path of the API endpoint, including | ||
* path parameters. This is particularly useful when simulating multiple versions of the same API, as it allows for | ||
* differentiation based on the endpoint path. This mode ensures unique scenario IDs even when {@code operationId} | ||
* is not available or when versioning of APIs needs to be distinguished.</li> | ||
* </ul> | ||
* </p> | ||
*/ | ||
public enum OpenApiScenarioIdGenerationMode { | ||
FULL_PATH, | ||
OPERATION_ID | ||
} |
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
Oops, something went wrong.
Oops, something went wrong.
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.
well, this will not build. but I think it's dependent on citrusframework/citrus#1177, right?