test_toolbox.py 2.0 KB

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