conftest.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import io
  2. import sys
  3. sys.path.append('.')
  4. import numpy
  5. import random
  6. import uuid
  7. from hashlib import sha1
  8. import pytest
  9. from PIL import Image
  10. from lakesuperior.app import create_app
  11. from lakesuperior.config_parser import config
  12. from lakesuperior.store_layouts.rdf.graph_store_connector import \
  13. GraphStoreConnector
  14. @pytest.fixture(scope='module')
  15. def app():
  16. app = create_app(config['test'], config['logging'])
  17. yield app
  18. @pytest.fixture(scope='module')
  19. def db(app):
  20. '''
  21. Set up and tear down test triplestore.
  22. '''
  23. dbconf = app.config['store']['ldp_rs']
  24. db = GraphStoreConnector(
  25. query_ep=dbconf['webroot'] + dbconf['query_ep'],
  26. update_ep=dbconf['webroot'] + dbconf['update_ep'])
  27. db.ds.default_context.parse(source='data/bootstrap/simple_layout.nq',
  28. format='nquads')
  29. db.store.commit()
  30. yield db
  31. print('Tearing down fixure graph store.')
  32. for g in db.ds.graphs():
  33. db.ds.remove_graph(g)
  34. db.store.commit()
  35. @pytest.fixture
  36. def rnd_image(rnd_utf8_string):
  37. '''
  38. Generate a square image with random color tiles.
  39. '''
  40. ts = 8 # Tile width and height. @TODO parametrize.
  41. ims = 256 # Image width and height. @TODO parametrize.
  42. imarray = numpy.random.rand(ts, ts, 3) * 255
  43. im = Image.fromarray(imarray.astype('uint8')).convert('RGBA')
  44. im = im.resize((ims, ims), Image.NEAREST)
  45. imf = io.BytesIO()
  46. im.save(imf, format='png')
  47. imf.seek(0)
  48. hash = sha1(imf.read()).hexdigest()
  49. return {
  50. 'content' : imf,
  51. 'hash' : hash,
  52. 'filename' : rnd_utf8_string + '.png'
  53. }
  54. @pytest.fixture
  55. def rnd_utf8_string():
  56. '''
  57. Generate a random UTF-8 string.
  58. '''
  59. # @TODO Update this to include code point ranges to be sampled
  60. include_ranges = [
  61. ( 0x0021, 0x0021 ),
  62. ( 0x0023, 0x0026 ),
  63. ( 0x0028, 0x007E ),
  64. ( 0x00A1, 0x00AC ),
  65. ( 0x00AE, 0x00FF ),
  66. ( 0x0100, 0x017F ),
  67. ( 0x0180, 0x024F ),
  68. ( 0x2C60, 0x2C7F ),
  69. ( 0x16A0, 0x16F0 ),
  70. ( 0x0370, 0x0377 ),
  71. ( 0x037A, 0x037E ),
  72. ( 0x0384, 0x038A ),
  73. ( 0x038C, 0x038C ),
  74. ]
  75. length = 64 # String length. @TODO parametrize.
  76. alphabet = [
  77. chr(code_point) for current_range in include_ranges
  78. for code_point in range(current_range[0], current_range[1] + 1)
  79. ]
  80. return ''.join(random.choice(alphabet) for i in range(length))