summaryrefslogtreecommitdiff
path: root/test/test2.py
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-11-09 18:17:43 -0300
committerPerberos <[email protected]>2011-11-09 18:17:43 -0300
commitf6ce926719943751cf65cacde7fae050593eb2d6 (patch)
tree9224d1751678cf2d1fbd0431f128b711311c0287 /test/test2.py
downloadatril-f6ce926719943751cf65cacde7fae050593eb2d6.tar.bz2
atril-f6ce926719943751cf65cacde7fae050593eb2d6.tar.xz
inicial
Diffstat (limited to 'test/test2.py')
-rwxr-xr-xtest/test2.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/test2.py b/test/test2.py
new file mode 100755
index 00000000..ca06b66b
--- /dev/null
+++ b/test/test2.py
@@ -0,0 +1,28 @@
+#!/usr/bin/python
+
+# This test opens a password encrypted file and tries to unlock it.
+
+import os
+os.environ['LANG']='C'
+srcdir = os.environ['srcdir']
+
+from dogtail.procedural import *
+
+run('evince', arguments=' '+srcdir+'/test-encrypt.pdf')
+
+# Try an incorrect password first
+focus.dialog('Enter password')
+focus.widget('Password Entry', roleName='password text')
+type('wrong password')
+click('Unlock Document', roleName='push button')
+click('Cancel', roleName='push button')
+
+# Try again with the correct password
+click('Unlock Document', roleName='push button')
+focus.widget('Password Entry', roleName='password text')
+type('Foo')
+click('Unlock Document', roleName='push button')
+
+# Close evince
+click('File', roleName='menu')
+click('Close', roleName='menu item')