wcs-olap/tests/test_feeder.py

14 lines
433 B
Python

import pytest
from wcs_olap.feeder import WcsOlapFeeder
def test_constructor():
feeder = WcsOlapFeeder(api=None, pg_dsn='', schema='x' * 63)
schema_temp = feeder.ctx.as_dict()['schema_temp']
assert len(schema_temp) < 64
assert schema_temp == 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxedd110xxxxxxxxxxxxxxxxxxxxxxxx_temp'
with pytest.raises(ValueError):
feeder = WcsOlapFeeder(api=None, pg_dsn='', schema='x' * 64)