-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
[TypeSpec Requirement] Improve check if OpenAPI cannot be parsed as JSON #27341
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
6d993f9
Test new spec with invalid json
mikeharder 327d363
Add commit parameters for easier local testing
mikeharder dc7859f
Merge branch 'main' into tsr-invalid-json
mikeharder c208df0
Catch exception parsing OpenAPI as JSON
mikeharder 3f22f44
Revert "Test new spec with invalid json"
mikeharder 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
[CmdletBinding()] | ||
param ( | ||
[Parameter(Position = 0)] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added to enable testing script on other commits |
||
[string] $BaseCommitish = "HEAD^", | ||
[Parameter(Position = 1)] | ||
[string] $TargetCommitish = "HEAD" | ||
|
||
) | ||
Set-StrictMode -Version 3 | ||
|
||
|
@@ -9,7 +14,7 @@ Set-StrictMode -Version 3 | |
$repoPath = Resolve-Path "$PSScriptRoot/../.." | ||
$pathsWithErrors = @() | ||
|
||
$filesToCheck = @(Get-ChangedSwaggerFiles).Where({ | ||
$filesToCheck = (Get-ChangedSwaggerFiles (Get-ChangedFiles $BaseCommitish $TargetCommitish)).Where({ | ||
($_ -notmatch "/(examples|scenarios|restler|common|common-types)/") -and | ||
($_ -match "specification/[^/]+/(data-plane|resource-manager).*?/(preview|stable)/[^/]+/[^/]+\.json$") | ||
}) | ||
|
@@ -30,15 +35,21 @@ else { | |
foreach ($file in $filesToCheck) { | ||
LogInfo "Checking $file" | ||
|
||
$jsonContent = Get-Content (Join-Path $repoPath $file) | ConvertFrom-Json -AsHashtable | ||
try { | ||
$jsonContent = Get-Content (Join-Path $repoPath $file) | ConvertFrom-Json -AsHashtable | ||
|
||
if ($null -ne ${jsonContent}?["info"]?["x-typespec-generated"]) { | ||
LogInfo " OpenAPI was generated from TypeSpec (contains '/info/x-typespec-generated')" | ||
# Skip further checks, since spec is already using TypeSpec | ||
continue | ||
if ($null -ne ${jsonContent}?["info"]?["x-typespec-generated"]) { | ||
LogInfo " OpenAPI was generated from TypeSpec (contains '/info/x-typespec-generated')" | ||
# Skip further checks, since spec is already using TypeSpec | ||
continue | ||
} | ||
else { | ||
LogInfo " OpenAPI was not generated from TypeSpec (missing '/info/x-typespec-generated')" | ||
} | ||
} | ||
else { | ||
LogInfo " OpenAPI was not generated from TypeSpec (missing '/info/x-typespec-generated')" | ||
catch { | ||
LogWarning " OpenAPI cannot be parsed as JSON, so assuming not generated from TypeSpec" | ||
LogWarning " $_" | ||
} | ||
|
||
# Extract path between "specification/" and "/(preview|stable)" | ||
|
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.
Added to enable testing scripts on other commits