conftest.py 1008 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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_layouts.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, 'begin'):
  28. # with TxnManager(db.store, True) as txn:
  29. # for g in db.ds.graphs():
  30. # db.ds.remove_graph(g)
  31. @pytest.fixture
  32. def rnd_img():
  33. '''
  34. Generate a square image with random color tiles.
  35. '''
  36. return random_image(8, 256)