]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/ProspectLists/Bug43805Test.php
Release 6.2.3
[Github/sugarcrm.git] / tests / modules / ProspectLists / Bug43805Test.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 "include/export_utils.php";
39 require_once "SugarTestProspectUtilities.php";
40
41 class Bug43805Test extends Sugar_PHPUnit_Framework_TestCase
42 {
43     /**
44      * Contains created prospect lists' ids
45      * @var Array
46      */
47     protected static $_createdProspectListsIds = array();
48
49     /**
50      * Instance of ProspectList
51      * @var ProspectList
52      */
53     protected $_prospectList;
54
55     /**
56      * prospects array
57      * @var Array
58      */
59     protected $_prospects = array();
60
61     /**
62      * Create prospect instance (with account)
63      */
64     public static function createProspect()
65     {
66
67                 $prospect = SugarTestProspectUtilities::createProspect();
68                 
69         $prospect->save();
70         return $prospect;
71        
72     }
73
74     /**
75      * Create ProspectList instance
76      * @param prospect instance to attach to prospect list
77      */
78     public static function createProspectList($prospect = null)
79     {
80         $prospectList = new ProspectList();
81         $prospectList->name = "TargetList_code";
82         $prospectList->save();
83         self::$_createdProspectListsIds[] = $prospectList->id;
84
85         if ($prospect instanceof Prospect) {
86             self::attachProspectToProspectList($prospectList, $prospect);
87         }
88
89         return $prospectList;
90     }
91
92     /**
93      *
94      * Attach Prospect to prospect list
95      * @param ProspectList $prospectList prospect list instance
96      * @param prospect $prospect prospect instance
97      */
98     public static function attachProspectToProspectList($prospectList, $prospect)
99     {
100         $prospectList->load_relationship('prospects');
101         $prospectList->prospects->add($prospect->id,array());
102     }
103
104     /**
105      * Set up - create prospect list with 1 prospect
106      */
107     public function setUp()
108     {
109         global $current_user;
110         $current_user = SugarTestUserUtilities::createAnonymousUser();;
111         $this->_prospects[] = self::createProspect();
112         $this->_prospectList = self::createProspectList($this->_prospects[0]);
113         self::attachProspectToProspectList($this->_prospectList, $this->_prospects[0]);
114     }
115
116     /**
117      * Clear all created data
118      * @see PHPUnit_Framework_TestCase::tearDown()
119      */
120     public function tearDown()
121     {
122         SugarTestProspectUtilities::removeAllCreatedProspects();
123         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
124         $this->_clearProspects();
125     }
126
127     /**
128      * Test if Title exists within report
129      */
130     public function testTitleExistsExportList()
131     {
132         $content = export("ProspectLists", $this->_prospectList->id, true);
133                                 
134         $this->assertContains($this->_prospects[0]->title, $content, "Report should contain title of created Prospect");
135
136     }
137
138     private function _clearProspects()
139     {
140         $ids = implode("', '", self::$_createdProspectListsIds);
141         $GLOBALS['db']->query('DELETE FROM prospect_list_campaigns WHERE prospect_list_id IN (\'' . $ids . '\')');
142         $GLOBALS['db']->query('DELETE FROM prospect_lists_prospects WHERE prospect_list_id IN (\'' . $ids . '\')');
143         $GLOBALS['db']->query('DELETE FROM prospect_lists WHERE id IN (\'' . $ids . '\')');
144     }
145 }