Файл: cobisja/BootHelp/tests/src/LabelTest.php
Строк: 117
<?php
/*
 * BootHelp - Bootstrap Helpers written in PHP
 *
 * (The MIT License)
 *
 * Copyright (c) 2015 Jorge Cobis <jcobis@gmail.com / http://twitter.com/cobisja>.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
namespace BootHelpTests;
use cobisjaBootHelpLabel;
use cobisjaBootHelpIcon;
class LabelTest extends PHPUnit_Framework_TestCase {
    public function testWithNoOptions() {
        /**
         * It should generates:
         *
         * <span class="label label-default">New</span>
         */
        $label = new Label('New');
        $html = $label->getHtml();
        
        $this->validate_label($html);
    }    
    
    /**
     * @dataProvider get_contexts
     */
    public function testWithContextOption($context) {
        /**
         * It should generates:
         *
         * <span class="label label-{$context}">New</span>
         */
        $label = new Label('New', ['context'=>$context]);
        $html = $label->getHtml();
        
        $this->validate_label($html);
    }
    
    public function testWithExtraOptions() {
        /**
         * It should generates:
         *
         * <span id="my-label" class="en label label-danger">New</span>
         */
        $label = new Label('New', ['id'=>'my-label', 'class'=>'en', 'context'=>'danger']);
        $html = $label->getHtml();
        
        $this->validate_label($html);
        $this->assertTrue($html->hasAttribute('id', 'my-label'));
        $this->assertTrue(3 === count($html->getAttribute('class', ['as'=>'array'])));
        $this->assertTrue($html->hasAttribute('class', 'en label label-danger'));        
    }
    
    public function testWithClosure() {
        /**
         * It should generates:
         *
         * <span class="label label-default">New</span>
         */
        $label = new Label(function(){
            return 'New';
        });
        
        $html = $label->getHtml();        
        $this->validate_label($html);
    }
    
    public function testWithClosureAndOptions() {
        /**
         * It should generates:
         * <span class="label label-primary">
         *     <span class="glyphicon glyphicon-headphones"></span>
         *     Enjoy the music
         * </span>
         */
        $label = new Label(['id'=>'my-label', 'context'=>'primary'], function(){
            return [
                new Icon('headphones'),
                'Enjoy the music'
            ];
        });
        
        $html = $label->getHtml();        
        $this->validate_label($html);
        $this->assertTrue($html->hasAttribute('class', 'label-primary'));
        $this->assertTrue($html->hasAttribute('id', 'my-label'));
        $this->assertTrue(2 === $html->numberOfChildren());
    }
    
    private function validate_label($html) {
        $this->assertTrue($html->isA('span'));
        $this->assertTrue($html->hasAttribute('class', 'label'));        
    }
    
    public function get_contexts() {
        return [ ['default'], ['primary'], ['success'], ['info'], ['warning'], ['danger'] ];
    }    
}