]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/Smarty/plugins/FunctionSugarLinkTest.php
Release 6.2.0
[Github/sugarcrm.git] / tests / include / Smarty / plugins / FunctionSugarLinkTest.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/Smarty/plugins/function.sugar_link.php';
39 require_once 'include/Sugar_Smarty.php';
40
41 class FunctionSugarLinkTest extends Sugar_PHPUnit_Framework_TestCase
42 {
43     public function setUp()
44     {
45         $this->_smarty = new Sugar_Smarty;
46     }
47     
48     public function testReturnModuleLinkOnly()
49     {
50         $string = 'my string';
51         
52         $output = smarty_function_sugar_link(
53             array('module'=>'Dog','link_only'=>'1'),
54             $this->_smarty);
55         
56         $this->assertContains("index.php?module=Dog&action=index",$output);
57     }
58     
59     public function testReturnModuleLinkWithAction()
60     {
61         $output = smarty_function_sugar_link(
62             array('module'=>'Dog','action'=>'cat','link_only'=>'1'),
63             $this->_smarty);
64         
65         $this->assertContains("index.php?module=Dog&action=cat",$output);
66     }
67     
68     public function testReturnModuleLinkWithActionAndExtraParams()
69     {
70         $output = smarty_function_sugar_link(
71             array('module'=>'Dog','action'=>'cat','extraparams'=>'foo=bar','link_only'=>'1'),
72             $this->_smarty);
73         
74         $this->assertContains("index.php?module=Dog&action=cat&foo=bar",$output);
75     }
76     
77     /**
78      * @ticket 33909
79      */
80     public function testReturnLinkWhenPassingData()
81     {
82         $data = array(
83             '63edeacd-6ba5-b658-5e2a-4af9a5d682be',
84             'http://localhost',
85             'all',
86             'iFrames',
87             'Foo',
88             );
89
90         
91         $output = smarty_function_sugar_link(
92             array('module'=>'Dog','data'=>$data,'link_only'=>'1'),
93             $this->_smarty);
94         
95         $this->assertContains("index.php?module=iFrames&action=index&record=63edeacd-6ba5-b658-5e2a-4af9a5d682be&tab=true",$output);
96     }
97     
98     public function testCreatingFullLink()
99     {
100         $output = smarty_function_sugar_link(
101             array(
102                 'module'=>'Dog',
103                 'action'=>'cat',
104                 'id'=>'foo1',
105                 'class'=>'foo4',
106                 'style'=>'color:red;',
107                 'title'=>'foo2',
108                 'accesskey'=>'B',
109                 'options'=>'scope="row"',
110                 'label'=>'foo3',
111                 ),
112             $this->_smarty);
113         
114         $this->assertContains(
115             '<a href="index.php?module=Dog&action=cat" id="foo1" class="foo4" style="color:red;" scope="row">foo3</a>',$output);
116
117     }
118 }