-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtest_params.py
209 lines (171 loc) · 9.07 KB
/
test_params.py
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# Copyright 2022 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Param unit tests."""
from os import environ
import pytest
from firebase_functions import params
class TestBoolParams:
"""BoolParam unit tests."""
def test_bool_param_value_true_or_false(self):
"""Testing if bool params correctly returns a true or false value."""
bool_param = params.BoolParam("BOOL_VALUE_TEST1")
for value_true, value_false in zip(["true"],
["false", "anything", "else"]):
environ["BOOL_VALUE_TEST1"] = value_true
assert (bool_param.value is True), "Failure, params returned False"
environ["BOOL_VALUE_TEST1"] = value_false
assert (bool_param.value is False), "Failure, params returned True"
def test_bool_param_empty_default(self):
"""Testing if bool params defaults to False if no value and no default."""
assert (params.BoolParam("BOOL_DEFAULT_TEST").value
is False), "Failure, params returned True"
def test_bool_param_default(self):
"""Testing if bool params defaults to provided default value."""
assert (params.BoolParam("BOOL_DEFAULT_TEST_FALSE", default=False).value
is False), "Failure, params returned True"
assert (params.BoolParam("BOOL_DEFAULT_TEST_TRUE", default=True).value
is True), "Failure, params returned False"
def test_bool_param_equality(self):
"""Test bool equality."""
assert (params.BoolParam("BOOL_TEST1",
default=False).equals(False).value
is True), "Failure, equality check returned False"
assert (params.BoolParam("BOOL_TEST2", default=True).equals(False).value
is False), "Failure, equality check returned False"
class TestFloatParams:
"""FloatParam unit tests."""
def test_float_param_value(self):
"""Testing if float params correctly returns a value."""
environ["FLOAT_VALUE_TEST"] = "123.456"
assert params._FloatParam("FLOAT_VALUE_TEST",).value == 123.456, \
"Failure, params value != 123.456"
def test_float_param_empty_default(self):
"""Testing if float params defaults to empty float if no value and no default."""
assert params._FloatParam("FLOAT_DEFAULT_TEST1").value == float(), \
"Failure, params value is not float"
def test_float_param_default(self):
"""Testing if float param defaults to provided default value."""
assert params._FloatParam("FLOAT_DEFAULT_TEST2", \
default=float(456.789)).value == 456.789, \
"Failure, params default value != 456.789"
def test_float_param_equality(self):
"""Test float equality."""
assert (params._FloatParam("FLOAT_TEST1", \
default=123.456).equals(123.456).value \
is True), "Failure, equality check returned False"
assert (params._FloatParam("FLOAT_TEST2", \
default=456.789).equals(123.456).value \
is False), "Failure, equality check returned False"
class TestIntParams:
"""IntParam unit tests."""
def test_int_param_value(self):
"""Testing if int param correctly returns a value."""
environ["INT_VALUE_TEST"] = "123"
assert params.IntParam(
"INT_VALUE_TEST").value == 123, "Failure, params value != 123"
def test_int_param_empty_default(self):
"""Testing if int param defaults to empty int if no value and no default."""
assert params.IntParam("INT_DEFAULT_TEST1").value == int(
), "Failure, params value is not int"
def test_int_param_default(self):
"""Testing if int param defaults to provided default value."""
assert params.IntParam("INT_DEFAULT_TEST2", default=456).value == 456, \
"Failure, params default value != 456"
def test_int_param_equality(self):
"""Test int equality."""
assert (params.IntParam("INT_TEST1", default=123).equals(123).value
is True), "Failure, equality check returned False"
assert (params.IntParam("INT_TEST2", default=456).equals(123).value
is False), "Failure, equality check returned False"
class TestStringParams:
"""StringParam unit tests."""
def test_string_param_value(self):
"""Testing if string param correctly returns a value."""
environ["STRING_VALUE_TEST"] = "STRING_TEST"
assert params.StringParam("STRING_VALUE_TEST").value == "STRING_TEST", \
'Failure, params value != "STRING_TEST"'
def test_param_name_upper_snake_case(self):
"""Testing if param names are validated to be upper snake case."""
with pytest.raises(ValueError) as context:
params.StringParam("lower")
assert "UPPER_SNAKE_CASE" in str(context)
def test_string_param_empty_default(self):
"""Testing if string param defaults to empty string if no value and no default."""
assert params.StringParam("STRING_DEFAULT_TEST1").value == str(), \
"Failure, params value is not a string"
def test_string_param_default(self):
"""Testing if string param defaults to provided default value."""
assert (params.StringParam("STRING_DEFAULT_TEST2",
default="string_override_default").value
== "string_override_default"), \
'Failure, params default value != "string_override_default"'
def test_string_param_equality(self):
"""Test string equality."""
assert (params.StringParam("STRING_TEST1",
default="123").equals("123").value
is True), "Failure, equality check returned False"
assert (params.StringParam("STRING_TEST2",
default="456").equals("123").value
is False), "Failure, equality check returned False"
class TestListParams:
"""ListParam unit tests."""
def test_list_param_value(self):
"""Testing if list param correctly returns list values."""
environ["LIST_VALUE_TEST1"] = "item1,item2"
assert params.ListParam("LIST_VALUE_TEST1").value == ["item1","item2"], \
'Failure, params value != ["item1","item2"]'
def test_list_param_filter_empty_strings(self):
"""Testing if list param correctly returns list values wth empty strings excluded."""
environ["LIST_VALUE_TEST2"] = ",,item1,item2,,,item3,"
assert params.ListParam("LIST_VALUE_TEST2").value == ["item1","item2", "item3"], \
'Failure, params value != ["item1","item2", "item3"]'
def test_list_param_empty_default(self):
"""Testing if list param defaults to an empty list if no value and no default."""
assert params.ListParam("LIST_DEFAULT_TEST1").value == [], \
"Failure, params value is not an empty list"
def test_list_param_default(self):
"""Testing if list param defaults to the provided default value."""
assert (params.ListParam("LIST_DEFAULT_TEST2", default=["1", "2"]).value
== ["1", "2"]), \
'Failure, params default value != ["1", "2"]'
def test_list_param_equality(self):
"""Test list equality."""
assert (params.ListParam("LIST_TEST1",
default=["123"]).equals(["123"]).value
is True), "Failure, equality check returned False"
assert (params.ListParam("LIST_TEST2",
default=["456"]).equals(["123"]).value
is False), "Failure, equality check returned False"
class TestParamsManifest:
"""
Tests any created params are tracked for the purposes
of outputting to the generated manifest.
"""
def test_params_stored(self):
"""Testing if params are internally stored."""
environ["TEST_STORING"] = "TEST_STORING_VALUE"
param = params.StringParam("TEST_STORING")
assert param.value == "TEST_STORING_VALUE", \
'Failure, params value != "TEST_STORING_VALUE"'
# pylint: disable=protected-access
assert params._params["TEST_STORING"] == param, \
"Failure, param was not stored"
def test_default_params_not_stored(self):
"""Testing if default params are skipped from being stored."""
environ["GCLOUD_PROJECT"] = "python-testing-project"
assert params.PROJECT_ID.value == "python-testing-project", \
'Failure, params value != "python-testing-project"'
# pylint: disable=protected-access
assert params._params.get("GCLOUD_PROJECT") is None, \
"Failure, default param was stored when it should not have been"