conftest.py 910 B

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