Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • O openapi-generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 3,476
    • Issues 3,476
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 402
    • Merge requests 402
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OpenAPI Tools
  • openapi-generator
  • Issues
  • #13689
Closed
Open
Issue created Oct 14, 2022 by Administrator@rootContributor5 of 6 checklist items completed5/6 checklist items

[BUG][PYTHON] Generated python-flask server stub enum strings don't have quotes

Created by: renxinhe

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

Generated python server stub doesn't have quotes around the enum values. This generates python code with syntax errors.

OpenAPI 3.0 YAML input:

status:
    type: string
    description: status
    enum:
      - local
      - invited
      - accepted
      - confirmed
      - rejected

Generated python model stub code:

    @status.setter
    def status(self, status):
        """<omitted>
        """
        allowed_values = [None,local, invited, accepted, confirmed, rejected]  # noqa: E501
        if status not in allowed_values:
            raise ValueError(
                "Invalid value for `status` ({0}), must be one of {1}"
                .format(status, allowed_values)
            )

        self._status = status

Notice that the line allowed_values = ... isn't valid python code. The enum values need to be surrounded by quotes because they are string types.

openapi-generator version

6.2.0

OpenAPI declaration file content or url
status:
    type: string
    description: status
    enum:
      - local
      - invited
      - accepted
      - confirmed
      - rejected
Generation Details
 java -jar openapi-generator-cli.jar generate -g python-flask -i '/tmp/api.yaml' -o '/tmp/codegen_test'
Steps to reproduce

Simply run the codegen CLI and check the output file to see the missing quotes in the stub.

Related issues/PRs

This issue is similar to https://github.com/OpenAPITools/openapi-generator/issues/3196, but the opposite direction. Here we have manually defined an OpenAPI 3.0 YAML, and want to generate python server stub.

Suggest a fix

I'd imagine this bug is specific to the python flask server generator. I'm not too familiar with the code base to navigate to the culprit.

Assignee
Assign to
Time tracking