Spaces:
Sleeping
Sleeping
File size: 6,826 Bytes
4bcfb6c d87ef07 4bcfb6c 8963e74 6662228 4bcfb6c 6af1379 d87ef07 859e75b a068827 859e75b a068827 859e75b 9a93980 |
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 |
import pytest
from pathlib import Path
from input.input_validator import is_valid_email, is_valid_number
from input.input_validator import get_image_latlon, decimal_coords, get_image_datetime
# generate tests for is_valid_email
# - test with valid email
# - basic email with @ and .
# - test with email with multiple .
# - test with empty email
# - test with None email
# - test with non-string email
# - test with invalid email
# - test with email without @
# - test with email without .
# - test with email without domain
# - test with email without username
# - test with email without TLD
# - test with email with multiple @
# - test with email starting with the + sign
def test_is_valid_email_valid():
assert is_valid_email("[email protected]")
assert is_valid_email("[email protected]")
assert is_valid_email("[email protected]")
assert is_valid_email("[email protected]")
assert is_valid_email("[email protected]")
def test_is_valid_email_empty():
assert not is_valid_email("")
def test_is_valid_email_none():
with pytest.raises(TypeError):
is_valid_email(None)
def test_is_valid_email_non_string():
with pytest.raises(TypeError):
is_valid_email(123)
def test_is_valid_email_invalid():
assert not is_valid_email("a.bc")
assert not is_valid_email("a@bc")
assert not is_valid_email("a.b@cc")
assert not is_valid_email("@b.cc")
assert not is_valid_email("[email protected]")
assert not is_valid_email("a@b.")
assert not is_valid_email("a@bb.")
assert not is_valid_email("[email protected].")
assert not is_valid_email("a@[email protected]")
def test_is_valid_email_invalid_plus():
assert not is_valid_email("[email protected]")
assert not is_valid_email("[email protected]")
def test_is_valid_number_valid():
# with a sign or without, fractional or integer are all valid
assert is_valid_number("123")
assert is_valid_number("123.456")
assert is_valid_number("-123")
assert is_valid_number("-123.456")
assert is_valid_number("+123")
assert is_valid_number("+123.456")
def test_is_valid_number_empty():
assert not is_valid_number("")
def test_is_valid_number_none():
with pytest.raises(TypeError):
is_valid_number(None)
def test_is_valid_number_invalid():
# func should return False for strings that are not numbers
assert not is_valid_number("abc")
assert not is_valid_number("123abc")
assert not is_valid_number("abc123")
assert not is_valid_number("123.456.789")
assert not is_valid_number("123,456")
assert not is_valid_number("123-456")
assert not is_valid_number("123+456")
def test_is_valid_number_valid():
assert is_valid_number("123")
assert is_valid_number("123.456")
assert is_valid_number("-123")
assert is_valid_number("-123.456")
assert is_valid_number("+123")
assert is_valid_number("+123.456")
def test_is_valid_number_empty():
assert not is_valid_number("")
def test_is_valid_number_none():
with pytest.raises(TypeError):
is_valid_number(None)
def test_is_valid_number_invalid():
assert not is_valid_number("abc")
assert not is_valid_number("123abc")
assert not is_valid_number("abc123")
assert not is_valid_number("123.456.789")
assert not is_valid_number("123,456")
assert not is_valid_number("123-456")
assert not is_valid_number("123+456")
# tests for get_image_datetime
# - testing with a valid image with complete, valid metadata
# - testing with a valid image with incomplete metadata (missing datetime info -- that's a legitimate case we should handle)
# - testing with a valid image with incomplete metadata (missing GPS info -- should not affect the datetime extraction)
# - testing with a valid image with no metadata
# - timezones too
test_data_pth = Path('tests/data/')
def test_get_image_datetime():
# this image has lat, lon, and datetime
f1 = test_data_pth / 'cakes.jpg'
assert get_image_datetime(f1) == "2024:10:24 15:59:45"
#"+02:00"
# hmm, the full datetime requires timezone, which is called OffsetTimeOriginal
# missing GPS loc: this should not interfere with the datetime
f2 = test_data_pth / 'cakes_no_exif_gps.jpg'
assert get_image_datetime(f2) == "2024:10:24 15:59:45"
# missng datetime -> expect None
f3 = test_data_pth / 'cakes_no_exif_datetime.jpg'
assert get_image_datetime(f3) == None
def test_get_image_latlon():
# this image has lat, lon, and datetime
f1 = test_data_pth / 'cakes.jpg'
assert get_image_latlon(f1) == (46.51860277777778, 6.562075)
# missing GPS loc
f2 = test_data_pth / 'cakes_no_exif_gps.jpg'
assert get_image_latlon(f2) == (None, None)
# missng datetime -> expect gps not affected
f3 = test_data_pth / 'cakes_no_exif_datetime.jpg'
assert get_image_latlon(f3) == (46.51860277777778, 6.562075)
# tests for get_image_latlon with empty file
def test_get_image_latlon_empty():
assert get_image_latlon("") == (None, None)
# tests for decimal_coords
# - without input, py raises TypeError
# - with the wrong length of input (expecting 3 elements in the tuple), expect ValueError
# - with string inputs instead of numeric, we get a TypeError (should the func bother checking this? happens as built in)
# - with ref direction not in ['N', 'S', 'E', 'W'], expect ValueError, try X, x, NW.
# - with valid inputs, expect the correct output
# test data for decimal_coords: (deg,min,sec), ref, expected output
coords_conversion_data = [
((30, 1, 2), 'W', -30.01722222),
((30, 1, 2), 'E', 30.01722222),
((30, 1, 2), 'N', 30.01722222),
((30, 1, 2), 'S', -30.01722222),
((46, 31, 6.97), 'N', 46.51860278),
((6, 33, 43.47), 'E', 6.56207500)
]
@pytest.mark.parametrize("input_coords, ref, expected_output", coords_conversion_data)
def test_decimal_coords(input_coords, ref, expected_output):
assert decimal_coords(input_coords, ref) == pytest.approx(expected_output)
def test_decimal_coords_no_input():
with pytest.raises(TypeError):
decimal_coords()
def test_decimal_coords_wrong_length():
with pytest.raises(ValueError):
decimal_coords((1, 2), 'W')
with pytest.raises(ValueError):
decimal_coords((30,), 'W')
with pytest.raises(ValueError):
decimal_coords((30, 1, 2, 4), 'W')
def test_decimal_coords_non_numeric():
with pytest.raises(TypeError):
decimal_coords(('1', '2', '3'), 'W')
def test_decimal_coords_invalid_ref():
with pytest.raises(ValueError):
decimal_coords((30, 1, 2), 'X')
with pytest.raises(ValueError):
decimal_coords((30, 1, 2), 'x')
with pytest.raises(ValueError):
decimal_coords((30, 1, 2), 'NW')
|