Вход Регистрация
Файл: cobisja/BootHelp/tests/src/AlertBoxTest.php
Строк: 171
<?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 
cobisjaBootHelpAlertBox;
use 
cobisjaBootHelpHelpersLinkTo;

class 
AlertBoxTest extends PHPUnit_Framework_TestCase {
    public function 
testWithNoAlertOptions() {
        
/**
         * It should generates:
         *
         * <div class="alert alert-info" role="alert">
         *     Hello world
         * </div>
         */
        
$alert_box = new AlertBox('Hello world');
        
$html $alert_box->getHtml();

        
$this->assertTrue($html->isA('div', ['class'=>'alert alert-info''role'=>'alert']));
        
$this->assertTrue(=== $html->getContent()->length());
        
$this->assertEquals('Hello world'$html->getChild(0));
    }

    public function 
testDisplayDismissButtonWhenSetToTrueDismissOption() {
        
/**
         * It should generates:
         *
         * <div class="alert alert-info alert-dismissible" role="alert">
         *     <button aria-label="Close" data-dismiss="alert" class="close" type="button">
         *         <span aria-hidden="true">×</span>
         *     </button>
         *     You accepted the Terms of service.
         * </div>
         */
        
$alert_box = new AlertBox('You accepted the Terms of service.', ['dismissible'=>true]);
        
$html $alert_box->getHtml();
        
$child_1 $html->getChild(0);
        
$child_2 $html->getChild(1);
        
$grand_child $child_1->getChild(0);

        
$this->assertTrue(=== $html->numberOfChildren());
        
$this->assertTrue($child_1->isA('button', ['class'=>'close''data-dismiss'=>'alert']));
        
$this->assertTrue($grand_child->isA('span', ['aria-hidden'=>true]));
        
$this->assertEquals("&times;"$grand_child->getContent());
        
$this->assertEquals('You accepted the Terms of service.'$child_2);
    }

    public function 
testNotDisplayDismissButtonWhenSetToFalseDismissOption() {
        
/**
         * It should generates:
         *
         * <div class="alert alert-info role="alert">
         *     You accepted the Terms of service.
         * </div>
         */
        
$alert_box = new AlertBox('You accepted the Terms of service.', ['dismissible'=>false]);
        
$html $alert_box->getHtml();
        
$child $html->getChild(0);

        
$this->assertTrue($html->isA('div', ['class'=>'alert alert-info''role'=>'alert']));
        
$this->assertTrue(=== $html->numberOfChildren());
        
$this->assertEquals('You accepted the Terms of service.'$child);
    }

    
/**
     * @dataProvider get_contexts
     */
    
public function testSetContextClassWhenSetContextOption($context) {
        
/**
         * For $context = ['success', 'info', 'warning', 'danger'], it should generates:
         *
         * <div class="alert alert-{$context}" role="alert">
         *     You accepted the Terms of service.
         * </div>
         */
        
$alert_box = new AlertBox('Hello world', ['context'=>$context]);
        
$html $alert_box->getHtml();

        
$this->assertTrue($html->isA('div', ['class'=>'alert alert-' $context'role'=>'alert']));
    }

    public function 
testSetCorrectClassToLinksWithinAlerts() {
        
/**
         * It should generates:
         *
         * <div class="alert alert-info" role="alert">
         *     <a href="#" class="alert-link">This a link!</a>
         * </div>
         *
         */
        
$alert_box = new AlertBox(function(){ return new LinkTo('This is a link!');});
        
$html $alert_box->getHtml();
        
$child $html->getChild(0);

        
$this->assertTrue($html->isA('div', ['class'=>'alert alert-info''role'=>'alert']));
        
$this->assertTrue($child->isA('a', ['class'=>'alert-link']));
    }

    public function 
testWithExtraOptions() {
        
/**
         * It should generates:
         *
         * <div class="important alert alert-info" data-value="1" id="my-alert" role="alert">
         *     Hello world!
         * </div>
         */

        
$alert_box = new AlertBox('Hello world', ['class'=>'important''id'=>'my-alert']);
        
$html $alert_box->getHtml();

        
$this->assertTrue($html->isA('div', ['class'=>'important alert alert-info''id'=>'my-alert''role'=>'alert']));
    }

    public function 
testWithMultipleContent() {
        
/**
         * It should generates:
         *
         * <div class="alert alert-warning alert-dismissible" role="alert">
         *     <button aria-label="Close" data-dismiss="alert" class="close" type="button">
         *         <span aria-hidden="true">×</span>
         *     </button>
         *     <strong>Well done!</strong> You successfully read
         *     <a href="#" class='alert-link'>this important alert message</a>
         * </div>
         */
        
$alert_box = new AlertBox(['context'=>'warning''dismissible'=>true], function(){
            return [
                
'<strong>Well done!</strong> You successfully read ',
                new 
LinkTo('this important alert message')
            ];
        });

        
$html $alert_box->getHtml();
        
$child_1 $html->getChild(1);
        
$child_2 $html->getChild(2);

        
$this->assertEquals('<strong>Well done!</strong> You successfully read '$child_1);
        
$this->assertTrue($child_2->isA('a'));
    }


    public function 
get_contexts() {
        return [ [
'success'], ['info'], ['warning'], ['danger'] ];
    }
}
Онлайн: 1
Реклама