summaryrefslogtreecommitdiff
path: root/evolution/deletemail.py
blob: cf604da4dbcdc450351cecebc5535c25d490cc3d (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
#
#  Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
#
#  Author:
#     Bhargavi  <kbhargavi_83@yahoo.co.in>
#     Premkumar <jpremkumar@novell.com>
#     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.
#

# Deleting an existing Mail
import time

from ldtp import *
from evoutils.mail import *

# Section to delete a mail
def delete_mail (source_fldr, mail_index):
	try:
		selectrowpartialmatch ('frmEvolution-Mail', 'ttblMailFolderTree', source_fldr)
		time.sleep (2)
		rowcount = getrowcount('frmEvolution-Mail', 'ttblMessageList') 
		if rowcount > 0:
			if mail_index == -1:
				mail_index = rowcount-1
			selectrowindex ('frmEvolution-Mail', 'ttblMessageList', mail_index)
			time.sleep (1)
			selectmenuitem ('frmEvolution-Mail', 'mnuEdit;mnuDeleteMessage')
			time.sleep (1)
			selectrowpartialmatch ('frmEvolution-Mail', 'ttblMailFolderTree', source_fldr)
			time.sleep (2)
			row_after = getrowcount('frmEvolution-Mail','ttblMessageList')
			if row_after == (rowcount-1):
				log ('Deleting a mail passed successfully', 'pass') 
			else:
				log ('Row count does not match after delete mail', 'cause')
				log ('Deleting a mail failed', 'fail')
		else:
			log ('From folder empty!', 'Warning')
			log ('Did not Delete any mail from source folder', 'Pass')
	except ldtp.error,msg:
		log ('Deleting mail failed' + str(msg), 'cause')
		log ('delete mail failed', 'fail')
		raise LdtpExecutionError (0)
			
# Read input from file
data_object = LdtpDataFileParser (datafilename)
source_fldr = data_object.gettagvalue ('source_fldr')
mail_index = data_object.gettagvalue ('mail_index')

# Call the function
if source_fldr and mail_index:
	delete_mail (source_fldr[0], int (mail_index[0]))
else:
	if not(source_fldr):
		log ('source_fldr not provided in data xml file', 'error')
        if not(mail_index):
		log ('mail_index not provided in data xml file', 'error')
        log ('Delete mail', 'fail')