summaryrefslogtreecommitdiff
path: root/evolution/modifycontactlist.py
blob: 735ca65b9ee8fc209ac3c5a8ca3a36572dac6fad (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
#!/usr/bin/env python
#
#  Linux Desktop Testing Project http://ldtp.freedesktop.org
#
#  Author:
#     Prashanth Mohan  <prashmohan@gmail.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.
#

from contact import *

def modcontactlist(datafilename):
    log ('Modify Contact List','teststart')
    try:
        ListName,AddEmailAddresses,DelEmailAddresses=getmodlistvals(datafilename)
        name = '*'+ListName[0]+'*'
        opencontactlist(ListName)
        addtocontactlist (AddEmailAddresses, name)
        delfromcontactlist (DelEmailAddresses, name)
        click (name,'btnOK')
        time.sleep (2)
        verifymodifylist(ListName,AddEmailAddresses,DelEmailAddresses)
    except:
        log ('Unable to modify Contact List','error')
        log ('Modify Contact List','testend')
        raise LdtpExecutionError(0)
    log ('Modify Contact List','testend')

    
def addtocontactlist(addList, name):
    try:
        for val in range(len (addList)):
            settextvalue (name,'txtTypeanemailaddressordragacontactintothelistbelow',addList[val])
            print 'set the list value'
            click (name,'btnAdd')
            time.sleep (1)
            if guiexist ('dlgEvolutionQuery')==1:
                click ('dlgEvolutionQuery','btnCancel')
                time.sleep (1)
    except:
        log ('error while adding contacts to contact list','error')
        raise LdtpExecutionError(0)

def delfromcontactlist (remList, name):
    try:
        for val in range(len(remList)):
            try:
                selectrow (name,'tbl0',remList[val])
            except:
                log (remList[val]+' not in List','error')
            time.sleep (1)
            click (name,'btnRemove')
            time.sleep (1)
    except:
        log ('Contact could not be deleted from contact list','error')
        raise LdtpExecutionError(0)

def verifymodifylist(ListName,InEmail,OutEmail):
    try:
        opencontactlist(ListName)
        name = '*'+ListName[0]+'*'
        setcontext ('Contact List Editor',ListName[0])
        waittillguiexist (name)
        for value in InEmail:
            if (gettablerowindex (name,'tbl0',value)) == -1:
                raise LdtpExecutionError(0)

#        print "values in inemail perfect"
#        raw_input ("input")
#         for value in OutEmail:
#             if (gettablerowindex ('dlgContactListEditor','tbl0',EmailAddresses[val])) != -1:
#                 raise LdtpExecutionError(0)
        click (name,'btnCancel')
    except:
        log ('Contact List Modification has failed verification','error')
        raise LdtpExecutionError(0)
    
modcontactlist (datafilename)