conftest.py 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_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 = app.rdfly
  22. db.bootstrap()
  23. bootstrap_binary_store(app)
  24. yield db
  25. print('Tearing down fixure graph store.')
  26. for g in db.ds.graphs():
  27. db.ds.remove_graph(g)
  28. db.ds.store.commit()
  29. @pytest.fixture
  30. def rnd_img():
  31. '''
  32. Generate a square image with random color tiles.
  33. '''
  34. return random_image(8, 256)