1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import pytest
- from rdflib.term import URIRef
- from lakesuperior.dictionaries.namespaces import ns_collection as nsc
- from lakesuperior.toolbox import Toolbox
- @pytest.fixture
- def tb(client):
- c = client.get('/ldp')
- return Toolbox()
- class TestToolbox:
- '''
- Unit tests for toolbox methods.
- '''
- #def test_camelcase(self, tb):
- # '''
- # Test conversion from underscore notation to camelcase.
- # '''
- # assert tb.camelcase('test_input_string') == 'TestInputString'
- # assert tb.camelcase('_test_input_string') == '_TestInputString'
- # assert tb.camelcase('test__input__string') == 'Test_Input_String'
- def test_uuid_to_uri(self, tb):
- assert tb.uuid_to_uri('1234') == URIRef(tb.base_url + '/1234')
- assert tb.uuid_to_uri('') == URIRef(tb.base_url)
- def test_uri_to_uuid(self, tb):
- assert tb.uri_to_uuid(URIRef(tb.base_url) + '/test01') == 'test01'
- assert tb.uri_to_uuid(URIRef(tb.base_url) + '/test01/test02') == \
- 'test01/test02'
- assert tb.uri_to_uuid(URIRef(tb.base_url)) == ''
- assert tb.uri_to_uuid(nsc['fcsystem'].root) == None
- assert tb.uri_to_uuid(nsc['fcres']['1234']) == '1234'
- assert tb.uri_to_uuid(nsc['fcres']['1234/5678']) == '1234/5678'
- def test_localize_string(self, tb):
- '''
- Test string localization.
- '''
- assert tb.localize_string(tb.base_url + '/test/uid') == \
- tb.localize_string(tb.base_url + '/test/uid/') == \
- str(nsc['fcres']['test/uid'])
- assert tb.localize_string(tb.base_url) == str(nsc['fcsystem'].root)
- assert tb.localize_string('http://bogus.org/test/uid') == \
- 'http://bogus.org/test/uid'
- def test_localize_term(self, tb):
- '''
- Test term localization.
- '''
- assert tb.localize_term(tb.base_url + '/test/uid') == \
- tb.localize_term(tb.base_url + '/test/uid/') == \
- nsc['fcres']['test/uid']
|