]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Leads/Bug44522Test.php
Release 6.4.1
[Github/sugarcrm.git] / tests / modules / Leads / Bug44522Test.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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 class Bug44522Test extends Sugar_PHPUnit_Framework_TestCase
39 {
40     var $user;
41     var $account;
42     var $lead;
43     var $contact;
44     var $campaign;
45
46     public function setUp()
47     {
48         //create user
49         $this->user = $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
50
51         //create account
52         $this->account = new Account();
53         $this->account->name = 'bug44522 account '.date('Y-m-d-H-i-s');
54         $this->account->save();
55         
56         //create campaign
57         $this->campaign = SugarTestCampaignUtilities::createCampaign();
58
59         //create contact
60         $this->contact = new Contact();
61         $this->lead = SugarTestLeadUtilities::createLead();
62         
63         $this->lead->campaign_id = $this->campaign->id;
64         $this->lead->save();
65
66     }
67     
68     public function tearDown()
69     {
70         //delete records created from db
71         $GLOBALS['db']->query("DELETE FROM accounts WHERE id= '{$this->account->id}'");
72         $GLOBALS['db']->query("DELETE FROM leads WHERE id= '{$this->lead->id}'");
73         $GLOBALS['db']->query("DELETE FROM contacts WHERE id= '{$this->contact->id}'");
74         $GLOBALS['db']->query("DELETE FROM campaigns WHERE id= '{$this->campaign->id}'");
75         $GLOBALS['db']->query("DELETE FROM campaign_log WHERE campaign_id= '{$this->campaign->id}'");
76         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
77
78         //unset values
79         unset($GLOBALS['current_user']);
80         unset($this->user);
81         unset($this->account);
82         unset($this->contact);
83         unset($this->lead);
84         unset($this->campaign);
85     }
86     
87
88
89     //run test to make sure there is an entry in campaign_log table for newly created contact during lead conversion (bug 44522)
90     public function testConvertContactInCampaignLog()
91     {
92         //there will be output from display function, so call ob_start to trap it
93         ob_start();
94
95         $_POST = array();
96         
97         //set the request parameters and convert the lead
98         $_REQUEST['module'] = 'Leads';
99         $_REQUEST['action'] = 'ConvertLead';
100         $_REQUEST['record'] = $this->lead->id;
101         $_REQUEST['handle'] = 'save';
102         $_REQUEST['selectedAccount'] = $this->account->id;
103
104         //require view and call display class so that convert functionality is called
105         require_once('modules/Leads/views/view.convertlead.php');
106         $vc = new ViewConvertLead();
107         $vc->display();
108
109         //retrieve the lead again to make sure we have the latest converted lead in memory
110         $this->lead->retrieve($this->lead->id);
111
112         //retrieve the new contact id from the conversion
113         $contact_id = $this->lead->contact_id;
114
115         //throw error if contact id was not retrieved and exit test
116         $this->assertTrue(!empty($contact_id), "contact id was not created during conversion process.  An error has ocurred, aborting rest of test.");
117         if (empty($contact_id)){
118             return;
119         }
120         //make sure the new contact has the account related and that it matches the lead account
121         $query = "SELECT target_id FROM campaign_log WHERE campaign_id= '{$this->campaign->id}'";
122         $result = $GLOBALS['db']->query($query);
123         while($row = $GLOBALS['db']->fetchByAssoc($result)){
124         $test_contact_id = $row['target_id'];
125         }
126         
127         $this->assertEquals($contact_id, $test_contact_id);
128         $output = ob_get_clean();
129     }
130 }