summaryrefslogtreecommitdiff
path: root/evolution/rename-mail-folder.py
blob: 403a41f406ff081e1aa3234610714e18c1eeae91 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/python
#
#  Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
#
#  Author:
#     Khasim Shaheed <sshaik@novell.com>
#
#  Copyright 2004 Novell, Inc.
#
#  This test script is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Library General Public
#  License as published by the Free Software Foundation; either
#  version 2 of the License, or (at your option) any later version.
#
#  This library is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Library General Public License for more details.
#
#  You should have received a copy of the GNU Library General Public
#  License along with this library; if not, write to the
#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
#  Boston, MA 02111-1307, USA.
#

# Rename a mail folder

import time

from ldtp import *
from ldtputils import *

# Section to rename a mail folder
def rename_mail_folder (prev_label, new_label):
	try:
		selectrow ('frmEvolution-Mail', 'ttblMailFolderTree', prev_label)
		selectmenuitem ('frmEvolution-Mail', 'mnuFolder;mnuRename')
		if waittillguiexist ('dlgRenameFolder') == 0:
			log ('Rename Folder dialog not opened', 'error')
			raise LdtpExecutionError (0)

		settextvalue ('dlgRenameFolder', 'txt0', new_label)
		click ('dlgRenameFolder', 'btnOK')
		if waittillguinotexist ('dlgRenameFolder') == 0:
			log ('Rename Folder dialog not closed', 'error')
			raise LdtpExecutionError (0)

		time.sleep (2)
		if guiexist ('dlgEvolutionError'):
			click ('dlgEvolutionError', 'btnOK')
			time.sleep (1)
			click ('dlgRenameFolder', 'btnCancel')
			
			# TODO: The reason for the error should be logged and 
			# Pass/Fail condition has to be changed accordingly
			log ('Renaming folder failed', 'cause')
			log ('Renaming folder failed', 'fail')
		else:
			if doesrowexist ('frmEvolution-Mail', 'ttblMailFolderTree', prev_label):
				log ('Renaming a folder failed, renaming not done properly', 'cause')
				log ('Renaming a folder failed, renaming not done properly', 'fail')
			elif doesrowexist ('frmEvolution-Mail', 'ttblMailFolderTree', new_label):
				log ('Renaming a folder passed successfully', 'pass')
			else:
				log ('Renaming a folder failed', 'cause')
				log ('Renaming a folder failed', 'fail')

	except ldtp.error, msg:
		log ('Renaming a mail folder failed, ' + str (msg), 'cause')
		log ('Renaming a mail folder failed', 'fail')
		if guiexist ('dlgRenameFolder'):
			click ('dlgRenameFolder', 'btnCancel')
		raise LdtpExecutionError (0)	

# Read input from file
data_object = LdtpDataFileParser (datafilename)
prev_label = data_object.gettagvalue ('prev_label')
new_label = data_object.gettagvalue ('new_label')

# Call the function
if prev_label and new_label:
	rename_mail_folder (prev_label[0], new_label[0])
else:
	if not (prev_label):
		log ('prev_label not provided in data xml file', 'error')
	if not (new_label):
		log ('new_label not provided in data xml file', 'error')
	log ('Delete folder', 'fail')