File: test_cli.py

package info (click to toggle)
simplebayes 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 496 kB
  • sloc: python: 3,322; makefile: 165; sh: 24
file content (173 lines) | stat: -rw-r--r-- 5,490 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
from simplebayes import cli


def test_parse_args_defaults(monkeypatch):
    monkeypatch.delenv("SIMPLEBAYES_HOST", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_PORT", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_AUTH_TOKEN", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_LANGUAGE", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_REMOVE_STOP_WORDS", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_VERBOSE", raising=False)

    args = cli.parse_args([])
    assert args.host == "0.0.0.0"
    assert args.port == 8000
    assert args.auth_token == ""
    assert args.language == "english"
    assert args.remove_stop_words is False
    assert args.verbose is False


def test_parse_args_uses_env(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_HOST", "127.0.0.1")
    monkeypatch.setenv("SIMPLEBAYES_PORT", "9000")
    monkeypatch.setenv("SIMPLEBAYES_AUTH_TOKEN", "env-token")

    args = cli.parse_args([])
    assert args.host == "127.0.0.1"
    assert args.port == 9000
    assert args.auth_token == "env-token"


def test_parse_args_cli_overrides_env(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_HOST", "127.0.0.1")
    monkeypatch.setenv("SIMPLEBAYES_PORT", "9000")
    monkeypatch.setenv("SIMPLEBAYES_AUTH_TOKEN", "env-token")

    args = cli.parse_args(["--host", "localhost", "--port", "8123", "--auth-token", "cli-token"])
    assert args.host == "localhost"
    assert args.port == 8123
    assert args.auth_token == "cli-token"


def test_parse_args_language_default(monkeypatch):
    monkeypatch.delenv("SIMPLEBAYES_LANGUAGE", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_REMOVE_STOP_WORDS", raising=False)
    monkeypatch.delenv("SIMPLEBAYES_VERBOSE", raising=False)
    args = cli.parse_args([])
    assert args.language == "english"


def test_parse_args_language_cli():
    args = cli.parse_args(["--language", "spanish"])
    assert args.language == "spanish"


def test_parse_args_language_env(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_LANGUAGE", "spanish")
    args = cli.parse_args([])
    assert args.language == "spanish"


def test_parse_args_remove_stop_words_default(monkeypatch):
    monkeypatch.delenv("SIMPLEBAYES_REMOVE_STOP_WORDS", raising=False)
    args = cli.parse_args([])
    assert args.remove_stop_words is False


def test_parse_args_remove_stop_words_flag():
    args = cli.parse_args(["--remove-stop-words"])
    assert args.remove_stop_words is True


def test_parse_args_remove_stop_words_env(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_REMOVE_STOP_WORDS", "1")
    args = cli.parse_args([])
    assert args.remove_stop_words is True


def test_parse_args_remove_stop_words_env_yes(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_REMOVE_STOP_WORDS", "yes")
    args = cli.parse_args([])
    assert args.remove_stop_words is True


def test_parse_args_remove_stop_words_env_false(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_REMOVE_STOP_WORDS", "0")
    args = cli.parse_args([])
    assert args.remove_stop_words is False


def test_parse_args_verbose_default(monkeypatch):
    monkeypatch.delenv("SIMPLEBAYES_VERBOSE", raising=False)
    args = cli.parse_args([])
    assert args.verbose is False


def test_parse_args_verbose_flag():
    args = cli.parse_args(["--verbose"])
    assert args.verbose is True


def test_parse_args_verbose_env(monkeypatch):
    monkeypatch.setenv("SIMPLEBAYES_VERBOSE", "true")
    args = cli.parse_args([])
    assert args.verbose is True


def test_run_invokes_uvicorn(monkeypatch):
    captured = {}

    def fake_create_app(
        auth_token: str = "",
        language: str = "english",
        remove_stop_words: bool = False,
        verbose: bool = False,
    ):
        captured["auth_token"] = auth_token
        captured["language"] = language
        captured["remove_stop_words"] = remove_stop_words
        captured["verbose"] = verbose
        return "app-object"

    def fake_uvicorn_run(app, host, port):
        captured["app"] = app
        captured["host"] = host
        captured["port"] = port

    monkeypatch.setattr(cli, "create_app", fake_create_app)
    monkeypatch.setattr(cli.uvicorn, "run", fake_uvicorn_run)

    cli.run(["--host", "localhost", "--port", "8181", "--auth-token", "top-secret"])

    assert captured["auth_token"] == "top-secret"
    assert captured["language"] == "english"
    assert captured["remove_stop_words"] is False
    assert captured["verbose"] is False
    assert captured["app"] == "app-object"
    assert captured["host"] == "localhost"
    assert captured["port"] == 8181


def test_run_passes_language_remove_stop_words_verbose(monkeypatch):
    captured = {}

    def fake_create_app(
        auth_token: str = "",
        language: str = "english",
        remove_stop_words: bool = False,
        verbose: bool = False,
    ):
        captured["auth_token"] = auth_token
        captured["language"] = language
        captured["remove_stop_words"] = remove_stop_words
        captured["verbose"] = verbose
        return "app-object"

    monkeypatch.setattr(cli, "create_app", fake_create_app)
    monkeypatch.setattr(cli.uvicorn, "run", lambda *a, **k: None)

    cli.run(
        [
            "--auth-token",
            "x",
            "--language",
            "spanish",
            "--remove-stop-words",
            "--verbose",
        ]
    )

    assert captured["language"] == "spanish"
    assert captured["remove_stop_words"] is True
    assert captured["verbose"] is True