You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							141 lines
						
					
					
						
							4.2 KiB
						
					
					
				
			
		
		
	
	
							141 lines
						
					
					
						
							4.2 KiB
						
					
					
				| <?php | |
| namespace yiiunit\extensions\bootstrap; | |
|  | |
| use yii\bootstrap\Tabs; | |
| use yii\helpers\Html; | |
|  | |
| /** | |
|  * Tests for Tabs widget | |
|  * | |
|  * @group bootstrap | |
|  */ | |
| class TabsTest extends TestCase | |
| { | |
|     /** | |
|      * Each tab should have a corresponding unique ID | |
|      * | |
|      * @see https://github.com/yiisoft/yii2/issues/6150 | |
|      */ | |
|     public function testIds() | |
|     { | |
|         Tabs::$counter = 0; | |
|         $out = Tabs::widget([ | |
|             'items' => [ | |
|                 [ | |
|                     'label' => 'Page1', 'content' => 'Page1', | |
|                 ], | |
|                 [ | |
|                     'label' => 'Dropdown1', | |
|                     'items' => [ | |
|                         ['label' => 'Page2', 'content' => 'Page2'], | |
|                         ['label' => 'Page3', 'content' => 'Page3'], | |
|                     ] | |
|                 ], | |
|                 [ | |
|                     'label' => 'Dropdown2', | |
|                     'items' => [ | |
|                         ['label' => 'Page4', 'content' => 'Page4'], | |
|                         ['label' => 'Page5', 'content' => 'Page5'], | |
|                     ] | |
|                 ], | |
|                 [ | |
|                     'label' => $extAnchor1 = 'External link', 'url' => $extUrl1 = ['//other/route'], | |
|                 ], | |
|                 [ | |
|                     'label' => 'Dropdown3', | |
|                     'items' => [ | |
|                         ['label' => $extAnchor2 = 'External Dropdown Link', 'url' => $extUrl2 = ['//other/dropdown/route']], | |
|                     ] | |
|                 ], | |
|             ] | |
|         ]); | |
|  | |
|         $page1 = 'w0-tab0'; | |
|         $page2 = 'w0-dd1-tab0'; | |
|         $page3 = 'w0-dd1-tab1'; | |
|         $page4 = 'w0-dd2-tab0'; | |
|         $page5 = 'w0-dd2-tab1'; | |
|  | |
|         $shouldContain = [ | |
|             'w0', // nav widget container | |
|                 "#$page1", // Page1 | |
|  | |
|                 'w1', // Dropdown1 | |
|                     "$page2", // Page2 | |
|                     "$page3", // Page3 | |
|  | |
|  | |
|                 'w2', // Dropdown2 | |
|                     "#$page4", // Page4 | |
|                     "#$page5", // Page5 | |
|  | |
|                 'w3', // Dropdown3 | |
|  | |
|             // containers | |
|             "id=\"$page1\"", | |
|             "id=\"$page2\"", | |
|             "id=\"$page3\"", | |
|             "id=\"$page4\"", | |
|             "id=\"$page5\"", | |
|             Html::a($extAnchor1,$extUrl1), | |
|             Html::a($extAnchor2,$extUrl2, ['tabindex' => -1]), | |
|         ]; | |
|  | |
|         foreach ($shouldContain as $string) { | |
|             $this->assertContains($string, $out); | |
|         } | |
|     } | |
|  | |
|     public function testVisible() | |
|     { | |
|         Tabs::$counter = 0; | |
|         $html = Tabs::widget([ | |
|             'items' => [ | |
|                 [ | |
|                     'label' => 'Page1', 'content' => 'Page1', | |
|                 ], | |
|                 [ | |
|                     'label' => 'InvisiblePage', | |
|                     'content' => 'Invisible Page Content', | |
|                     'visible' => false | |
|                 ], | |
|                 [ | |
|                     'label' => 'Dropdown1', | |
|                     'items' => [ | |
|                         ['label' => 'Page2', 'content' => 'Page2'], | |
|                         ['label' => 'InvisibleItem', 'content' => 'Invisible Item Content', 'visible' => false], | |
|                         ['label' => 'Page3', 'content' => 'Page3'], | |
|                         ['label' => 'External Link', 'url' => ['//other/dropdown/route']], | |
|                         ['label' => 'Invisible External Link', 'url' => ['//other/dropdown/route'], 'visible' => false], | |
|                     ] | |
|                 ], | |
|             ] | |
|         ]); | |
|  | |
|         $this->assertNotContains('InvisiblePage', $html); | |
|         $this->assertNotContains('Invisible Page Content', $html); | |
|         $this->assertNotContains('InvisibleItem', $html); | |
|         $this->assertNotContains('Invisible Item Content', $html); | |
|         $this->assertNotContains('Invisible External Link', $html); | |
|     } | |
|  | |
|     public function testItem() | |
|     { | |
|         $checkTag = 'article'; | |
|  | |
|         $out = Tabs::widget([ | |
|             'items' => [ | |
|                 [ | |
|                     'label' => 'Page1', 'content' => 'Page1', | |
|                 ], | |
|                 [ | |
|                     'label' => 'Page2', 'content' => 'Page2', | |
|                 ], | |
|             ], | |
|             'itemOptions' => ['tag' => $checkTag], | |
|             'renderTabContent' => true, | |
|         ]); | |
|  | |
|         $this->assertContains('<' . $checkTag, $out); | |
|     } | |
| }
 | |
| 
 |