Login   Register  
PHP Classes
elePHPant
Icontem

File: tests/src/Melody/Validation/Constraints/MaxLengthTest.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marcelo Santos  >  Melody Validation  >  tests/src/Melody/Validation/Constraints/MaxLengthTest.php  >  Download  
File: tests/src/Melody/Validation/Constraints/MaxLengthTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: Melody Validation
Validate values according to many types of rules
Author: By
Last change:
Date: 2013-10-17 20:23
Size: 1,218 bytes
 

Contents

Class file image Download
<?php

namespace Melody\Validation\Constraints;

use 
Melody\Validation\Validator as v;

class 
MaxLengthTest extends \PHPUnit_Framework_TestCase
{

    
/**
     * @dataProvider providerForValidStrings
     */
    
public function test_valid_string_should_pass($validString)
    {
        
$this->assertTrue(v::maxLength(10)->validate($validString));
    }

    
/**
     * @dataProvider providerForInvalidStrings
     */
    
public function test_invalid_string_should_fail_validation($invalidString)
    {
        
$this->assertFalse(v::maxLength(3)->validate($invalidString));
    }

    public function 
providerForValidStrings()
    {
        return array(
                array(
'abc'),
                array(
'abcdef'),
                array(
'abcdef1234')
        );
    }

    public function 
providerForInvalidStrings()
    {
        return array(
                array(
'abcd'),
                array(
'abcdef'),
                array(
'abcdef1234')
        );
    }

    public function 
test_not_string_argument_exception()
    {
        
$this->setExpectedException('InvalidArgumentException');
        
$this->assertInstanceOf('InvalidArgumentException'v::maxLength(5)->validate(null));
    }

}