1
|
|
|
<?php namespace Chekote\NounStore\Store; |
2
|
|
|
|
3
|
|
|
use Chekote\Phake\Phake; |
4
|
|
|
use InvalidArgumentException; |
5
|
|
|
|
6
|
|
|
/** |
7
|
|
|
* @covers \Chekote\NounStore\Store::keyExists() |
8
|
|
|
*/ |
9
|
|
|
class KeyExistsTest extends StoreTest |
10
|
|
|
{ |
11
|
|
|
public function setUp() |
12
|
|
|
{ |
13
|
|
|
parent::setUp(); |
14
|
|
|
|
15
|
|
|
/* @noinspection PhpUndefinedMethodInspection */ |
16
|
|
|
Phake::when($this->store)->keyExists(Phake::anyParameters())->thenCallParent(); |
|
|
|
|
17
|
|
|
} |
18
|
|
|
|
19
|
|
|
public function testMismatchedNthAndIndexThrowsInvalidArgumentException() |
20
|
|
|
{ |
21
|
|
|
$key = '1st Thing'; |
22
|
|
|
$index = 1; |
23
|
|
|
|
24
|
|
|
/* @noinspection PhpUndefinedMethodInspection */ |
25
|
|
|
Phake::when($this->key)->parse($key, $index)->thenThrow(new InvalidArgumentException()); |
|
|
|
|
26
|
|
|
|
27
|
|
|
$this->expectException(InvalidArgumentException::class); |
28
|
|
|
|
29
|
|
|
$this->store->keyExists($key, $index); |
|
|
|
|
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
public function testExistingNthKeyReturnsTrue() |
33
|
|
|
{ |
34
|
|
|
$key = '1st ' . self::KEY; |
35
|
|
|
$index = null; |
36
|
|
|
$parsedKey = self::KEY; |
37
|
|
|
$parsedIndex = 0; |
38
|
|
|
|
39
|
|
|
/* @noinspection PhpUndefinedMethodInspection */ |
40
|
|
|
Phake::when($this->key)->parse($key, $index)->thenReturn([$parsedKey, $parsedIndex]); |
|
|
|
|
41
|
|
|
|
42
|
|
|
$this->assertTrue($this->store->keyExists($key)); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function testMissingNthKeyReturnsFalse() |
46
|
|
|
{ |
47
|
|
|
$key = '3rd ' . self::KEY; |
48
|
|
|
$index = null; |
49
|
|
|
$parsedKey = self::KEY; |
50
|
|
|
$parsedIndex = 2; |
51
|
|
|
|
52
|
|
|
/* @noinspection PhpUndefinedMethodInspection */ |
53
|
|
|
Phake::when($this->key)->parse($key, $index)->thenReturn([$parsedKey, $parsedIndex]); |
|
|
|
|
54
|
|
|
|
55
|
|
|
$this->assertFalse($this->store->keyExists($key)); |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
public function testExistingIndexParameterReturnsTrue() |
59
|
|
|
{ |
60
|
|
|
$key = self::KEY; |
61
|
|
|
$index = 0; |
62
|
|
|
$parsedKey = self::KEY; |
63
|
|
|
$parsedIndex = 0; |
64
|
|
|
|
65
|
|
|
/* @noinspection PhpUndefinedMethodInspection */ |
66
|
|
|
Phake::when($this->key)->parse($key, $index)->thenReturn([$parsedKey, $parsedIndex]); |
|
|
|
|
67
|
|
|
|
68
|
|
|
$this->assertTrue($this->store->keyExists($key, $index)); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
public function testMissingIndexParameterReturnFalse() |
72
|
|
|
{ |
73
|
|
|
$key = self::KEY; |
74
|
|
|
$index = 2; |
75
|
|
|
$parsedKey = self::KEY; |
76
|
|
|
$parsedIndex = 2; |
77
|
|
|
|
78
|
|
|
/* @noinspection PhpUndefinedMethodInspection */ |
79
|
|
|
Phake::when($this->key)->parse($key, $index)->thenReturn([$parsedKey, $parsedIndex]); |
|
|
|
|
80
|
|
|
|
81
|
|
|
$this->assertFalse($this->store->keyExists($key, $index)); |
82
|
|
|
} |
83
|
|
|
} |
84
|
|
|
|