forked from osrsbox/osrsbox-db
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtest_items_api.py
46 lines (35 loc) · 1.73 KB
/
test_items_api.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
"""
Author: PH01L
Email: phoil@osrsbox.com
Website: https://www.osrsbox.com
Description:
Tests for module: osrsbox.items_api.all_items
Copyright (c) 2021, PH01L
###############################################################################
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
###############################################################################
"""
import os
from pathlib import Path
from osrsreboxed.items_api import all_items
# The current number of items being loaded from the db
NUMBER_OF_ITEMS = 24735
def test_all_items_load_items_json(path_to_docs_dir: Path):
path_to_items_json_dir_no_slash = path_to_docs_dir / "items-json"
path_to_items_json_dir_slash = os.path.join(path_to_docs_dir, "items-json", "")
for path in (path_to_items_json_dir_slash, path_to_items_json_dir_no_slash):
all_db_items = all_items.AllItems(str(path))
assert len(all_db_items.all_items) == NUMBER_OF_ITEMS
def test_all_items_load_items_complete(path_to_docs_dir: Path):
path_to_items_complete = path_to_docs_dir / "items-complete.json"
all_db_items = all_items.AllItems(str(path_to_items_complete))
assert len(all_db_items.all_items) == NUMBER_OF_ITEMS