]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/EmailAddresses/Bug56938Test.php
Release 6.5.9
[Github/sugarcrm.git] / tests / modules / EmailAddresses / Bug56938Test.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  * @ticket 56938
40  */
41 class Bug56938Test extends Sugar_PHPUnit_Framework_TestCase
42 {
43     /** @var User */
44     private $user, $duplicate;
45
46     /**
47      * Sets up the fixture, for example, open a network connection.
48      * This method is called before a test is executed.
49      */
50     protected function setUp()
51     {
52         $this->user = SugarTestUserUtilities::createAnonymousUser();
53         SugarTestEmailAddressUtilities::addAddressToPerson(
54             $this->user,
55             'bug-56938-test@example.com'
56         );
57     }
58
59     /**
60      * Ensure that a new instance of EmailAddress is created during creating
61      * User duplicate
62      */
63     public function testCreateDuplicate()
64     {
65         // retrieve created user from database in order to populate email addresses
66         $original = new User();
67         $original->retrieve($this->user->id);
68
69         // simulate request parameters of "Duplicate" web form
70         $address = $original->emailAddress->addresses[0];
71         $_REQUEST = array(
72             'Users_email_widget_id' => '1',
73             'Users1emailAddress0'   => $address['email_address'],
74             'Users1emailAddressId0' => $address['email_address_id'],
75         );
76
77         // create a duplicate and retrieve it from database as well
78         $duplicate = $this->duplicate = new User();
79         $duplicate->save();
80
81         $retrieved = new User();
82         $retrieved->retrieve($duplicate->id);
83
84         // ensure that email address is created in duplicate
85         $this->assertEquals(1, count($retrieved->emailAddress->addresses));
86
87         // ensure that it's value is the same as original email address
88         $this->assertEquals(
89             $original->emailAddress->addresses[0]['email_address'],
90             $retrieved->emailAddress->addresses[0]['email_address']
91         );
92
93         // ensure that new instance of EmailAddress is created instead of
94         // sharing the same instance between users
95         $this->assertNotEquals(
96             $original->emailAddress->addresses[0]['email_address_id'],
97             $retrieved->emailAddress->addresses[0]['email_address_id']
98         );
99     }
100
101     /**
102      * Tears down the fixture, for example, close a network connection.
103      * This method is called after a test is executed.
104      */
105     protected function tearDown()
106     {
107         $_REQUEST = array();
108         SugarTestEmailAddressUtilities::removeAllCreatedAddresses();
109         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
110         if ($this->duplicate)
111         {
112             $this->duplicate->mark_deleted($this->duplicate->id);
113         }
114     }
115 }