16 lines
483 B
Python
16 lines
483 B
Python
import os
|
|
import unittest
|
|
|
|
from ca_core.crypto.zenroom_service_client import ZenroomServiceClient
|
|
|
|
|
|
class TestZenroomHTTPIntegration(unittest.TestCase):
|
|
|
|
@unittest.skipUnless(os.getenv("ZENROOM_BASE_URL"), "No ZENROOM_BASE_URL set")
|
|
def test_sign_and_verify_roundtrip(self):
|
|
base_url = os.environ["ZENROOM_BASE_URL"]
|
|
client = ZenroomServiceClient(base_url=base_url)
|
|
|
|
# You must supply real keys here for full integration
|
|
self.assertTrue(True)
|