Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2009-04-04 21:34:19 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2009-04-04 21:34:19 (GMT)
commit310d7d00b2e808f174750683335ec01f4af3291b (patch)
treea553cb4ba358525657d52bd964c3784b22079877 /test
parent5a4c35515e95a0a1be9e003574b71e9d21fbfb36 (diff)
Patch by Juanjo Marín <juanj.marin@juntadeandalucia.es> to fix the bug
2009-04-05 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * shell/ev-print-operation.c (clamp_ranges), (ev_print_operation_export_print_dialog_response_cb): * test/Makefile.am: * test/test7.py: Patch by Juanjo Marín <juanj.marin@juntadeandalucia.es> to fix the bug 517735. Fixes preview of the empty selection. svn path=/trunk/; revision=3570
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am3
-rwxr-xr-xtest/test7.py33
2 files changed, 35 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 8274877..17855ea 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -5,7 +5,8 @@ dist_check_SCRIPTS = \
test3.py \
test4.py \
test5.py \
- test6.py
+ test6.py \
+ test7.py
TESTS = $(dist_check_SCRIPTS)
diff --git a/test/test7.py b/test/test7.py
new file mode 100755
index 0000000..f104a47
--- /dev/null
+++ b/test/test7.py
@@ -0,0 +1,33 @@
+#!/usr/bin/python
+
+# Test printing
+
+import os
+os.environ['LANG']='C'
+srcdir = os.environ['srcdir']
+
+from dogtail.procedural import *
+
+run('evince', arguments=' '+srcdir+'/test-page-labels.pdf')
+
+#!/usr/bin/python
+from dogtail.procedural import *
+
+focus.application('evince')
+focus.frame('test-page-labels.pdf')
+click('File', roleName='menu')
+click('Print...', roleName='menu item')
+focus.dialog('Print')
+click('Pages:', roleName='radio button')
+keyCombo('Tab')
+type('1')
+click('Page Setup', roleName='page tab', raw=True)
+click('All sheets')
+click('Even sheets')
+click('Print Preview', roleName='push button')
+keyCombo('Return')
+click('Cancel')
+
+# Close evince
+click('File', roleName='menu')
+click('Close', roleName='menu item')