-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4b7ddd
commit 5b524b0
Showing
10 changed files
with
171 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: | ||
- wip/testing | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
architecture: x64 | ||
|
||
- name: Install Python dependencies | ||
run: pip install -r requirements.txt | ||
|
||
- name: Run Python Tests | ||
run: python -m unittest discover |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
|
||
# Typical virtualenv dir | ||
/venv/ | ||
/.venv/ | ||
|
||
# IDE settings | ||
/.idea/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ fastapi>=0.95.0 | |
pydantic>=1.10 | ||
uvicorn>=0.21.1 | ||
dnspython>=2.4.2 | ||
requests>=2.32.2 | ||
setuptools>=68.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
import os | ||
import configparser | ||
from typing import Dict | ||
import multiprocessing | ||
import requests | ||
import unittest | ||
|
||
from fastapi import FastAPI | ||
import uvicorn | ||
|
||
from semantic_id_resolver import resolver | ||
from semantic_id_resolver.service import SemanticIdResolvingService, SMSRequest | ||
|
||
|
||
def run_server(): | ||
# Load test configuration | ||
config = configparser.ConfigParser() | ||
config.read([ | ||
os.path.abspath(os.path.join(os.path.dirname(__file__), "../test_resources/config.ini")), | ||
]) | ||
|
||
# Define test configuration | ||
IRDI_MATCHER_DICT: Dict[resolver.IRDISources, str] = { | ||
resolver.IRDISources.ECLASS: config["RESOLVER"]["eclass_semantic_matching_service"], | ||
resolver.IRDISources.IEC_CDD: config["RESOLVER"]["cdd_semantic_matching_service"] | ||
} | ||
|
||
try: | ||
DEBUG_ENDPOINTS = resolver.DebugSemanticMatchingServiceEndpoints.from_file( | ||
config["RESOLVER"]["debug_semantic_matching_service_endpoints"] | ||
) | ||
print(f"USING DEBUG ENDPOINTS FROM {config['RESOLVER']['debug_semantic_matching_service_endpoints']}") | ||
except FileNotFoundError: | ||
DEBUG_ENDPOINTS = resolver.DebugSemanticMatchingServiceEndpoints(debug_endpoints={}) | ||
|
||
# Mock SemanticIdResolvingService for testing | ||
mock_resolver = resolver.SemanticIdResolver(IRDI_MATCHER_DICT, DEBUG_ENDPOINTS) | ||
semantic_id_resolver_service = SemanticIdResolvingService( | ||
endpoint=config["SERVICE"]["endpoint"], | ||
fallback_semantic_matching_service_endpoint=config["RESOLVER"]["fallback_semantic_matching_service"], | ||
semantic_id_resolver=mock_resolver | ||
) | ||
|
||
app = FastAPI() | ||
app.include_router(semantic_id_resolver_service.router) | ||
uvicorn.run(app, host=str(config["SERVICE"]["ENDPOINT"]), port=int(config["SERVICE"]["PORT"]), log_level="error") | ||
|
||
|
||
class TestSemanticMatchingService(unittest.TestCase): | ||
@classmethod | ||
def setUpClass(cls): | ||
cls.server_process = multiprocessing.Process(target=run_server) | ||
cls.server_process.start() | ||
|
||
@classmethod | ||
def tearDownClass(cls): | ||
cls.server_process.terminate() | ||
cls.server_process.join() | ||
|
||
def test_semantic_matching_service_iri(self): | ||
# TODO deposit DNS record | ||
sms_request = SMSRequest( | ||
semantic_id="foo://example.org:1234/over/there?name=bar#page=3", | ||
) | ||
response = requests.get( | ||
"http://127.0.0.1:8125/get_semantic_matching_service", | ||
data=sms_request.model_dump_json() | ||
) | ||
self.assertEqual( | ||
"https://example.org/fallback_semantic_matching_service", | ||
response.json()["semantic_matching_service_endpoint"] | ||
) | ||
|
||
def test_semantic_matching_service_irdi_eclass(self): | ||
sms_request = SMSRequest( | ||
semantic_id="0173-1#01-ACK323#017", | ||
) | ||
response = requests.get( | ||
"http://127.0.0.1:8125/get_semantic_matching_service", | ||
data=sms_request.model_dump_json() | ||
) | ||
self.assertEqual( | ||
"https://example.org/eclass_semantic_matching_service", | ||
response.json()["semantic_matching_service_endpoint"] | ||
) | ||
|
||
def test_semantic_matching_service_irdi_cdd(self): | ||
sms_request = SMSRequest( | ||
semantic_id="0112-1#01-ACK323#017", | ||
) | ||
response = requests.get( | ||
"http://127.0.0.1:8125/get_semantic_matching_service", | ||
data=sms_request.model_dump_json() | ||
) | ||
self.assertEqual( | ||
"https://example.org/cdd_semantic_matching_service", | ||
response.json()["semantic_matching_service_endpoint"] | ||
) | ||
|
||
def test_semantic_matching_service_fallback(self): | ||
sms_request = SMSRequest( | ||
semantic_id="nothing", | ||
) | ||
response = requests.get( | ||
"http://127.0.0.1:8125/get_semantic_matching_service", | ||
data=sms_request.model_dump_json() | ||
) | ||
self.assertEqual( | ||
"https://example.org/fallback_semantic_matching_service", | ||
response.json()["semantic_matching_service_endpoint"] | ||
) | ||
|
||
# TODO check debug endpoints | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[SERVICE] | ||
endpoint=127.0.0.1 | ||
port=8125 | ||
|
||
[RESOLVER] | ||
fallback_semantic_matching_service=https://example.org/fallback_semantic_matching_service | ||
eclass_semantic_matching_service=https://example.org/eclass_semantic_matching_service | ||
cdd_semantic_matching_service=https://example.org/cdd_semantic_matching_service | ||
debug_semantic_matching_service_endpoints=../debug_endpoints.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"https://example.org/semanticIDone": "http://localhost:1234/semantic_matching_service", | ||
"https://example.org/semanticIDtwo": "http://localhost:1234/semantic_matching_service" | ||
} |