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: reference with folder loading #2133

Merged
merged 3 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 5 additions & 1 deletion src/Microsoft.OpenApi/Reader/V3/OpenApiV3Deserializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ private static (string, string) GetReferenceIdAndExternalResource(string pointer
var refId = refSegments.Last();
var isExternalResource = !refSegments.First().StartsWith("#", StringComparison.OrdinalIgnoreCase);

string externalResource = isExternalResource ? $"{refSegments.First()}/{refSegments[1].TrimEnd('#')}" : null;
string externalResource = null;
if (isExternalResource)
{
externalResource = pointer.Split('#').FirstOrDefault()?.TrimEnd('#');
}

return (refId, externalResource);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private static (string, string) GetReferenceIdAndExternalResource(string pointer
string externalResource = null;
if (isExternalResource && pointer.Contains('#'))
{
externalResource = $"{refSegments.First()}/{refSegments[1].TrimEnd('#')}";
externalResource = pointer.Split('#').FirstOrDefault()?.TrimEnd('#');
}

return (refId, externalResource);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Models.References;
using Microsoft.OpenApi.Reader;
using Xunit;

namespace Microsoft.OpenApi.Readers.Tests.V31Tests
{
public class OpenApiCompoentsTests
{
[Theory]
[InlineData("./FirstLevel/SecondLevel/ThridLevel/File.json#/components/schemas/ExternalRelativePathModel", "ExternalRelativePathModel", "./FirstLevel/SecondLevel/ThridLevel/File.json")]
[InlineData("File.json#/components/schemas/ExternalSimpleRelativePathModel", "ExternalSimpleRelativePathModel", "File.json")]
[InlineData("A:\\Dir\\File.json#/components/schemas/ExternalAbsWindowsPathModel", "ExternalAbsWindowsPathModel", "A:\\Dir\\File.json")]
[InlineData("/Dir/File.json#/components/schemas/ExternalAbsUnixPathModel", "ExternalAbsUnixPathModel", "/Dir/File.json")]
[InlineData("https://host.lan:1234/path/to/file/resource.json#/components/schemas/ExternalHttpsModel", "ExternalHttpsModel", "https://host.lan:1234/path/to/file/resource.json")]
[InlineData("File.json", "File.json", null)]
public void ParseExternalSchemaReferenceShouldSucceed(string reference, string referenceId, string externalResource)
{
var input = $@"{{
""schemas"": {{
""Model"": {{
""$ref"": ""{reference.Replace("\\", "\\\\")}""
}}
}}
}}
";
var openApiDocument = new OpenApiDocument();

// Act
var components = OpenApiModelFactory.Parse<OpenApiComponents>(input, OpenApiSpecVersion.OpenApi3_1, openApiDocument, out _, "json");

// Assert
var schema = components.Schemas["Model"] as OpenApiSchemaReference;
var expected = new OpenApiSchemaReference(referenceId, openApiDocument, externalResource);
Assert.Equivalent(expected, schema);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -388,5 +388,65 @@ public async Task ParseAdvancedSchemaWithReferenceShouldSucceed()
// Assert
Assert.Equal(expected, actual);
}

[Fact]
public async Task ParseExternalReferenceSchemaShouldSucceed()
{
// Act
var result = await OpenApiDocument.LoadAsync(Path.Combine(SampleFolderPath, "externalReferencesSchema.yaml"));

// Assert
var components = result.Document.Components;

Assert.Equivalent(
new OpenApiDiagnostic()
{
SpecificationVersion = OpenApiSpecVersion.OpenApi3_0
}, result.Diagnostic);

var expectedComponents = new OpenApiComponents
{
Schemas =
{
["RelativePathModel"] = new OpenApiSchema()
{
AllOf =
{
new OpenApiSchemaReference("ExternalRelativePathModel", result.Document, "./FirstLevel/SecondLevel/ThridLevel/File.json")
}
},
["SimpleRelativePathModel"] = new OpenApiSchema()
{
AllOf =
{
new OpenApiSchemaReference("ExternalSimpleRelativePathModel", result.Document, "File.json")
}
},
["AbsoluteWindowsPathModel"] = new OpenApiSchema()
{
AllOf =
{
new OpenApiSchemaReference("ExternalAbsWindowsPathModel", result.Document, @"A:\Dir\File.json")
}
},
["AbsoluteUnixPathModel"] = new OpenApiSchema()
{
AllOf =
{
new OpenApiSchemaReference("ExternalAbsUnixPathModel", result.Document, "/Dir/File.json")
}
},
["HttpsUrlModel"] = new OpenApiSchema()
{
AllOf =
{
new OpenApiSchemaReference("ExternalHttpsModel", result.Document, "https://host.lan:1234/path/to/file/resource.json")
}
}
}
};

Assert.Equivalent(expectedComponents, components);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#schemaObject
openapi: 3.0.0
info:
title: Simple Document
version: 0.9.1
paths: { }
components:
schemas:
RelativePathModel:
allOf:
- $ref: './FirstLevel/SecondLevel/ThridLevel/File.json#/components/schemas/ExternalRelativePathModel'
SimpleRelativePathModel:
allOf:
- $ref: 'File.json#/components/schemas/ExternalSimpleRelativePathModel'
AbsoluteWindowsPathModel:
allOf:
- $ref: 'A:\Dir\File.json#/components/schemas/ExternalAbsWindowsPathModel'
AbsoluteUnixPathModel:
allOf:
- $ref: '/Dir/File.json#/components/schemas/ExternalAbsUnixPathModel'
HttpsUrlModel:
allOf:
- $ref: 'https://host.lan:1234/path/to/file/resource.json#/components/schemas/ExternalHttpsModel'