Files
faveo/vendor/phpspec/phpspec/spec/PhpSpec/Matcher/ArrayKeyMatcherSpec.php
2015-05-01 13:13:01 +05:30

73 lines
2.1 KiB
PHP

<?php
namespace spec\PhpSpec\Matcher;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
use PhpSpec\Formatter\Presenter\PresenterInterface;
use ArrayObject;
class ArrayKeyMatcherSpec extends ObjectBehavior
{
function let(PresenterInterface $presenter)
{
$presenter->presentValue(Argument::any())->willReturn('countable');
$presenter->presentString(Argument::any())->willReturnArgument();
$this->beConstructedWith($presenter);
}
function it_is_a_matcher()
{
$this->shouldBeAnInstanceOf('PhpSpec\Matcher\MatcherInterface');
}
function it_responds_to_haveKey()
{
$this->supports('haveKey', array(), array(''))->shouldReturn(true);
}
function it_matches_array_with_specified_key()
{
$this->shouldNotThrow()->duringPositiveMatch('haveKey', array('abc' => 123), array('abc'));
}
function it_matches_array_with_specified_key_even_if_there_is_no_value()
{
$this->shouldNotThrow()->duringPositiveMatch('haveKey', array('abc' => null), array('abc'));
}
function it_matches_ArrayObject_with_provided_offset(ArrayObject $array)
{
$array->offsetExists('abc')->willReturn(true);
$this->shouldNotThrow()->duringPositiveMatch('haveKey', $array, array('abc'));
}
function it_does_not_match_array_without_specified_key()
{
$this->shouldThrow()->duringPositiveMatch('haveKey', array(1,2,3), array('abc'));
}
function it_does_not_match_ArrayObject_without_provided_offset(ArrayObject $array)
{
$array->offsetExists('abc')->willReturn(false);
$this->shouldThrow()->duringPositiveMatch('haveKey', $array, array('abc'));
}
function it_matches_array_without_specified_key()
{
$this->shouldNotThrow()->duringNegativeMatch('haveKey', array(1,2,3), array('abc'));
}
function it_matches_ArrayObject_without_specified_offset(ArrayObject $array)
{
$array->offsetExists('abc')->willReturn(false);
$this->shouldNotThrow()->duringNegativeMatch('haveKey', $array, array('abc'));
}
}