-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatternTest.php
86 lines (66 loc) · 2.07 KB
/
PatternTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
namespace Globby;
use Globby\Tokenizer;
class PatternTest extends \PHPUnit_Framework_TestCase
{
/**
* @var Pattern
*/
protected $pattern;
/**
* @var string
*/
protected $patternValue = 'foo*bar';
/**
* @var \PHPUnit_Framework_MockObject_MockObject|Compiler
*/
protected $compiler;
protected function setUp()
{
$this->compiler = $this->getMock(Compiler::CLASS);
$options = [Pattern::OPTION_LAZY_COMPILE => true];
$this->pattern = new Pattern(
$this->patternValue,
$options,
$this->compiler
);
}
/**
* Expecting Tokenizer and Builder calls on construction.
*/
public function testConstructWithNonLazyOption()
{
$this->compiler->expects($this->once())
->method('compile')
->will($this->returnValue('#^x$#u'));
$options = [Pattern::OPTION_LAZY_COMPILE => false];
new Pattern('x', $options, $this->compiler);
}
public function testToRegex()
{
$expected = '#foo.*bar#u';
$this->compiler->expects($this->once())
->method('compile')
->with($this->patternValue)
->will($this->returnValue($expected));
$this->assertEquals($expected, $this->pattern->toRegex());
// Repeated call should not trigger another compile; the invocation counts enforce this assertion
$this->assertEquals($expected, $this->pattern->toRegex());
}
public function testMatch()
{
$regex = '#^foo.*bar$#u';
$this->compiler->expects($this->once())
->method('compile')
->with($this->patternValue)
->will($this->returnValue($regex));
$this->assertTrue($this->pattern->match('foo-bar'));
$this->assertFalse($this->pattern->match('-foo-bar'));
$this->assertFalse($this->pattern->match('foo-bar-'));
}
public function testGetPattern()
{
$result = $this->pattern->getPattern();
$this->assertEquals($this->patternValue, $result);
}
}