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

[BUG][KOTLIN] Bug generating array of enum with default value #20394

Open
4 of 6 tasks
maximedemarey-wb opened this issue Jan 2, 2025 · 0 comments
Open
4 of 6 tasks

Comments

@maximedemarey-wb
Copy link

maximedemarey-wb commented Jan 2, 2025

Bug Report Checklist

  • Have you provided a full/minimal spec to reproduce the issue?
  • Have you validated the input using an OpenAPI validator (example)?
  • Have you tested with the latest master to confirm the issue still exists?
  • Have you searched for related issues/PRs?
  • What's the actual output vs expected output?
  • [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description

By generating the kotlin client from an openapi spec which contains a parameter that is an enum array with a default value, the generated code cannot be built, with an error like

Unresolved reference: arrayListOf
Unresolved reference: active

generated code :

    fun xxx(@Query("statuses") statuses: @JvmSuppressWildcards kotlin.collections.List<kotlin.String>? = Statuses.arrayListOf(active)): Call<yyy>

We should be able to build without error

openapi-generator version

7.7.0

OpenAPI declaration file content or url
{
            "name": "statuses",
            "required": false,
            "in": "query",
            "schema": {
              "type": "array",
              "items": {
                "type": "string",
                "enum": [
                  "active",
                  "inactive"
                ]
              },
              "default": [
                "active"
              ]
            }
          }
Generation Details
openapi-generator-cli generate -i openapi.json -g kotlin -o . --additional-properties=library=jvm-retrofit2,serializationLibrary=gson
Steps to reproduce
  • generate kotlin client
  • build client with ./gradlew assemble
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant