This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathNameTest.php
135 lines (125 loc) · 3.79 KB
/
NameTest.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
use PHPUnit\Framework\TestCase;
require_once('test_helper.php');
/**
* Class NameExample
*/
class NameExample
{
var $is_valid;
var $name;
var $namespace;
var $default_namespace;
var $expected_fullname;
/**
* NameExample constructor.
* @param $name
* @param $namespace
* @param $default_namespace
* @param $is_valid
* @param null $expected_fullname
*/
function __construct($name, $namespace, $default_namespace, $is_valid,
$expected_fullname=null)
{
$this->name = $name;
$this->namespace = $namespace;
$this->default_namespace = $default_namespace;
$this->is_valid = $is_valid;
$this->expected_fullname = $expected_fullname;
}
/**
* @return mixed
*/
function __toString()
{
return var_export($this, true);
}
}
/**
* Class NameTest
*/
class NameTest extends TestCase
{
/**
* @return array
*/
function fullname_provider()
{
$examples = array(new NameExample('foo', null, null, true, 'foo'),
new NameExample('foo', 'bar', null, true, 'bar.foo'),
new NameExample('bar.foo', 'baz', null, true, 'bar.foo'),
new NameExample('_bar.foo', 'baz', null, true, '_bar.foo'),
new NameExample('bar._foo', 'baz', null, true, 'bar._foo'),
new NameExample('3bar.foo', 'baz', null, false),
new NameExample('bar.3foo', 'baz', null, false),
new NameExample('b4r.foo', 'baz', null, true, 'b4r.foo'),
new NameExample('bar.f0o', 'baz', null, true, 'bar.f0o'),
new NameExample(' .foo', 'baz', null, false),
new NameExample('bar. foo', 'baz', null, false),
new NameExample('bar. ', 'baz', null, false)
);
$exes = array();
foreach ($examples as $ex)
$exes []= array($ex);
return $exes;
}
/**
* @dataProvider fullname_provider
* @param $ex
*/
function test_fullname($ex)
{
try
{
$name = new AvroName($ex->name, $ex->namespace, $ex->default_namespace);
$this->assertTrue($ex->is_valid);
$this->assertEquals($ex->expected_fullname, $name->fullname());
}
catch (AvroSchemaParseException $e)
{
$this->assertFalse($ex->is_valid, sprintf("%s:\n%s",
$ex,
$e->getMessage()));
}
}
/**
* @return array
*/
function name_provider()
{
return array(array('a', true),
array('_', true),
array('1a', false),
array('', false),
array(null, false),
array(' ', false),
array('Cons', true));
}
/**
* @dataProvider name_provider
* @param $name
* @param $is_well_formed
*/
function test_name($name, $is_well_formed)
{
$this->assertEquals(AvroName::is_well_formed_name($name), $is_well_formed);
}
}