123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- import json
- import pdb
- import pytest
- from flask import g
- from lakesuperior.dictionaries.namespaces import ns_collection as nsc
- @pytest.mark.usefixtures('client_class')
- @pytest.mark.usefixtures('db')
- class TestTermSearch:
- """
- Test term search endpoint.
- """
- def test_query_all(self):
- """
- Query all LDP resources.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [{
- 'pred': 'rdf:type',
- 'op': '_id',
- 'val': 'ldp:Resource',
- }],
- }), content_type='application/json')
- assert g.webroot + '/' in rsp.json
- def test_query_non_root(self):
- """
- Query non-root resources.
- """
- put_resp = self.client.put('/ldp/test_term_search',
- data=b'<> <http://www.w3.org/2004/02/skos/core#prefLabel> "Hello" .',
- content_type='text/turtle')
- assert put_resp.status_code == 201
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [{
- 'pred': 'skos:prefLabel',
- 'op': '_id',
- 'val': '"Hello"',
- }],
- }), content_type='application/json')
- assert rsp.json == [g.webroot + '/test_term_search']
- def test_query_root(self):
- """
- Query root.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [{
- 'pred': 'rdf:type',
- 'op': '_id',
- 'val': 'fcrepo:RepositoryRoot',
- }],
- }), content_type='application/json')
- assert rsp.json == [g.webroot + '/']
- def test_query_string_eq(self):
- """
- Query by string-wise equality.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [{
- 'pred': 'skos:prefLabel',
- 'op': '=',
- 'val': 'Hello',
- }],
- }), content_type='application/json')
- assert rsp.json == [g.webroot + '/test_term_search']
- def test_query_string_neq(self):
- """
- Query by string-wise inequality.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [{
- 'pred': 'skos:prefLabel',
- 'op': '!=',
- 'val': 'Repository Root',
- }],
- }), content_type='application/json')
- assert rsp.json == [g.webroot + '/test_term_search']
- def test_query_fquri(self):
- """
- Query using fully qualified URIs.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [{
- 'pred': '<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ',
- 'op': '_id',
- 'val': '<http://fedora.info/definitions/v4/repository#RepositoryRoot>',
- }],
- }), content_type='application/json')
- assert rsp.json == [g.webroot + '/']
- def test_query_multi_term_and(self):
- """
- Query using two terms and AND logic.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'and',
- 'terms': [
- {
- 'pred': 'rdf:type',
- 'op': '_id',
- 'val': 'ldp:Container',
- },
- {
- 'pred': 'skos:prefLabel',
- 'op': '=',
- 'val': 'Hello',
- },
- ],
- }), content_type='application/json')
- assert rsp.json == [g.webroot + '/test_term_search']
- def test_query_multi_term_or(self):
- """
- Query using two terms and AND logic.
- """
- self.client.get('/ldp')
- rsp = self.client.post(
- '/query/term_search', data=json.dumps({
- 'logic': 'or',
- 'terms': [
- {
- 'pred': 'rdf:type',
- 'op': '_id',
- 'val': 'ldp:Container',
- },
- {
- 'pred': 'skos:prefLabel',
- 'op': '=',
- 'val': 'Hello',
- },
- ],
- }), content_type='application/json')
- assert g.webroot + '/' in rsp.json
- assert g.webroot + '/test_term_search' in rsp.json
|