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
87
88
89
90
<?php
require_once __DIR__.'/mocked_webelement.php';
class WebDriverConstraintTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Codeception\PHPUnit\Constraint\WebDriver
*/
protected $constraint;
public function setUp()
{
$this->constraint = new Codeception\PHPUnit\Constraint\WebDriver('hello', '/user');
}
public function testEvaluation()
{
$nodes = array(new TestedWebElement('Hello world'), new TestedWebElement('Bye world'));
$this->constraint->evaluate($nodes);
}
public function testFailMessageResponseWithStringSelector()
{
$nodes = array(new TestedWebElement('Bye warcraft'), new TestedWebElement('Bye world'));
try {
$this->constraint->evaluate($nodes, 'selector');
} catch (\PHPUnit\Framework\AssertionFailedError $fail) {
$this->assertContains(
"Failed asserting that any element by 'selector' on page /user",
$fail->getMessage()
);
$this->assertContains('+ <p> Bye world', $fail->getMessage());
$this->assertContains('+ <p> Bye warcraft', $fail->getMessage());
return;
}
$this->fail("should have failed, but not");
}
public function testFailMessageResponseWithArraySelector()
{
$nodes = array(new TestedWebElement('Bye warcraft'));
try {
$this->constraint->evaluate($nodes, ['css' => 'p.mocked']);
} catch (\PHPUnit\Framework\AssertionFailedError $fail) {
$this->assertContains(
"Failed asserting that any element by css 'p.mocked' on page /user",
$fail->getMessage()
);
$this->assertContains('+ <p> Bye warcraft', $fail->getMessage());
return;
}
$this->fail("should have failed, but not");
}
public function testFailMessageResponseWhenMoreNodes()
{
$nodes = array();
for ($i = 0; $i < 15; $i++) {
$nodes[] = new TestedWebElement("item $i");
}
try {
$this->constraint->evaluate($nodes, 'selector');
} catch (\PHPUnit\Framework\AssertionFailedError $fail) {
$this->assertContains(
"Failed asserting that any element by 'selector' on page /user",
$fail->getMessage()
);
$this->assertNotContains('+ <p> item 0', $fail->getMessage());
$this->assertNotContains('+ <p> item 14', $fail->getMessage());
$this->assertContains('[total 15 elements]', $fail->getMessage());
return;
}
$this->fail("should have failed, but not");
}
public function testFailMessageResponseWithoutUrl()
{
$this->constraint = new Codeception\PHPUnit\Constraint\WebDriver('hello');
$nodes = array(new TestedWebElement('Bye warcraft'), new TestedWebElement('Bye world'));
try {
$this->constraint->evaluate($nodes, 'selector');
} catch (\PHPUnit\Framework\AssertionFailedError $fail) {
$this->assertContains("Failed asserting that any element by 'selector'", $fail->getMessage());
$this->assertNotContains("Failed asserting that any element by 'selector' on page", $fail->getMessage());
return;
}
$this->fail("should have failed, but not");
}
}