test_toolbox.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. @pytest.fixture
  6. def app_ctx(client):
  7. '''
  8. Initialize the app context.
  9. '''
  10. return client.head('/ldp')
  11. @pytest.mark.usefixtures('app_ctx')
  12. class TestToolbox:
  13. '''
  14. Unit tests for toolbox methods.
  15. '''
  16. #def test_camelcase(self):
  17. # '''
  18. # Test conversion from underscore notation to camelcase.
  19. # '''
  20. # assert g.tbox.camelcase('test_input_string') == 'TestInputString'
  21. # assert g.tbox.camelcase('_test_input_string') == '_TestInputString'
  22. # assert g.tbox.camelcase('test__input__string') == 'Test_Input_String'
  23. def test_uuid_to_uri(self):
  24. assert g.tbox.uuid_to_uri('1234') == URIRef(g.webroot + '/1234')
  25. assert g.tbox.uuid_to_uri('') == URIRef(g.webroot)
  26. def test_uri_to_uuid(self):
  27. assert g.tbox.uri_to_uuid(URIRef(g.webroot) + '/test01') == 'test01'
  28. assert g.tbox.uri_to_uuid(URIRef(g.webroot) + '/test01/test02') == \
  29. 'test01/test02'
  30. assert g.tbox.uri_to_uuid(URIRef(g.webroot)) == ''
  31. assert g.tbox.uri_to_uuid(nsc['fcsystem'].root) == None
  32. assert g.tbox.uri_to_uuid(nsc['fcres']['1234']) == '1234'
  33. assert g.tbox.uri_to_uuid(nsc['fcres']['1234/5678']) == '1234/5678'
  34. def test_localize_string(self):
  35. '''
  36. Test string localization.
  37. '''
  38. assert g.tbox.localize_string(g.webroot + '/test/uid') == \
  39. g.tbox.localize_string(g.webroot + '/test/uid/') == \
  40. str(nsc['fcres']['test/uid'])
  41. assert g.tbox.localize_string(g.webroot) == str(nsc['fcsystem'].root)
  42. assert g.tbox.localize_string('http://bogus.org/test/uid') == \
  43. 'http://bogus.org/test/uid'
  44. def test_localize_term(self):
  45. '''
  46. Test term localization.
  47. '''
  48. assert g.tbox.localize_term(g.webroot + '/test/uid') == \
  49. g.tbox.localize_term(g.webroot + '/test/uid/') == \
  50. nsc['fcres']['test/uid']