aboutsummaryrefslogtreecommitdiff
path: root/libcontextsubscriber/customer-tests/commander/commander_nonexistent.py
blob: d595961b9e5d2a937f484639fd979d675eac7f62 (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
71
72
73
74
75
76
77
#!/usr/bin/env python2.5
##
## This file is part of ContextKit.
##
## Copyright (C) 2008, 2009 Nokia. All rights reserved.
##
## Contact: Marius Vollmer <marius.vollmer@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
## version 2.1 as published by the Free Software Foundation.
##
## 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 St, Fifth Floor, Boston, MA
## 02110-1301 USA
##
##
## This test:
##       - starts up a client and a provider
##       - starts a commander with a different value and type for a provider
##         provided property and with a new string non-provided property
##       - checks that the client gets an error for the provider provided property
##       - checks that the client gets the new string non-provided property
##       - changes the non-provided property's type to int and checks it
##         (so this proves that type checks are always off for commander properties)

import sys
import os
import unittest
from ContextKit.cltool import CLTool, wanted

class CommanderNonExistent(unittest.TestCase):
        def tearDown(self):
                os.unlink('context-provide.context')

        def testCommanderFunctionality(self):
                provider = CLTool("context-provide", "--v2", "com.nokia.test", "int", "test.int", "42")
                provider.send("dump")
                self.assert_(provider.expect("Wrote")) # wait for it
                listen = CLTool("context-listen", "test.int", "test.string")
                listen.expect("Available commands") # wait for starting

                commander = CLTool("context-provide", "--v2")

                # check type-check
                commander.send("add string test.int foobar")
                commander.expect("Added key: test.int")
                self.assert_(listen.expect("Type check failed for \"test.int\""),
                             "Type check didn't work")

                # check the non-existent property
                commander.send("add string test.string barfoo")
                commander.expect("Added key: test.string")
                self.assert_(listen.expect(wanted("test.string", "QString", "\"barfoo\"")),
                             "Non-existent property couldn't be commanded")

                # change the type of the non-existent property
                commander.send("add int test.string 42")
                self.assert_(listen.expect(wanted("test.string", "int", "42")),
                             "Non-existent property's type couldn't be overwritten")

		commander.wait()
		listen.wait()
		provider.wait()
def runTests():
        suiteInstallation = unittest.TestLoader().loadTestsFromTestCase(CommanderNonExistent)
        result = unittest.TextTestRunner(verbosity=2).run(suiteInstallation)
        return len(result.errors + result.failures)

if __name__ == "__main__":
        sys.exit(runTests())