From 310d7d00b2e808f174750683335ec01f4af3291b Mon Sep 17 00:00:00 2001 From: Nickolay V. Shmyrev Date: Sat, 04 Apr 2009 21:34:19 +0000 Subject: Patch by Juanjo Marín to fix the bug 2009-04-05 Nickolay V. Shmyrev * 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 to fix the bug 517735. Fixes preview of the empty selection. svn path=/trunk/; revision=3570 --- (limited to 'test') 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') -- cgit v0.9.1