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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
from collections import (
OrderedDict,
namedtuple,
)
import pytest
from syrupy.extensions.amber.serializer import AmberDataSerializer
from syrupy.extensions.json import JSONSnapshotExtension
@pytest.fixture
def snapshot_json(snapshot):
return snapshot.use_extension(JSONSnapshotExtension)
def test_non_snapshots(snapshot_json):
with pytest.raises(AssertionError):
assert "Lorem ipsum." == "Muspi merol."
def test_reflection(snapshot_json):
assert snapshot_json == snapshot_json
def test_empty_snapshot(snapshot_json):
assert snapshot_json == None # noqa: E711
assert snapshot_json == ""
def test_snapshot_markers(snapshot_json):
"""
Test snapshot markers do not break serialization when in snapshot data
"""
marker_strings = (
AmberDataSerializer._marker_prefix,
f"{AmberDataSerializer._indent}{AmberDataSerializer._marker_prefix}",
f"{AmberDataSerializer._marker_prefix}{AmberDataSerializer.Marker.Divider}",
f"{AmberDataSerializer._marker_prefix}{AmberDataSerializer.Marker.Name}:",
)
assert snapshot_json == "\n".join(marker_strings)
def test_newline_control_characters(snapshot_json):
assert snapshot_json == "line 1\nline 2"
assert snapshot_json == "line 1\r\nline 2"
assert snapshot_json == "line 1\r\nline 2\r\n"
assert snapshot_json == "line 1\rline 2\r"
assert snapshot_json == "line 1\rline 2\n"
assert snapshot_json == "line 1\rline 2"
def test_multiline_string_in_dict(snapshot_json):
lines = "\n".join(["line 1", "line 2"])
assert {"value": lines} == snapshot_json
def test_deeply_nested_multiline_string_in_dict(snapshot_json):
lines = "\n".join(["line 1", "line 2", "line 3"])
d = {"value_a": {"value_b": lines}}
assert d == snapshot_json
@pytest.mark.parametrize("actual", [False, True])
def test_bool(actual, snapshot_json):
assert actual == snapshot_json
@pytest.mark.parametrize(
"actual",
[
"",
r"Raw string",
r"Escaped \n",
r"Backslash \u U",
"🥞🐍🍯",
"singleline:",
"- singleline",
"multi-line\nline 2\nline 3",
"multi-line\nline 2\n line 3",
"string with 'quotes'",
b"Byte string",
],
ids=lambda x: "",
)
def test_string(snapshot_json, actual):
assert snapshot_json == actual
def test_multiple_snapshots(snapshot_json):
assert "First." == snapshot_json
snapshot_json.assert_match("Second.")
assert snapshot_json == "Third."
ExampleTuple = namedtuple("ExampleTuple", ["a", "b", "c", "d"])
def test_tuple(snapshot_json):
assert snapshot_json == ("this", "is", ("a", "tuple"))
assert snapshot_json == ExampleTuple(a="this", b="is", c="a", d={"named", "tuple"})
assert snapshot_json == ()
@pytest.mark.parametrize(
"actual",
[
{"this", "is", "a", "set"},
{"contains", "frozen", frozenset({"1", "2"})},
{"contains", "tuple", (1, 2)},
{"contains", "namedtuple", ExampleTuple(a=1, b=2, c=3, d=4)},
set(),
],
)
def test_set(snapshot_json, actual):
assert snapshot_json == actual
@pytest.mark.parametrize(
"actual",
[
{"b": True, "c": "Some text.", "d": ["1", 2], "a": {"e": False}},
{"b": True, "c": "Some ttext.", "d": ["1", 2], "a": {"e": False}},
{
1: True,
"a": "Some ttext.",
"multi\nline\nkey": "Some morre text.",
frozenset({"1", "2"}): ["1", 2],
ExampleTuple(a=1, b=2, c=3, d=4): {"e": False},
"key": None,
},
{},
{"key": ["line1\nline2"]},
{"key": [1, "line1\nline2", 2, "line3\nline4"]},
{"key": [1, ["line1\nline2"], 2]},
],
)
def test_dict(snapshot_json, actual):
assert actual == snapshot_json
def test_numbers(snapshot_json):
assert snapshot_json == 3.5
assert snapshot_json == 7
assert snapshot_json == 2 / 6
@pytest.mark.parametrize(
"actual",
[
[],
["this", "is", "a", "list"],
["contains", "empty", []],
[1, 2, "string", {"key": "value"}],
],
)
def test_list(snapshot_json, actual):
assert actual == snapshot_json
list_cycle = [1, 2, 3]
list_cycle.append(list_cycle)
dict_cycle = {"a": 1, "b": 2, "c": 3}
dict_cycle.update(d=dict_cycle)
@pytest.mark.parametrize("cyclic", [list_cycle, dict_cycle])
def test_cycle(cyclic, snapshot_json):
assert cyclic == snapshot_json
class CustomClass:
a = 1
b = "2"
c = list_cycle
d = dict_cycle
_protected_variable = None
__private_variable = None
def __init__(self, x=None):
self.x = x
self._y = 1
self.__z = 2
def public_method(self, a, b=1, *, c, d=None):
pass
def _protected_method(self):
pass
def __private_method(self):
pass
def test_custom_object_repr(snapshot_json):
assert CustomClass(CustomClass()) == snapshot_json
class TestClass:
def test_class_method_name(self, snapshot_json):
assert snapshot_json == "this is in a test class"
@pytest.mark.parametrize("actual", ["a", "b", "c"])
def test_class_method_parametrized(self, snapshot_json, actual):
assert snapshot_json == actual
@pytest.mark.parametrize("actual", ["x", "y", "z"])
class TestNestedClass:
def test_nested_class_method(self, snapshot_json, actual):
assert snapshot_json == f"parameterized nested class method {actual}"
class TestSubClass(TestClass):
pass
@pytest.mark.parametrize("parameter_with_dot", ("value.with.dot",))
def test_parameter_with_dot(parameter_with_dot, snapshot_json):
assert parameter_with_dot == snapshot_json
@pytest.mark.parametrize("parameter_1", ("foo",))
@pytest.mark.parametrize("parameter_2", ("bar",))
def test_doubly_parametrized(parameter_1, parameter_2, snapshot_json):
assert parameter_1 == snapshot_json
assert parameter_2 == snapshot_json
def test_ordered_dict(snapshot_json):
d = OrderedDict()
d["b"] = 0
d["a"] = OrderedDict(b=True, a=False)
assert snapshot_json == d
def function_to_test(
var1, var2="test_val", var3: str = "test_val2", *, kwvar1, kwvar2="some_val"
) -> str:
return "2"
def test_function_in_file(snapshot_json):
assert snapshot_json == function_to_test
def test_function_local(snapshot_json):
def local_function_to_test(
var1, var2="test_val", var3: str = "test_val2", *, kwvar1, kwvar2="some_val"
) -> int:
return 1
assert snapshot_json == local_function_to_test
|