]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Emails/ComposePackageTest.php
Release 6.2.0
[Github/sugarcrm.git] / tests / modules / Emails / ComposePackageTest.php
1 <?php 
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37  
38 require_once('modules/Contacts/Contact.php');
39
40
41 /**
42  * @ticket 32487
43  */
44 class ComposePackageTest extends Sugar_PHPUnit_Framework_TestCase
45 {
46         var $c = null;
47         var $a = null;
48         var $ac_id = null;
49         
50         public function setUp()
51     {
52         global $current_user, $currentModule ;
53         $mod_strings = return_module_language($GLOBALS['current_language'], "Contacts");
54         $beanList = array();
55         $beanFiles = array();
56         require('include/modules.php');
57         $GLOBALS['beanList'] = $beanList;
58         $GLOBALS['beanFiles'] = $beanFiles;
59         $current_user = SugarTestUserUtilities::createAnonymousUser();
60         $unid = uniqid();
61         $time = date('Y-m-d H:i:s');
62
63         $contact = new Contact();
64         $contact->id = 'c_'.$unid;
65         $contact->first_name = 'testfirst';
66         $contact->last_name = 'testlast';
67         $contact->new_with_id = true;
68         $contact->disable_custom_fields = true;
69         $contact->save();
70                 $this->c = $contact;
71                 
72                 $beanList = array();
73                 $beanFiles = array();
74                 require('include/modules.php');
75                 $GLOBALS['beanList'] = $beanList;
76                 $GLOBALS['beanFiles'] = $beanFiles;
77
78         }
79
80     public function tearDown()
81     {
82         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
83         unset($GLOBALS['current_user']);
84
85         unset($GLOBALS['mod_strings']);
86         unset($GLOBALS['beanList']);
87                 unset($GLOBALS['beanFiles']);
88                 
89
90         $GLOBALS['db']->query("DELETE FROM contacts WHERE id= '{$this->c->id}'");
91         
92         unset($this->c);
93     }
94
95         public function testComposeFromMethodCallNoData()
96         {    
97             $_REQUEST['forQuickCreate'] = true;
98             require_once('modules/Emails/Compose.php');
99             $data = array();
100             $compose_data = generateComposeDataPackage($data,FALSE);
101             
102                 $this->assertEquals('', $compose_data['to_email_addrs']);
103     }
104     
105     public function testComposeFromMethodCallForContact()
106     {    
107             $_REQUEST['forQuickCreate'] = true;
108             require_once('modules/Emails/Compose.php');
109             $data = array();
110             $data['parent_type'] = 'Contacts';
111             $data['parent_id'] = $this->c->id;
112             
113             $compose_data = generateComposeDataPackage($data,FALSE);
114
115                 $this->assertEquals('Contacts', $compose_data['parent_type']);
116                 $this->assertEquals($this->c->id, $compose_data['parent_id']);
117                 $this->assertEquals($this->c->name, $compose_data['parent_name']);
118     }
119 }