test_toolbox.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_uid_to_uri(self):
  24. assert g.tbox.uid_to_uri('1234') == URIRef(g.webroot + '/1234')
  25. assert g.tbox.uid_to_uri('') == URIRef(g.webroot)
  26. def test_uri_to_uid(self):
  27. assert g.tbox.uri_to_uid(URIRef(g.webroot) + '/test01') == 'test01'
  28. assert g.tbox.uri_to_uid(URIRef(g.webroot) + '/test01/test02') == \
  29. 'test01/test02'
  30. assert g.tbox.uri_to_uid(URIRef(g.webroot)) == ''
  31. assert g.tbox.uri_to_uid(nsc['fcres']['']) == ''
  32. assert g.tbox.uri_to_uid(nsc['fcres']['1234']) == '1234'
  33. assert g.tbox.uri_to_uid(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['fcres'][''])
  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']
  51. def test_localize_ext_str(self):
  52. '''
  53. Test extended string localization.
  54. '''
  55. input = '''
  56. @prefix bogus: <http://bogs.r.us#>
  57. @prefix ex: <{0}/ns#>
  58. FREE GRATUITOUS {{
  59. <#blah> a <{0}/type#A> .
  60. <> <info:ex/p> <xyz> .
  61. <#c#r#a#zy> ex:virtue <?blah#e> .
  62. <{0}> <{0}/go#lala>
  63. <{0}/heythere/gulp> .
  64. }} GARB AGE TOKENS {{
  65. <{0}/hey?there#hoho> <https://goglyeyes.com#cearch>
  66. <{0}#hehe> .
  67. <{0}?there#haha> <info:auth/blok> "Hi I'm a strong" .
  68. }}
  69. '''.format(g.webroot)
  70. exp_output = '''
  71. @prefix bogus: <http://bogs.r.us#>
  72. @prefix ex: <info:fcres/ns#>
  73. FREE GRATUITOUS {
  74. <info:fcres/123#blah> a <info:fcres/type#A> .
  75. <info:fcres/123> <info:ex/p> <xyz> .
  76. <info:fcres/123#c#r#a#zy> ex:virtue <info:fcres/123?blah#e> .
  77. <info:fcres/> <info:fcres/go#lala>
  78. <info:fcres/heythere/gulp> .
  79. } GARB AGE TOKENS {
  80. <info:fcres/hey?there#hoho> <https://goglyeyes.com#cearch>
  81. <info:fcres/#hehe> .
  82. <info:fcres/?there#haha> <info:auth/blok> "Hi I'm a strong" .
  83. }
  84. '''
  85. assert g.tbox.localize_ext_str(
  86. input, nsc['fcres']['123']) == exp_output