|
1 | 1 | from cgi import test
|
2 | 2 | import os
|
3 | 3 | 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 |
6 | 5 |
|
7 | 6 | from selfie_lib.Atomic import AtomicReference
|
8 | 7 | from .SelfieSettingsAPI import SelfieSettingsAPI
|
|
32 | 31 |
|
33 | 32 |
|
34 | 33 | 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) |
37 | 61 |
|
38 | 62 |
|
39 | 63 | class PytestSnapshotFileLayout(SnapshotFileLayout):
|
|
0 commit comments