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

Result factory methods uses IEnumerable instead of List for "array" type responses #100

Merged
merged 3 commits into from
Apr 14, 2021
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
3 changes: 2 additions & 1 deletion .github/workflows/pre-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ jobs:
with:
dotnet-version: '5.0.x'

- name: 📐 Ensure nuget.org added as package source
- name: 📐 Ensure nuget.org added as package source on Windows
if: matrix.os == 'windows-latest'
run: dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org --configfile $env:APPDATA\NuGet\NuGet.Config
continue-on-error: true

- name: 🔁 Restore packages
run: dotnet restore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ public static class GenerateAtcCodingRulesHelper
### Static Fields


#### FileNameDirectoryBuildProps

```csharp
string FileNameDirectoryBuildProps
```
#### FileNameEditorConfig

```csharp
Expand Down
1 change: 1 addition & 0 deletions docs/CodeDoc/Atc.Rest.ApiGenerator/IndexExtended.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
- HasSharedResponseContract(OpenApiDocument document, List<ApiOperationSchemaMap> operationSchemaMappings, string focusOnSegmentName)
- [GenerateAtcCodingRulesHelper](Atc.Rest.ApiGenerator.Helpers.md#generateatccodingruleshelper)
- Static Fields
- string FileNameDirectoryBuildProps
- string FileNameEditorConfig
- Static Methods
- Generate(string outputSlnPath, DirectoryInfo outputSrcPath, DirectoryInfo outputTestPath)
Expand Down
1 change: 1 addition & 0 deletions src/Atc.Rest.ApiGenerator/Factories/ProjectApiFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ public static string[] CreateUsingListForContractResult(

if (responses.HasSchemaTypeOfArray())
{
list.Add("System.Linq");
list.Add("System.Collections.Generic");
}

Expand Down
2 changes: 2 additions & 0 deletions src/Atc.Rest.ApiGenerator/NameConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@ internal static class NameConstants
public const string Handler = "Handler";

public const string ClientRequestParameters = "RequestParameters";

public const string AbstractCollectionTypeName = "IEnumerable";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,16 @@ private List<MemberDeclarationSyntax> CreateMethods(string className)
{
methodDeclaration = CreateTypeRequestObjectResult(className, httpStatusCode.ToNormalizedString(), schema.GetDataType(), "response", isList, isPagination);
}
else if (schema != null && string.Equals(schema.Type, OpenApiDataTypeConstants.Array, StringComparison.Ordinal))
{
methodDeclaration = CreateTypeRequestObjectResult(
className,
httpStatusCode.ToNormalizedString(),
schema.Items.GetDataType(),
"response",
isList,
isPagination);
}
else
{
methodDeclaration = CreateTypeRequestWithMessageAllowNull(className, httpStatusCode, nameof(OkObjectResult));
Expand Down Expand Up @@ -558,9 +568,13 @@ private static MethodDeclarationSyntax CreateTypeRequestObjectResult(
bool asGenericPagination = false)
{
string? genericListTypeName = null;
string objectResultParameter = asGenericList
? parameterName + $" ?? Enumerable.Empty<{parameterTypeName}>()"
: parameterName;

if (asGenericList)
{
genericListTypeName = Microsoft.OpenApi.Models.NameConstants.List;
genericListTypeName = NameConstants.AbstractCollectionTypeName;
}
else if (asGenericPagination)
{
Expand All @@ -585,7 +599,7 @@ private static MethodDeclarationSyntax CreateTypeRequestObjectResult(
SyntaxFactory.SingletonSeparatedList(
SyntaxFactory.Argument(
SyntaxObjectCreationExpressionFactory.Create(methodName + nameof(ObjectResult))
.WithArgumentList(SyntaxArgumentListFactory.CreateWithOneItem(parameterName))))))))
.WithArgumentList(SyntaxArgumentListFactory.CreateWithOneItem(objectResultParameter))))))))
.WithSemicolonToken(SyntaxTokenFactory.Semicolon());
}

Expand Down Expand Up @@ -669,10 +683,10 @@ private static ConversionOperatorDeclarationSyntax CreateImplicitOperator(
SyntaxFactory.IdentifierName(SyntaxFactory.Identifier(className)))
.WithModifiers(SyntaxTokenListFactory.PublicStaticKeyword(true))
.WithOperatorKeyword(SyntaxTokenFactory.OperatorKeyword())
.AddParameterListParameters(SyntaxParameterFactory.Create(typeName, "x", genericListTypeName))
.AddParameterListParameters(SyntaxParameterFactory.Create(typeName, "response", genericListTypeName))
.WithExpressionBody(SyntaxFactory.ArrowExpressionClause(
SyntaxFactory.InvocationExpression(SyntaxFactory.IdentifierName(SyntaxFactory.Identifier(httpStatus)))
.AddArgumentListArguments(SyntaxArgumentFactory.Create("x")))
.AddArgumentListArguments(SyntaxArgumentFactory.Create("response")))
.WithArrowToken(SyntaxTokenFactory.EqualsGreaterThan()))
.WithSemicolonToken(SyntaxTokenFactory.Semicolon());
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Linq;
using Atc.Rest.Results;
using Microsoft.AspNetCore.Mvc;

//------------------------------------------------------------------------------
// This code was auto-generated by ApiGenerator x.x.x.x.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//------------------------------------------------------------------------------
namespace TestProject.AtcTest.Contracts.Test
{
/// <summary>
/// Results for operation request.
/// Description: Get.
/// Operation: Get.
/// Area: Test.
/// </summary>
[GeneratedCode("ApiGenerator", "x.x.x.x")]
public class GetResult : ResultBase
{
private GetResult(ActionResult result) : base(result) { }

/// <summary>
/// 200 - Ok response.
/// </summary>
public static GetResult Ok(IEnumerable<string> response) => new GetResult(new OkObjectResult(response ?? Enumerable.Empty<string>()));

/// <summary>
/// Performs an implicit conversion from GetResult to ActionResult.
/// </summary>
public static implicit operator GetResult(List<string> response) => Ok(response);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
openapi: 3.0.0
paths:
/:
get:
summary: Get
description: Get
operationId: get
tags: []
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
type: string
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ namespace TestProject.AtcTest.Contracts.Test
{
/// <summary>
/// Results for operation request.
/// Description: Get all users.
/// Operation: GetUsers.
/// Description: Get.
/// Operation: Get.
/// Area: Test.
/// </summary>
[GeneratedCode("ApiGenerator", "x.x.x.x")]
public class GetUsersResult : ResultBase
public class GetResult : ResultBase
{
private GetUsersResult(ActionResult result) : base(result) { }
private GetResult(ActionResult result) : base(result) { }

/// <summary>
/// 200 - Ok response.
/// </summary>
public static GetUsersResult Ok(string? message = null) => new GetUsersResult(new OkObjectResult(message));
public static GetResult Ok(string? message = null) => new GetResult(new OkObjectResult(message));

/// <summary>
/// Performs an implicit conversion from GetUsersResult to ActionResult.
/// Performs an implicit conversion from GetResult to ActionResult.
/// </summary>
public static implicit operator GetUsersResult(string x) => Ok(x);
public static implicit operator GetResult(string response) => Ok(response);
}
}
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
openapi: 3.0.0
paths:
/users:
/:
get:
summary: Get all users
description: Get all users
operationId: getUsers
summary: Get
description: Get
operationId: get
tags: []
responses:
'200':
description: OK
content:
application/json:
text/plain:
schema:
$ref: '#/components/schemas/Users'
type: string