mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-21 19:33:02 +00:00
23 lines
887 B
Python
23 lines
887 B
Python
import os
|
|
import json
|
|
import urllib
|
|
import pytest
|
|
from sherlock_project.sites import SitesInformation
|
|
|
|
@pytest.fixture()
|
|
def sites_obj():
|
|
sites_obj = SitesInformation(data_file_path=os.path.join(os.path.dirname(__file__), "../sherlock_project/resources/data.json"))
|
|
yield sites_obj
|
|
|
|
@pytest.fixture(scope="session")
|
|
def sites_info():
|
|
sites_obj = SitesInformation(data_file_path=os.path.join(os.path.dirname(__file__), "../sherlock_project/resources/data.json"))
|
|
sites_iterable = {site.name: site.information for site in sites_obj}
|
|
yield sites_iterable
|
|
|
|
@pytest.fixture(scope="session")
|
|
def remote_schema():
|
|
schema_url: str = 'https://raw.githubusercontent.com/sherlock-project/sherlock/master/sherlock_project/resources/data.schema.json'
|
|
with urllib.request.urlopen(schema_url) as remoteschema:
|
|
schemadat = json.load(remoteschema)
|
|
yield schemadat
|