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
|
#
# 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.
#
#Create and Verify vFolder from Message on Subject
import string, time
#Create vFolder
def create_vFolder (index, vFolder_name):
try:
click ('Evolution-Mail', 'tbtnMail')
time.sleep (2)
selectrow ('Evolution-Mail', 'treeTabFolder', 'Mailbox')
selectrowindex ('Evolution-Mail', 'treetblMails', index)
selectmenuitem ('Evolution-Mail', 'mnuTools;mnuCreatevFolderFromMessage;mnuvFolderonSubject')
settextvalue('dlgNewvFolder', 'txtRuleName', vFolder_name)
click ('dlgNewvFolder', 'btnOK')
log ('Create vFolder from Message on Subject', 'pass')
except:
log ('Create vFolder from Message on Subject', 'fail')
#Verify vFolder
def verify_vFolder (index, folder_name):
try:
selectrow ('Evolution-Mail', 'treeTabFolder', 'Mailbox')
vFolder_mail_count = 0
subject = getcellvalue ('Evolution-Mail', 'treetblMails', index, 4)
total_mail_count = getrowcount ('Evolution-Mail', 'treetblMails')
for i in range (0, total_mail_count):
temp_subject = getcellvalue ('Evolution-Mail', 'treetblMails', i, 4)
if (string.find (temp_subject, subject) >= 0):
vFolder_mail_count = vFolder_mail_count + 1
selectrow ('Evolution-Mail', 'treeTabFolder', folder_name)
time.sleep (2)
folder_mail_count = getrowcount ('Evolution-Mail', 'treetblMails')
if (vFolder_mail_count == folder_mail_count):
log ('Verify vFolder from Message Subject', 'pass')
else:
log ('Verify vFolder from Message Subject', 'fail')
except:
log ('Verify vFolder from Message Subject', 'fail')
#Getting the data from a file
file = open('vFolder_message_on_subject.dat', 'r')
argmts = file.readlines()
index = int (argmts[1].strip( ))
vFolder_name = argmts[2].strip( )
#Calling the functions
log ('Create and Verify vFolder from Message on Subject', 'teststart')
log ('Create vFolder from Message on Subject', 'teststart')
create_vFolder(index, vFolder_name)
log ('Create vFolder from Message on Subject', 'testend')
log ('Verify vFolder from Message on Subject', 'teststart')
verify_vFolder (index, vFolder_name)
log ('Verify vFolder from Message on Subject', 'testend')
log ('Create and Verify vFolder from Message on Subject', 'testend')
|