PHP Classes

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

Recommend this page to a friend!
  Classes of Marcelo Santos   Melody Validation   tests/src/Melody/Validation/Constraints/LengthTest.php   Download  
File: tests/src/Melody/Validation/Constraints/LengthTest.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: 11 years ago
Size: 1,241 bytes
 

Contents

Class file image Download
<?php

namespace Melody\Validation\Constraints;

use
Melody\Validation\Validator as v;

class
LengthTest extends \PHPUnit_Framework_TestCase
{

    public function
test_valid_string_should_pass()
    {
       
$this->assertTrue(v::length(5, 10)->validate('abcdef0123'));
    }

    public function
test_invalid_string_should_fail_validation()
    {
       
$this->assertFalse(v::length(2, 5)->validate('abcdef0123'));
       
$this->assertFalse(v::length(2, 5)->validate(''));
    }

    public function
test_invalid_argument_exception_min()
    {
       
$this->setExpectedException('InvalidArgumentException');
       
$this->assertInstanceOf('InvalidArgumentException', v::length("invalid argument", 5)->validate('abcdef0123'));
    }

    public function
test_invalid_argument_exception_max()
    {
       
$this->setExpectedException('InvalidArgumentException');
       
$this->assertInstanceOf('InvalidArgumentException', v::length(2, "invalid argument")->validate('abcdef0123'));
    }

    public function
test_invalid_argument_exception_not_string()
    {
       
$this->setExpectedException('InvalidArgumentException');
       
$this->assertInstanceOf('InvalidArgumentException', v::length(2, 5)->validate(1));
    }
}