]> www.fi.muni.cz Git - evince.git/blobdiff - test/test2.py
Cleaned up the dogtail scripts.
[evince.git] / test / test2.py
index 7e52c57e6548086eb250ee3157c56d7e554121e0..c0958c857ec0870396647e559b320531b2f6ce37 100755 (executable)
@@ -1,22 +1,24 @@
 #!/usr/bin/python
 
-from dogtail.procedural import *
-from dogtail.utils import screenshot
+# This test opens a password encrypted file and tries to unlock it.
 
-import os
+from dogtail.procedural import *
 
-os.environ['LANG']='en_US.UTF-8'
-os.system ('rm -rf ~/.gnome2/evince')
+run('evince', arguments=' ./test-encrypt.pdf',)
 
-run('evince',arguments=' ./test-encrypt.pdf',)
+# Try an incorrect password first
 focus.dialog('Enter password')
 focus.widget('Password Entry', roleName='password text')
-type("wrong password")
+type('wrong password')
 click('OK', 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")
+type('Foo')
 click('OK', roleName='push button')
-click('Close', roleName='menu item')
 
+# Close evince
+click('File', roleName='menu')
+click('Close', roleName='menu item')