mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-25 19:42:13 +00:00
78 lines
2.2 KiB
Python
78 lines
2.2 KiB
Python
import json
|
|
import shutil
|
|
import tempfile
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
import RNS
|
|
|
|
from meshchatx.meshchat import ReticulumMeshChat
|
|
|
|
|
|
@pytest.fixture
|
|
def temp_dir():
|
|
dir_path = tempfile.mkdtemp()
|
|
yield dir_path
|
|
shutil.rmtree(dir_path)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_rns_minimal():
|
|
with (
|
|
patch("RNS.Reticulum") as mock_rns,
|
|
patch("RNS.Transport"),
|
|
patch("LXMF.LXMRouter"),
|
|
patch("meshchatx.meshchat.get_file_path", return_value="/tmp/mock_path"),
|
|
):
|
|
mock_rns_instance = mock_rns.return_value
|
|
mock_rns_instance.configpath = "/tmp/mock_config"
|
|
mock_rns_instance.is_connected_to_shared_instance = False
|
|
mock_rns_instance.transport_enabled.return_value = True
|
|
|
|
mock_id = MagicMock(spec=RNS.Identity)
|
|
mock_id.hash = b"test_hash_32_bytes_long_01234567"
|
|
mock_id.hexhash = mock_id.hash.hex()
|
|
mock_id.get_private_key.return_value = b"test_private_key"
|
|
yield mock_id
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_licenses_endpoint_returns_json(mock_rns_minimal, temp_dir):
|
|
payload = {
|
|
"backend": [
|
|
{"name": "aiohttp", "version": "1", "author": "x", "license": "Apache-2.0"},
|
|
],
|
|
"frontend": [],
|
|
"meta": {
|
|
"generated_at": "2020-01-01T00:00:00Z",
|
|
"backend_count": 1,
|
|
"frontend_count": 0,
|
|
"frontend_source": "none",
|
|
},
|
|
}
|
|
with (
|
|
patch("meshchatx.meshchat.generate_ssl_certificate"),
|
|
patch(
|
|
"meshchatx.src.backend.licenses_collector.build_licenses_payload",
|
|
return_value=payload,
|
|
),
|
|
):
|
|
app_instance = ReticulumMeshChat(
|
|
identity=mock_rns_minimal,
|
|
storage_dir=temp_dir,
|
|
reticulum_config_dir=temp_dir,
|
|
)
|
|
|
|
handler = None
|
|
for route in app_instance.get_routes():
|
|
if route.path == "/api/v1/licenses" and route.method == "GET":
|
|
handler = route.handler
|
|
break
|
|
|
|
assert handler is not None
|
|
request = MagicMock()
|
|
response = await handler(request)
|
|
assert response.status == 200
|
|
data = json.loads(response.body)
|
|
assert data == payload
|