test_toolbox.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import pytest
  2. from flask import g
  3. from rdflib.term import URIRef
  4. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  5. from lakesuperior.toolbox import Toolbox
  6. @pytest.fixture
  7. def tb(client):
  8. c = client.get('/ldp')
  9. return Toolbox()
  10. class TestToolbox:
  11. '''
  12. Unit tests for toolbox methods.
  13. '''
  14. #def test_camelcase(self, tb):
  15. # '''
  16. # Test conversion from underscore notation to camelcase.
  17. # '''
  18. # assert tb.camelcase('test_input_string') == 'TestInputString'
  19. # assert tb.camelcase('_test_input_string') == '_TestInputString'
  20. # assert tb.camelcase('test__input__string') == 'Test_Input_String'
  21. def test_uuid_to_uri(self, tb):
  22. assert tb.uuid_to_uri('1234') == URIRef(g.webroot + '/1234')
  23. assert tb.uuid_to_uri('') == URIRef(g.webroot)
  24. def test_uri_to_uuid(self, tb):
  25. assert tb.uri_to_uuid(URIRef(g.webroot) + '/test01') == 'test01'
  26. assert tb.uri_to_uuid(URIRef(g.webroot) + '/test01/test02') == \
  27. 'test01/test02'
  28. assert tb.uri_to_uuid(URIRef(g.webroot)) == ''
  29. assert tb.uri_to_uuid(nsc['fcsystem'].root) == None
  30. assert tb.uri_to_uuid(nsc['fcres']['1234']) == '1234'
  31. assert tb.uri_to_uuid(nsc['fcres']['1234/5678']) == '1234/5678'
  32. def test_localize_string(self, tb):
  33. '''
  34. Test string localization.
  35. '''
  36. assert tb.localize_string(g.webroot + '/test/uid') == \
  37. tb.localize_string(g.webroot + '/test/uid/') == \
  38. str(nsc['fcres']['test/uid'])
  39. assert tb.localize_string(g.webroot) == str(nsc['fcsystem'].root)
  40. assert tb.localize_string('http://bogus.org/test/uid') == \
  41. 'http://bogus.org/test/uid'
  42. def test_localize_term(self, tb):
  43. '''
  44. Test term localization.
  45. '''
  46. assert tb.localize_term(g.webroot + '/test/uid') == \
  47. tb.localize_term(g.webroot + '/test/uid/') == \
  48. nsc['fcres']['test/uid']