"""
Author:  PH01L
Email:   phoil@osrsbox.com
Website: https://www.osrsbox.com

Description:
Tests for module: docs/prayers-json

Copyright (c) 2020, 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 json
from pathlib import Path

import config
import validator


def test_prayer_database():
    """Unit test to check prayer database contents against JSON schema."""
    # Read in the prayer schema file
    path_to_schema = Path(config.DATA_SCHEMAS_PATH / "schema-prayers.json")
    with open(path_to_schema, 'r') as f:
        schema = json.loads(f.read())

    # Validator object with schema attached
    v = validator.MyValidator(schema)

    # Set the path to the prayers-json folder and get all the JSON files
    path_to_prayers_json_dir = Path(config.DOCS_PATH / "prayers-json")
    fis = path_to_prayers_json_dir.glob("*.json")
    fis = sorted(fis)

    # Validate each file
    for json_file in fis:
        with open(json_file) as fi:
            prayer = json.load(fi)
            # print(prayer["id"])
            assert v.validate(prayer)