#!/usr/bin/python # # Copyright (C) 2010, Nokia # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # """ These tests use only the store. They insert instances with known text and run sparql with fts functions to check the results. """ import dbus import unittest import random from common.utils import configuration as cfg import unittest2 as ut #import unittest as ut from common.utils.storetest import CommonTrackerStoreTest as CommonTrackerStoreTest class TestFTSFunctions (CommonTrackerStoreTest): """ Insert data with text and check the fts:xxxx functions are returning the expected results """ def test_fts_rank (self): """ 1. Insert a Contact1 with 'abcdefxyz' as fullname and nickname 2. Insert a Contact2 with 'abcdefxyz' as fullname 2. Insert a Contact3 with 'abcdefxyz' as fullname and twice in nickname 3. Query sorting by fts:rank EXPECTED: The 3 contacts in order: 3, 1, 2 4. Remove the created resources """ insert_sparql = """ INSERT { a nco:PersonContact ; nco:fullname 'abcdefxyz' ; nco:nickname 'abcdefxyz' . a nco:PersonContact ; nco:fullname 'abcdefxyz' . a nco:PersonContact ; nco:fullname 'abcdefxyz' ; nco:nickname 'abcdefxyz abcdefxyz' . } """ self.tracker.update (insert_sparql) query = """ SELECT ?contact WHERE { ?contact a nco:PersonContact ; fts:match 'abcdefxyz' . } ORDER BY DESC (fts:rank(?contact)) """ results = self.tracker.query (query) self.assertEquals (len(results), 3) self.assertEquals (results[0][0], "contact://test/fts-function/rank/3") self.assertEquals (results[1][0], "contact://test/fts-function/rank/1") self.assertEquals (results[2][0], "contact://test/fts-function/rank/2") delete_sparql = """ DELETE { a rdfs:Resource . a rdfs:Resource . a rdfs:Resource . } """ self.tracker.update (delete_sparql) def test_fts_offsets (self): """ 1. Insert a Contact1 with 'abcdefxyz' as fullname and nickname 2. Insert a Contact2 with 'abcdefxyz' as fullname 2. Insert a Contact3 with 'abcdefxyz' as fullname and twice in nickname 3. Query fts:offsets for 'abcdefxyz' EXPECTED: The 3 contacts in insertion order, with 2, 1 and 3 pairs (prop, offset=1) each 4. Remove the created resources """ insert_sparql = """ INSERT { a nco:PersonContact ; nco:fullname 'abcdefxyz' ; nco:nickname 'abcdefxyz' . a nco:PersonContact ; nco:fullname 'abcdefxyz' . a nco:PersonContact ; nco:fullname 'abcdefxyz' ; nco:nickname 'abcdefxyz abcdefxyz' . } """ self.tracker.update (insert_sparql) query = """ SELECT fts:offsets (?contact) WHERE { ?contact a nco:PersonContact ; fts:match 'abcdefxyz' . } """ results = self.tracker.query (query) self.assertEquals (len(results), 3) self.assertEquals (results[0][0], 'nco:fullname,0,nco:nickname,0') self.assertEquals (results[1][0], 'nco:fullname,0') self.assertEquals (results[2][0], 'nco:fullname,0,nco:nickname,0,nco:nickname,10') delete_sparql = """ DELETE { a rdfs:Resource . a rdfs:Resource . a rdfs:Resource . } """ self.tracker.update (delete_sparql) if __name__ == '__main__': ut.main()