]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Project/Bug37123Test.php
Release 6.5.1
[Github/sugarcrm.git] / tests / modules / Project / Bug37123Test.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
39 class Bug37123Test extends Sugar_PHPUnit_Framework_TestCase
40 {
41     public function setUp()
42     {
43         SugarTestHelper::setUp('beanFiles');
44         SugarTestHelper::setUp('beanList');
45         SugarTestHelper::setUp('current_user');
46         $unid = uniqid();
47         $time = date('Y-m-d H:i:s');
48
49         $contact = new Contact();
50         $contact->id = 'c_'.$unid;
51         $contact->first_name = 'testfirst';
52         $contact->last_name = 'testlast';
53         $contact->new_with_id = true;
54         $contact->disable_custom_fields = true;
55         $contact->save();
56         $this->contact = $contact;
57
58         $account = new Account();
59         $account->id = 'a_'.$unid;
60         $account->first_name = 'testfirst';
61         $account->last_name = 'testlast';
62         $account->assigned_user_id = 'SugarUser';
63         $account->new_with_id = true;
64         $account->disable_custom_fields = true;
65         $account->save();
66         $this->account = $account;
67
68         $ac_id = 'ac_'.$unid;
69         $this->ac_id = $ac_id;//Accounts to Contacts
70         $GLOBALS['db']->query("INSERT INTO accounts_contacts (id , contact_id, account_id, date_modified, deleted) values ('{$ac_id}', '{$contact->id}', '{$account->id}', '$time', 0)");
71
72         $_REQUEST['relate_id'] = $this->contact->id;
73         $_REQUEST['relate_to'] = 'projects_contacts';
74     }
75
76     public function testRelationshipSave()
77     {
78         $timedate = TimeDate::getInstance();
79         $unid = uniqid();
80         $project = new Project();
81         $project->id = 'p_' . $unid;
82         $project->name = 'test project ' . $unid;
83         $project->estimated_start_date = $timedate->nowDate();
84         $project->estimated_end_date = $timedate->asUserDate($timedate->getNow(true)->modify("+7 days"));
85         $project->new_with_id = true;
86         $project->disable_custom_fields = true;
87         $newProjectId = $project->save();
88         $this->project = $project;
89         $savedProjectId =  $GLOBALS['db']->getOne("
90                                 SELECT project_id FROM projects_accounts
91                                 WHERE project_id= '{$newProjectId}'
92                                 AND account_id='{$this->account->id}'"
93                             );
94         $this->assertEquals($newProjectId, $savedProjectId);
95     }
96
97     public function tearDown()
98     {
99         $GLOBALS['db']->query("DELETE FROM contacts WHERE id= '{$this->contact->id}'");
100         $GLOBALS['db']->query("DELETE FROM accounts WHERE id = '{$this->account->id}'");
101         $GLOBALS['db']->query("DELETE FROM accounts_contacts WHERE id = '{$this->ac_id}'");
102         $GLOBALS['db']->query("DELETE FROM projects_accounts
103                                WHERE project_id= '{$this->project->id}'
104                                AND account_id = '{$this->account->id}'");
105         unset($this->account);
106         unset($this->contact);
107         unset($this->project);
108         unset($this->ac_id);
109         unset($GLOBALS['relate_id']);
110         unset($GLOBALS['relate_to']);
111         SugarTestHelper::tearDown();
112     }
113
114
115
116 }