conftest.py 838 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import sys
  2. sys.path.append('.')
  3. import numpy
  4. import random
  5. import uuid
  6. import pytest
  7. from PIL import Image
  8. from lakesuperior.app import create_app
  9. from lakesuperior.config_parser import config
  10. from util.generators import random_image
  11. from util.bootstrap import bootstrap_db, bootstrap_binary_store
  12. @pytest.fixture(scope='module')
  13. def app():
  14. app = create_app(config['test'], config['logging'])
  15. yield app
  16. @pytest.fixture(scope='module')
  17. def db(app):
  18. '''
  19. Set up and tear down test triplestore.
  20. '''
  21. db = bootstrap_db(app)
  22. bootstrap_binary_store(app)
  23. yield db
  24. print('Tearing down fixure graph store.')
  25. for g in db.ds.graphs():
  26. db.ds.remove_graph(g)
  27. @pytest.fixture
  28. def rnd_img():
  29. '''
  30. Generate a square image with random color tiles.
  31. '''
  32. return random_image(8, 256)