conftest.py 880 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import pytest
  2. from lakesuperior import env
  3. from lakesuperior.config_parser import test_config
  4. from lakesuperior.globals import AppGlobals
  5. env.config = test_config
  6. env.app_globals = AppGlobals(test_config)
  7. from lakesuperior.app import create_app
  8. from lakesuperior.util.generators import random_image
  9. env.config = test_config
  10. @pytest.fixture(scope='module')
  11. def app():
  12. app = create_app(env.config['application'])
  13. yield app
  14. @pytest.fixture(scope='module')
  15. def db(app):
  16. '''
  17. Set up and tear down test triplestore.
  18. '''
  19. rdfly = env.app_globals.rdfly
  20. rdfly.bootstrap()
  21. env.app_globals.nonrdfly.bootstrap()
  22. yield rdfly
  23. print('Tearing down fixture graph store.')
  24. rdfly.store.destroy(rdfly.store.path)
  25. @pytest.fixture
  26. def rnd_img():
  27. '''
  28. Generate a square image with random color tiles.
  29. '''
  30. return random_image(8, 256)