summaryrefslogtreecommitdiff
path: root/tests/functional-tests/01-insertion.py
blob: 4b1f9e89c1b740c30af9f44bb12b75543542895a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python2.5

# Copyright (C) 2008, Nokia (urho.konttori@nokia.com)
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA  02110-1301, USA.
#


import dbus
import unittest
import random

TRACKER = 'org.freedesktop.Tracker1'
TRACKER_OBJ = '/org/freedesktop/Tracker1/Resources'
RESOURCES_IFACE = "org.freedesktop.Tracker1.Resources"

class TestInsertion (unittest.TestCase):

    def setUp (self):
        bus = dbus.SessionBus ()
        tracker = bus.get_object (TRACKER, TRACKER_OBJ)
        self.resources = dbus.Interface (tracker,
                                         dbus_interface=RESOURCES_IFACE);

    def test_simple_insertion (self):
        """
        1. Insert a InformationElement with title.
        2. TEST: Query the title of that information element
        3. Remove the InformationElement to keep everything as it was before
        """
        
        uri = "tracker://test_insertion_1/" + str(random.randint (0, 100))
        
        insert = """
        INSERT { <%s> a nie:InformationElement;
                      nie:title \"test_insertion_1\". }
        """ % (uri)
        self.resources.SparqlUpdate (insert)

        query = """
        SELECT ?t WHERE {
           <%s> a nie:InformationElement ;
               nie:title ?t .
        }
        """ % (uri)
        results = self.resources.SparqlQuery (query)

        self.assertEquals (str(results[0][0]), "test_insertion_1")

        delete = """
        DELETE { <%s> a nie:InformationElement. }
        """ % (uri)
        self.resources.SparqlUpdate (delete)
        

if __name__ == '__main__':
    unittest.main()