3 declare(strict_types=1);
7 require_once
'libs/composer/vendor/autoload.php';
18 private Data\Factory
$f;
23 protected function setUp(): void
25 $this->f =
new Data\Factory();
34 'single letter' => [
'c'],
35 'multiple letters' => [
'client'],
36 'single uppercase letter' => [
'C'],
37 'multiple uppercase letters' => [
'CLIENT'],
38 'single digit' => [
'1'],
39 'multiple digits' => [
'12'],
40 'letters + underscores' => [
'client_with_underscore'],
41 'letters + underscores + digits' => [
'client_with_12345'],
42 'letters + hyphens' => [
'client-with-hyphen'],
43 'dots + sharps' => [
'.#']
53 'path traversal' => [
'../../some/obscure/path'],
54 'space in between' => [
'my client'],
55 'wrapped in spaces' => [
' myclient '],
56 'umlaut' => [
'clüent'],
67 $this->assertEquals($value,
$clientId->toString());
78 $this->fail(
'This should not happen');
80 $this->assertTrue(
true);
86 $this->expectException(InvalidArgumentException::class);
88 $this->f->clientId(
'');
testValidArguments(string $value)
invalidClientIdProvider()
testInvalidArguments(string $value)
testClientIdCannotBeCreatedByAnEmptyString()