conftest.py 914 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  11. from util.generators import random_image
  12. from util.bootstrap import bootstrap_binary_store
  13. @pytest.fixture(scope='module')
  14. def app():
  15. app = create_app(config['test'], config['logging'])
  16. yield app
  17. @pytest.fixture(scope='module')
  18. def db(app):
  19. '''
  20. Set up and tear down test triplestore.
  21. '''
  22. db = app.rdfly
  23. db.bootstrap()
  24. bootstrap_binary_store(app)
  25. yield db
  26. print('Tearing down fixture graph store.')
  27. if hasattr(db.store, 'destroy'):
  28. db.store.destroy(db.store.path)
  29. @pytest.fixture
  30. def rnd_img():
  31. '''
  32. Generate a square image with random color tiles.
  33. '''
  34. return random_image(8, 256)