-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtest_util.py
127 lines (90 loc) · 5.69 KB
/
test_util.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
from pupgui2.util import *
from pupgui2.constants import POSSIBLE_INSTALL_LOCATIONS
from pupgui2.datastructures import SteamApp, LutrisGame, HeroicGame, Launcher
def test_build_headers_with_authorization() -> None:
"""
Test whether the expected Authorization Tokens get inserted into the returned headers dict,
that existing Authorization is replaced properly, and that all other existing headers are preserved.
"""
user_agent = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'
# Simulate existing headers with old Authentiation to be replaced, and a User-Agent that should remain untouched
request_headers: dict[str, Any] = {
'Authorization': 'ABC123',
'User-Agent': user_agent
}
# Simulate auth tokens that would normally come from the environment or config file
authorization_tokens: dict[str, str] = {
'github': 'gha_abc123daf456',
'gitlab': 'glpat-zyx987wvu654',
}
github_token_call: dict[str, Any] = build_headers_with_authorization(request_headers, authorization_tokens, 'github')
gitlab_token_call: dict[str, Any] = build_headers_with_authorization(request_headers, authorization_tokens, 'gitlab')
unknown_token_call: dict[str, Any] = build_headers_with_authorization(request_headers, authorization_tokens, '')
call_with_no_tokens: dict[str, Any] = build_headers_with_authorization(request_headers, {}, 'github')
assert github_token_call.get('Authorization', '') == f'token {authorization_tokens["github"]}'
assert gitlab_token_call.get('Authorization', '') == f'Bearer {authorization_tokens["gitlab"]}'
assert unknown_token_call.get('Authorization', '') == ''
assert call_with_no_tokens.get('Authorization', '') == ''
assert github_token_call.get('User-Agent', '') == user_agent
def test_get_dict_key_from_value() -> None:
"""
Test whether get_dict_key_from_value can retrieve the expected key from a dict by a value,
where the key and value can be of any type.
"""
dict_with_str_keys: dict[str, str] = {
'steam': 'Steam',
'lutris': 'Lutris',
}
dict_with_int_keys: dict[int, str] = {
2: 'two',
4: 'four'
}
dict_with_enum_keys: dict[Launcher, bool] = {
Launcher.WINEZGUI: True,
Launcher.HEROIC: False
}
test_dicts: list[dict[Any, Any]] = [
dict_with_str_keys,
dict_with_int_keys,
dict_with_enum_keys,
]
for test_dict in test_dicts:
assert all( get_dict_key_from_value(test_dict, value) == key for key, value in test_dict.items() )
def test_get_launcher_from_installdir() -> None:
"""
Test whether get_laucher_from_installdir returns the correct Launcher type Enum from the installdir path.
"""
# All possible Steam paths
steam_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] == 'steam' ]
steam_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(steam_path) for steam_path in steam_install_paths ]
# All possible Lutris paths
lutris_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] == 'lutris' ]
lutris_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(lutris_path) for lutris_path in lutris_install_paths ]
# All possible Heroic paths
heroic_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] in ['heroicwine', 'heroicproton'] ]
heroic_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(heroic_path) for heroic_path in heroic_install_paths ]
# All possible Bottles paths
bottles_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] == 'bottles' ]
bottles_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(bottles_path) for bottles_path in bottles_install_paths ]
# All possible WineZGUI paths
winezgui_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] == 'winezgui' ]
winezgui_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(winezgui_path) for winezgui_path in winezgui_install_paths ]
assert all(launcher == Launcher.STEAM for launcher in steam_install_path_tests)
assert all(launcher == Launcher.LUTRIS for launcher in lutris_install_path_tests)
assert all(launcher == Launcher.HEROIC for launcher in heroic_install_path_tests)
assert all(launcher == Launcher.BOTTLES for launcher in bottles_install_path_tests)
assert all(launcher == Launcher.WINEZGUI for launcher in winezgui_install_path_tests)
def test_get_random_game_name() -> None:
""" Test whether get_random_game_name returns a valid game name for each launcher game type. """
names: list[str] = ["game", "A super cool game", "A game with a very long name that is very long", "0123456789"]
steam_app: list[SteamApp] = [SteamApp() for _ in range(len(names))]
lutris_game: list[LutrisGame] = [LutrisGame() for _ in range(len(names))]
heroic_game: list[HeroicGame] = [HeroicGame() for _ in range(len(names))]
for i, name in enumerate(names):
steam_app[i].game_name = name
lutris_game[i].name = name
heroic_game[i].title = name
for i in range(10):
assert get_random_game_name(steam_app) in names
assert get_random_game_name(lutris_game) in names
assert get_random_game_name(heroic_game) in names