test_toolbox.py 1.9 KB

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