121 lines
3.2 KiB
Ruby
121 lines
3.2 KiB
Ruby
class Phpunit < Formula
|
|
desc "Programmer-oriented testing framework for PHP"
|
|
homepage "https://phpunit.de"
|
|
url "https://phar.phpunit.de/phpunit-9.5.27.phar"
|
|
sha256 "137bf126d86a228ee9e158f58c07d939c0eb7c3626f990e00393e88654810247"
|
|
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: "faf8348da6ce7b4822e5c29db66c7b8a531399f3974407ef7e555b495216b7a6"
|
|
end
|
|
|
|
depends_on "php" => :test
|
|
|
|
def install
|
|
bin.install "phpunit-#{version}.phar" => "phpunit"
|
|
end
|
|
|
|
test do
|
|
(testpath/"src/autoload.php").write <<~EOS
|
|
<?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
|
|
);
|
|
EOS
|
|
|
|
(testpath/"src/Email.php").write <<~EOS
|
|
<?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
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
EOS
|
|
|
|
(testpath/"tests/EmailTest.php").write <<~EOS
|
|
<?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')
|
|
);
|
|
}
|
|
}
|
|
|
|
EOS
|
|
assert_match(/^OK \(3 tests, 3 assertions\)$/,
|
|
shell_output("#{bin}/phpunit --bootstrap src/autoload.php tests/EmailTest.php"))
|
|
end
|
|
end
|