Skip to content
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

fix: always serialize security schemes in components #2278

Merged
merged 3 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions src/Microsoft.OpenApi/Models/OpenApiComponents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.OpenApi.Interfaces;
using Microsoft.OpenApi.Models.Interfaces;
using Microsoft.OpenApi.Models.References;
Expand Down Expand Up @@ -110,7 +111,7 @@
// however if they have cycles, then we will need a component rendered
if (writer.GetSettings().InlineLocalReferences)
{
RenderComponents(writer, (writer, element) => element.SerializeAsV31(writer));
RenderComponents(writer, (writer, element) => element.SerializeAsV31(writer), OpenApiSpecVersion.OpenApi3_1);
return;
}

Expand Down Expand Up @@ -148,7 +149,7 @@
// however if they have cycles, then we will need a component rendered
if (writer.GetSettings().InlineLocalReferences)
{
RenderComponents(writer, (writer, element) => element.SerializeAsV3(writer));
RenderComponents(writer, (writer, element) => element.SerializeAsV3(writer), OpenApiSpecVersion.OpenApi3_0);
return;
}

Expand All @@ -160,7 +161,7 @@
/// <summary>
/// Serialize <see cref="OpenApiComponents"/>.
/// </summary>
private void SerializeInternal(IOpenApiWriter writer, OpenApiSpecVersion version,

Check warning on line 164 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Refactor this method to reduce its Cognitive Complexity from 27 to the 15 allowed. (https://rules.sonarsource.com/csharp/RSPEC-3776)

Check warning on line 164 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Refactor this method to reduce its Cognitive Complexity from 27 to the 15 allowed. (https://rules.sonarsource.com/csharp/RSPEC-3776)

Check warning on line 164 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Refactor this method to reduce its Cognitive Complexity from 27 to the 15 allowed. (https://rules.sonarsource.com/csharp/RSPEC-3776)

Check warning on line 164 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Refactor this method to reduce its Cognitive Complexity from 27 to the 15 allowed. (https://rules.sonarsource.com/csharp/RSPEC-3776)
Action<IOpenApiWriter, IOpenApiSerializable> callback, Action<IOpenApiWriter, IOpenApiReferenceHolder> action)
{
// Serialize each referenceable object as full object without reference if the reference in the object points to itself.
Expand Down Expand Up @@ -315,14 +316,27 @@
writer.WriteEndObject();
}

private void RenderComponents(IOpenApiWriter writer, Action<IOpenApiWriter, IOpenApiSerializable> callback)
private void RenderComponents(IOpenApiWriter writer, Action<IOpenApiWriter, IOpenApiSerializable> callback, OpenApiSpecVersion version)
{
var loops = writer.GetSettings().LoopDetector.Loops;
writer.WriteStartObject();
if (loops.TryGetValue(typeof(OpenApiSchema), out var schemas))

Check warning on line 323 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Remove the unused local variable 'schemas'. (https://rules.sonarsource.com/csharp/RSPEC-1481)

Check warning on line 323 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Remove the unused local variable 'schemas'. (https://rules.sonarsource.com/csharp/RSPEC-1481)

Check warning on line 323 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Remove the unused local variable 'schemas'. (https://rules.sonarsource.com/csharp/RSPEC-1481)

Check warning on line 323 in src/Microsoft.OpenApi/Models/OpenApiComponents.cs

View workflow job for this annotation

GitHub Actions / Build

Remove the unused local variable 'schemas'. (https://rules.sonarsource.com/csharp/RSPEC-1481)
{
writer.WriteOptionalMap(OpenApiConstants.Schemas, Schemas, callback);
}
// always render security schemes as inlining of security requirement objects is not allowed in the spec
if (SecuritySchemes is not null && SecuritySchemes.Any())
{
writer.WriteOptionalMap(
OpenApiConstants.SecuritySchemes,
SecuritySchemes,
(w, key, component) =>
{
if (version is OpenApiSpecVersion.OpenApi3_1)
component.SerializeAsV31(writer);
component.SerializeAsV3(writer);
});
}
writer.WriteEndObject();
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down Expand Up @@ -51,6 +51,10 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

<None Update="Models\Samples\docWithSecurityScheme.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

<None Update="PublicApi\PublicApi.approved.txt" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>
43 changes: 43 additions & 0 deletions test/Microsoft.OpenApi.Tests/Models/OpenApiDocumentTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1848,7 +1848,7 @@
}

[Fact]
public void SerializeExamplesDoesNotThrowNullReferenceException()

Check warning on line 1851 in test/Microsoft.OpenApi.Tests/Models/OpenApiDocumentTests.cs

View workflow job for this annotation

GitHub Actions / Build

Add at least one assertion to this test case. (https://rules.sonarsource.com/csharp/RSPEC-2699)

Check warning on line 1851 in test/Microsoft.OpenApi.Tests/Models/OpenApiDocumentTests.cs

View workflow job for this annotation

GitHub Actions / Build

Add at least one assertion to this test case. (https://rules.sonarsource.com/csharp/RSPEC-2699)
{
OpenApiDocument doc = new OpenApiDocument
{
Expand Down Expand Up @@ -2179,5 +2179,48 @@
Assert.Equal("version", actual.ParamName);
Assert.Equal(version, actual.ActualValue);
}

[Fact]
public async Task SerializeDocWithSecuritySchemeWithInlineRefererencesWorks()
{
var expected = @"openapi: 3.0.4
info:
title: Repair Service
version: 1.0.0
servers:
- url: https://pluginrentu.azurewebsites.net/api
paths:
/repairs:
get:
summary: List all repairs with oauth
description: Returns a list of repairs with their details and images
operationId: listRepairs
responses:
'200':
description: A list of repairs
content:
application/json:
schema:
type: object
security:
- oAuth2AuthCode: [ ]
components:
securitySchemes:
oAuth2AuthCode:
type: oauth2
description: OAuth configuration for the repair service
flows:
authorizationCode:
authorizationUrl: https://login.microsoftonline.com/2f13b28c-bd4d-43e2-8ae6-48594aaba125/oauth2/v2.0/authorize
tokenUrl: https://login.microsoftonline.com/2f13b28c-bd4d-43e2-8ae6-48594aaba125/oauth2/v2.0/token
scopes:
api://a2a7226d-e8d1-4ded-8c53-dd4c136ff456/repairs_read: Read repair records";

var doc = (await OpenApiDocument.LoadAsync("Models/Samples/docWithSecurityScheme.yaml", SettingsFixture.ReaderSettings)).Document;
var stringWriter = new StringWriter();
doc.SerializeAsV3(new OpenApiYamlWriter(stringWriter, new OpenApiWriterSettings { InlineLocalReferences = true }));
var actual = stringWriter.ToString();
Assert.Equal(expected.MakeLineBreaksEnvironmentNeutral(), actual.MakeLineBreaksEnvironmentNeutral());
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
openapi: 3.0.0
info:
title: Repair Service
version: 1.0.0
servers:
- url: https://pluginrentu.azurewebsites.net/api
components:
securitySchemes:
oAuth2AuthCode:
type: oauth2
description: OAuth configuration for the repair service
flows:
authorizationCode:
authorizationUrl: https://login.microsoftonline.com/2f13b28c-bd4d-43e2-8ae6-48594aaba125/oauth2/v2.0/authorize
tokenUrl: https://login.microsoftonline.com/2f13b28c-bd4d-43e2-8ae6-48594aaba125/oauth2/v2.0/token
scopes:
api://a2a7226d-e8d1-4ded-8c53-dd4c136ff456/repairs_read: Read repair records
paths:
/repairs:
get:
operationId: listRepairs
summary: List all repairs with oauth
description: Returns a list of repairs with their details and images
security:
- oAuth2AuthCode: []
responses:
'200':
description: A list of repairs
content:
application/json:
schema:
type: object