conftest.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. import pdb; pdb.set_trace()
  24. if hasattr(db.store, 'begin'):
  25. with TxnManager(db.store, True) as txn:
  26. db.bootstrap()
  27. bootstrap_binary_store(app)
  28. yield db
  29. #print('Tearing down fixture graph store.')
  30. #if hasattr(db.store, 'begin'):
  31. # with TxnManager(db.store, True) as txn:
  32. # for g in db.ds.graphs():
  33. # db.ds.remove_graph(g)
  34. @pytest.fixture
  35. def rnd_img():
  36. '''
  37. Generate a square image with random color tiles.
  38. '''
  39. return random_image(8, 256)