59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
from tempfile import gettempdir
|
|
|
|
import pytest
|
|
|
|
from specklepy.api import operations
|
|
from specklepy.api.client import SpeckleClient
|
|
from specklepy.api.credentials import Account, get_account_from_token
|
|
from specklepy.core.helpers import speckle_path_provider
|
|
from specklepy.logging.exceptions import SpeckleException, SpeckleWarning
|
|
from specklepy.objects.base import Base
|
|
from specklepy.transports.server import ServerTransport
|
|
|
|
|
|
def test_invalid_authentication():
|
|
# overriding the appdata path (it would be enough to just override the Accounts)
|
|
# but this way its cleaner
|
|
speckle_path_provider.override_application_data_path(gettempdir())
|
|
client = SpeckleClient()
|
|
|
|
with pytest.warns(SpeckleWarning):
|
|
client.authenticate_with_token("fake token")
|
|
|
|
# remove path override
|
|
speckle_path_provider.override_application_data_path(None)
|
|
|
|
|
|
def test_invalid_send():
|
|
client = SpeckleClient()
|
|
client.account = Account(token="fake_token")
|
|
transport = ServerTransport("3073b96e86", client)
|
|
|
|
with pytest.raises(SpeckleException):
|
|
operations.send(Base(), [transport])
|
|
|
|
|
|
def test_invalid_receive():
|
|
client = SpeckleClient()
|
|
client.account = Account(token="fake_token")
|
|
transport = ServerTransport("fake stream", client)
|
|
|
|
with pytest.raises(SpeckleException):
|
|
operations.receive("fake object", transport)
|
|
|
|
|
|
def test_account_from_token():
|
|
token = "fake token"
|
|
acct = get_account_from_token(token)
|
|
|
|
assert acct.token == token
|
|
|
|
|
|
def test_account_from_token_and_url():
|
|
token = "fake token"
|
|
url = "fake.server"
|
|
acct = get_account_from_token(token, url)
|
|
|
|
assert acct.token == token
|
|
assert acct.serverInfo.url == url
|