Skip to content

Commit 2a485d0

Browse files
authored
Implement assertfailed (#355)
2 parents 03838d8 + c2fa2bc commit 2a485d0

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

python/pytest-selfie/pytest_selfie/plugin.py

+28-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from cgi import test
22
import os
33
from collections import defaultdict
4-
import re
5-
from typing import ByteString, DefaultDict, List, Optional, Iterator, Tuple
4+
from typing import ByteString, DefaultDict, List, Optional, Iterator
65

76
from selfie_lib.Atomic import AtomicReference
87
from .SelfieSettingsAPI import SelfieSettingsAPI
@@ -32,8 +31,33 @@
3231

3332

3433
class FSImplementation(FS):
35-
def assert_failed(self, message: str, expected=None, actual=None) -> Exception:
36-
raise Exception(message)
34+
def assert_failed(self, message, expected=None, actual=None) -> Exception:
35+
if expected is None and actual is None:
36+
return AssertionError(message)
37+
38+
expected_str = self.__nullable_to_string(expected, "")
39+
actual_str = self.__nullable_to_string(actual, "")
40+
41+
if not expected_str and not actual_str and (expected is None or actual is None):
42+
on_null = "(null)"
43+
return self.__comparison_assertion(
44+
message,
45+
self.__nullable_to_string(expected, on_null),
46+
self.__nullable_to_string(actual, on_null),
47+
)
48+
else:
49+
return self.__comparison_assertion(message, expected_str, actual_str)
50+
51+
def __nullable_to_string(self, value, on_null: str) -> str:
52+
return str(value) if value is not None else on_null
53+
54+
def __comparison_assertion(
55+
self, message: str, expected: str, actual: str
56+
) -> Exception:
57+
# this *should* through an exception that a good pytest runner will show nicely
58+
assert expected == actual, message
59+
# but in case it doesn't, we'll create our own here
60+
return AssertionError(message)
3761

3862

3963
class PytestSnapshotFileLayout(SnapshotFileLayout):

python/selfie-lib/selfie_lib/SnapshotSystem.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def msg(self, headline: str) -> str:
134134
return (
135135
f"{headline}\n"
136136
"- update this snapshot by adding '_TODO' to the function name\n"
137-
"- update all snapshots in this file by adding '//selfieonce' or '//SELFIEWRITE'"
137+
"- update all snapshots in this file by adding '# selfieonce' or '# SELFIEWRITE'"
138138
)
139139
elif self == Mode.readonly:
140140
return headline

0 commit comments

Comments
 (0)