Skip to content

Commit 6f7f268

Browse files
committed
feat: defaulting env_token_name to None
1 parent 287ddb5 commit 6f7f268

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

src/openapi_python_generator/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
)
2020
@click.option(
2121
"--env-token-name",
22-
default="access_token",
22+
default=None,
2323
show_default=True,
2424
help="Name of the environment variable that contains the token. If you set this, the code expects this environment "
2525
"variable to be set and will raise an error if it is not.",

tests/regression/test_issue_71.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import pytest
2+
from click.testing import CliRunner
3+
4+
from openapi_python_generator.common import HTTPLibrary
5+
from openapi_python_generator.generate_data import generate_data
6+
from tests.conftest import test_data_folder
7+
from tests.conftest import test_result_path
8+
9+
10+
@pytest.fixture
11+
def runner() -> CliRunner:
12+
"""Fixture for invoking command-line interfaces."""
13+
return CliRunner()
14+
15+
16+
@pytest.mark.parametrize(
17+
"library",
18+
[HTTPLibrary.httpx, HTTPLibrary.aiohttp, HTTPLibrary.requests],
19+
)
20+
def test_issue_71(runner: CliRunner, model_data_with_cleanup, library) -> None:
21+
"""
22+
https://github.com/MarcoMuellner/openapi-python-generator/issues/7
23+
"""
24+
assert (
25+
generate_data(test_data_folder / "issue_71.json", test_result_path, library)
26+
is None
27+
)

tests/test_data/issue_71.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"openapi": "3.0.1",
3+
"info": {
4+
"version": "1.0",
5+
"title": "Title"
6+
},
7+
"paths": {
8+
"/dummy": {
9+
"get": {
10+
"summary": "Dummy endpoint",
11+
"responses": {
12+
"200": {
13+
"description": "Successful response"
14+
}
15+
}
16+
}
17+
}
18+
},
19+
"components": {
20+
"schemas": {
21+
"Registry": {
22+
"type": "string",
23+
"enum": [
24+
"A",
25+
"B",
26+
""
27+
]
28+
}
29+
}
30+
}
31+
}

0 commit comments

Comments
 (0)