summaryrefslogtreecommitdiff
path: root/evolution/addcontactlist.py
blob: ceb0851b629c330167243039b7760ecbfc0c882a (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
#!/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 ldtp import *
from ldtputils import *
from contact import *

def addnewlist(datafilename):
    """Function to add a new Contact List"""
    log ('Add New List','teststart')
    try:
        ListName,EmailAddresses=getcontactlistvals(datafilename)
        selectContactPane()
        selectmenuitem ('frmEvolution-Contacts','mnuFile;mnuNew;mnuContactList')
        waittillguiexist ('dlgContactListEditor')
        time.sleep (2)
        settextvalue ('dlgContactListEditor','txtListname',ListName[0])
        setcontext ('Contact List Editor',ListName[0])
        for val in range(len (EmailAddresses)):
            settextvalue ('dlgContactListEditor','txtTypeanemailaddressordragacontactintothelistbelow',EmailAddresses[val])
            click ('dlgContactListEditor','btnAdd')
            time.sleep (1)
            if guiexist ('dlgEvolutionQuery')==1:
                click ('dlgEvolutionQuery','btnCancel')
                time.sleep (1)
        click ('dlgContactListEditor','btnOK')
        time.sleep (5)
        if guiexist ('dlgDuplicateContactDetected')==1:
            log ('contact already exists','info')
            click ('dlgDuplicateContactDetected','btnAdd')
            time.sleep(2)
        verifyaddnewlist (ListName,EmailAddresses)
    except:
        log ('Failed during add new list','error')
        log ('Add New List','testend')
        raise LdtpExecutionError(0)
    log ('Add New List','testend')


def verifyaddnewlist(ListName,EmailAddresses):
    log ('checking if List added successfully','teststart')
    try:
        selectcontact (ListName[0])
        selectmenuitem ('frmEvolution-Contacts','mnuFile;mnuOpen')
        waittillguiexist ('dlgContactListEditor')
        for val in range (len(EmailAddresses)):
            if (gettablerowindex ('dlgContactListEditor','tbl0',EmailAddresses[val])) == -1:
                raise LdtpExecutionError(0)
        click ('dlgContactListEditor','btnCancel')
    except:
        log ('Contact List Addition failed during Verification','error')
        log ('checking if List added successfully','testend')
        raise LdtpExecutionError(0)
    log ('checking if List added successfully','testend')

        
addnewlist (datafilename)