conftest.py 864 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 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. db.ds.store.commit()
  28. @pytest.fixture
  29. def rnd_img():
  30. '''
  31. Generate a square image with random color tiles.
  32. '''
  33. return random_image(8, 256)