-
-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Expand file tree
/
Copy pathphpunit.rb
More file actions
120 lines (101 loc) · 3.17 KB
/
phpunit.rb
File metadata and controls
120 lines (101 loc) · 3.17 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
class Phpunit < Formula
desc "Programmer-oriented testing framework for PHP"
homepage "https://phpunit.de"
url "https://phar.phpunit.de/phpunit-13.0.3.phar"
sha256 "4a27beb6d1f84934d1f49abfb575fb9f5bf29a0dc3df81018845f20b179d323f"
license "BSD-3-Clause"
livecheck do
url "https://phar.phpunit.de/phpunit.phar"
regex(%r{/phpunit[._-]v?(\d+(?:\.\d+)+)\.phar}i)
strategy :header_match
end
bottle do
sha256 cellar: :any_skip_relocation, all: "fd4766619e2289ad064a25c5b6140265766fbb558f81543a9f42deaca8543215"
end
depends_on "php" => :test
def install
bin.install "phpunit-#{version}.phar" => "phpunit"
end
test do
(testpath/"src/autoload.php").write <<~PHP
<?php
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'email' => '/Email.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
PHP
(testpath/"src/Email.php").write <<~PHP
<?php
declare(strict_types=1);
final class Email
{
private $email;
private function __construct(string $email)
{
$this->ensureIsValidEmail($email);
$this->email = $email;
}
public static function fromString(string $email): self
{
return new self($email);
}
public function __toString(): string
{
return $this->email;
}
private function ensureIsValidEmail(string $email): void
{
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
throw new InvalidArgumentException(
sprintf(
'"%s" is not a valid email address',
$email
)
);
}
}
}
PHP
(testpath/"tests/EmailTest.php").write <<~PHP
<?php
declare(strict_types=1);
use PHPUnit\\Framework\\TestCase;
final class EmailTest extends TestCase
{
public function testCanBeCreatedFromValidEmailAddress(): void
{
$this->assertInstanceOf(
Email::class,
Email::fromString('user@example.com')
);
}
public function testCannotBeCreatedFromInvalidEmailAddress(): void
{
$this->expectException(InvalidArgumentException::class);
Email::fromString('invalid');
}
public function testCanBeUsedAsString(): void
{
$this->assertEquals(
'user@example.com',
Email::fromString('user@example.com')
);
}
}
PHP
assert_match(/^OK \(3 tests, 3 assertions\)$/,
shell_output("#{bin}/phpunit --bootstrap src/autoload.php tests/EmailTest.php"))
end
end