summaryrefslogtreecommitdiff
path: root/evolution/reply-mail.py
blob: 88e86d6cca41c5ef8eabb55f9dc3ce805a6aa5ad (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
90
91
92
93
94
95
96
97
98
#!/usr/bin/python
#
#  Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
#
#  Author:
#     Bhargavi  <kbhargavi_83@yahoo.co.in>
#     Premkumar <jpremkumar@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.
#

# To Reply a Mail using args supplied by a text file

#To reply mail
def reply_mail (source_fldr, mail_index, body, cc=''):
	try:
		time.sleep (3)
		selectmenuitem('evolution','mnuView;mnuWindow;mnuMail')
		time.sleep (15)

		selectrowpartialmatch ('evolution', 'ttblMailFolderTree', source_fldr)
		time.sleep (3)
		if mail_index == -1:
			mail_index = getrowcount ('evolution', 'ttblMessageList') - 1
		selectrowindex ('evolution', 'ttblMessageList', mail_index)
		subject = getcellvalue ('evolution', 'ttblMessageList', mail_index, 4)
		click ('evolution', 'btnReply')
		time.sleep (3)
		if subject.startswith ('Re:') == False:
			setcontext ('Compose a message', 'Re: '+subject)
		else:
			setcontext ('Compose a message', subject)
		time.sleep (5)
		if guiexist ('Composeamessage') == 0:
			log ('Failed to open reply frame', 'error')
			raise LdtpExecutionError (0)
		else:
			new_context = 'Re: '+subject
			if cc!='' and setandverify ('Composeamessage', 'txtCc', cc) == 0:
				log ('Failed to insert into Cc field', 'error')
				raise LdtpExecutionError (0)
			else:
				if setandverify ('Composeamessage', 'txt6', body) == 0:
					log ('Failed to insert body text', 'error')
					raise LdtpExecutionError (0)
				else:
					click ('Composeamessage', 'btnSend')
					time.sleep (5)
					if guiexist ('Composeamessage') == 1:
						log ('Failed to close Compose dialog after sending', 'error')
						raise LdtpExecutionError (0)
					else:
						click ('evolution', 'btnSend/Receive')
						time.sleep (3)
						log ('Reply-message-Success', 'pass')
	except error:
		releasecontext ()
		print 'Reply messsage Failed'
		log('Reply-Mail-Failed','fail')

#Trying to read from the file
file = open('reply-mail.dat', 'r')
argmts = file.readlines ()
Bodytxt_Mail = argmts[0].strip ()
Cc_mailid = argmts[1].strip ()
source_fldr = argmts[2].strip ()
mail_index = argmts[3].strip ()

if source_fldr == '$':
	source_fldr = 'Inbox'
if mail_index == '$':
	mail_index = -1

# Call the function

log('Reply and Verification of Mail','teststart')
log('Reply Mail', 'teststart')
reply_mail (source_fldr, mail_index, Bodytxt_Mail, Cc_mailid)
log('Reply Mail','testend')
log('Reply Mail - Verification', 'teststart')
verifymailwithimage ('Sent Items', -1,'replymail_refimg.png')
log('Reply Mail - Verification', 'testend')
log('ReplyandVerificationofMail', 'testend')