浏览代码

Merge pull request #69 from scossu/fix_3bound_mismatch

Fix 3bound mismatch
Stefano Cossu 7 年之前
父节点
当前提交
0c9e3f26ad
共有 2 个文件被更改,包括 42 次插入5 次删除
  1. 3 3
      lakesuperior/store/ldp_rs/lmdb_store.py
  2. 39 2
      tests/store/test_lmdb_store.py

+ 3 - 3
lakesuperior/store/ldp_rs/lmdb_store.py

@@ -930,8 +930,8 @@ class LmdbStore(Store):
 
         If more than one term is provided, the keys are concatenated.
 
-        :rtype: memoryview
-        :return: Keys stored for the term(s)
+        :rtype: memoryview or None
+        :return: Keys stored for the term(s) or None if not found.
         """
         if not isinstance(obj, list) and not isinstance(obj, tuple):
             obj = (obj,)
@@ -1000,7 +1000,7 @@ class LmdbStore(Store):
                 if o is not None:
                     with self.cur('spo:c') as cur:
                         tkey = self._to_key(triple_pattern)
-                        if cur.set_key(tkey):
+                        if tkey:
                             yield tkey
                             return
                         else:

+ 39 - 2
tests/store/test_lmdb_store.py

@@ -138,9 +138,21 @@ class TestBasicOps:
             assert _clean(res3) == _clean(res2)
 
 
-    def test_triple_no_match(self, store):
+    def test_triple_match_3bound(self, store):
         '''
-        Test various mismatches.
+        Test triple patterns matching 3 bound terms (exact match).
+        '''
+        with TxnManager(store) as txn:
+            pattern = (
+                URIRef('urn:test:s'), URIRef('urn:test:p'),
+                URIRef('urn:test:o'))
+            res1 = set(store.triples(pattern))
+            assert _clean(res1) == {pattern}
+
+
+    def test_triple_no_match_1bound(self, store):
+        '''
+        Test empty matches with 1 bound term.
         '''
         with TxnManager(store, True) as txn:
             store.add((
@@ -152,6 +164,19 @@ class TestBasicOps:
             res1 = set(store.triples((None, None, None)))
             assert len(res1) == 3
 
+            res1 = set(store.triples((URIRef('urn:test:s2'), None, None)))
+            res2 = set(store.triples((None, URIRef('urn:test:p4'), None)))
+            res3 = set(store.triples((None, None, URIRef('urn:test:o4'))))
+
+            assert len(res1) == len(res2) == len(res3) == 0
+
+
+
+    def test_triple_no_match_2bound(self, store):
+        '''
+        Test empty matches with 2 bound terms.
+        '''
+        with TxnManager(store, True) as txn:
             res1 = set(store.triples(
                 (URIRef('urn:test:s2'), URIRef('urn:test:p'), None)))
             res2 = set(store.triples(
@@ -162,6 +187,18 @@ class TestBasicOps:
             assert len(res1) == len(res2) == len(res3) == 0
 
 
+    def test_triple_no_match_3bound(self, store):
+        '''
+        Test empty matches with 3 bound terms.
+        '''
+        with TxnManager(store, True) as txn:
+            res1 = set(store.triples((
+                URIRef('urn:test:s2'), URIRef('urn:test:p3'),
+                URIRef('urn:test:o2'))))
+
+            assert len(res1) == 0
+
+
     def test_remove(self, store):
         '''
         Test removing one or more triples.