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
|
#! /usr/bin/python
# This a simple test, using the dogtail framework:
#
# Activate the app via the org.gtk.Application bus interface.
# Check that the expected actions are exported on the session bus.
# Activate each action and verify the result.
import os
from gi.repository import Gio
settings = Gio.Settings.new("org.gnome.desktop.interface")
settings.set_boolean ("toolkit-accessibility", True)
from dogtail.tree import *
from dogtail.utils import *
from dogtail.procedural import *
from dogtail.rawinput import keyCombo
try:
run('gnome-software')
app = root.application('gnome-software')
bus = Gio.bus_get_sync(Gio.BusType.SESSION, None)
proxy = Gio.DBusProxy.new_sync(bus, Gio.DBusProxyFlags.NONE,
None,
'org.gnome.Software',
'/org/gnome/Software',
'org.gtk.Application')
proxy.call_sync('Activate', GLib.Variant('(a{sv})', ({},)), 0, -1, None)
doDelay(1)
try:
shopping_button = app.child(name=u'Let\u2019s Go Shopping', retry=False)
shopping_button.click()
except tree.SearchError:
print "not first-run, moving on"
doDelay(1)
assert (len(app.children) == 1)
dbus_actions = Gio.DBusProxy.new_sync(bus, Gio.DBusProxyFlags.NONE,
None,
'org.gnome.Software',
'/org/gnome/Software',
'org.gtk.Actions')
names = dbus_actions.call_sync('List', None, 0, -1, None).unpack()[0]
assert (u'quit' in names)
assert (u'about' in names)
dbus_actions.call_sync('Activate',
GLib.Variant('(sava{sv})', (u'about', [], {})),
0, -1, None)
doDelay (1)
assert (len(app.children) == 2)
keyCombo("<Esc>")
doDelay (1)
assert (len(app.children) == 1)
dbus_actions.call_sync('Activate',
GLib.Variant('(sava{sv})', (u'quit', [], {})),
0, -1, None)
assert (len(app.children) == 0)
finally:
os.system("killall gnome-software")
|