3 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
47 'description' =>
true,
48 'background' =>
false,
50 'featurewiki' =>
false,
51 'javascript' =>
false,
86 return in_array(
"ILIAS\\UI\\Component\\Component", $reflection->getInterfaceNames());
91 return preg_match(
"#^(\\\\)?ILIAS\\\\UI\\\\Component\\\\([a-zA-Z]+\\\\)*Factory$#", $name) === 1;
102 return array_map(
function ($element) {
103 return array($element, $element->getName());
104 }, $reflection->getMethods());
117 $message =
"TODO: Put your factory into the proper namespace.";
118 $this->assertMatchesRegularExpression(
119 "#^ILIAS\\\\UI\\\\Component.#",
120 $this->reflection->getNamespaceName(),
127 $name = $this->reflection->getName();
128 $message =
"TODO: Give your factory a proper name.";
141 $function_name_string =
"\n public function " . $method_reflection->getName() .
"()";
142 $docstring_data = $this->yaml_parser->parseArrayFromString(
143 $method_reflection->getDocComment() . $function_name_string
145 $this->assertTrue(
true);
147 $message =
"TODO ($name): fix parse error in kitchen sink yaml: " . $e->getMessage();
150 $this->assertCount(1, $docstring_data);
151 return $docstring_data[0];
161 $message =
"TODO ($name): fix return type, it must be a factory or a component.";
164 $this->assertTrue(
true);
166 $this->assertTrue(
true);
184 $return_doc = $docstring_data[
"namespace"];
185 $name_uppercase = ucwords($name);
187 $regex_head =
"#^(\\\\?)$regex_factory_namespace";
189 $message =
"TODO ($name): fix @return, it does not match the method name.";
191 $this->assertMatchesRegularExpression(
192 "$regex_head\\\\$name_uppercase\\\\Factory$#",
199 $standard_pattern =
"$regex_head\\\\$name_uppercase#";
200 $standard_case = preg_match($standard_pattern, $return_doc);
203 $namespace_parts = explode(
"\\", $this->reflection->getNamespaceName());
204 $typediff_only_pattern =
"$regex_head\\\\" . array_pop($namespace_parts) .
"#";
205 $typediff_only_case = preg_match($typediff_only_pattern, $return_doc);
207 $this->assertTrue($standard_case || $typediff_only_case,
$message);
213 return str_replace(
"\\",
"\\\\", $this->reflection->getNamespaceName());
225 $message =
"TODO ($name): remove params from method that returns Factory.";
226 $this->assertEquals(0, $method_reflection->getNumberOfParameters(),
$message);
241 if ($kitchensink_info_settings[
'description']) {
242 $message =
"TODO ($name): add a description.";
243 $this->assertArrayHasKey(
'description', $docstring_data,
$message);
245 $desc_fields = implode(
", ", $this->description_categories);
246 $message =
"TODO ($name): the description field should at least contain one of these: $desc_fields.";
247 $existing_keys = array_keys($docstring_data[
"description"]);
248 $existing_expected_keys = array_intersect($this->description_categories, $existing_keys);
249 $this->assertGreaterThanOrEqual(
251 $existing_expected_keys,
263 if (isset($docstring_data[
"description"]) && isset($docstring_data[
"description"][
"rivals"])) {
264 $rules = $docstring_data[
"description"][
"rivals"];
265 $message =
"TODO ($name): The Rivals field has a non-string index. Format like 'rival_name': 'description'";
266 $this->assertTrue(array_unique(array_map(
"is_string", array_keys($rules))) === array(
true),
$message);
268 $this->assertTrue(
true);
279 if ($kitchensink_info_settings[
'background']) {
280 $message =
"TODO ($name): add a background field.";
281 $this->assertArrayHasKey(
'background', $docstring_data,
$message);
293 if ($kitchensink_info_settings[
'featurewiki']) {
294 $message =
"TODO ($name): add a featurewiki field.";
295 $this->assertArrayHasKey(
'featurewiki', $docstring_data,
$message);
307 if ($kitchensink_info_settings[
'javascript']) {
308 $message =
"TODO ($name): add a javascript field.";
309 $this->assertArrayHasKey(
'javascript', $docstring_data,
$message);
321 if ($kitchensink_info_settings[
'rules']) {
322 $message =
"TODO ($name): add a rules field.";
323 $this->assertArrayHasKey(
'rules', $docstring_data,
$message);
325 $rules_fields = implode(
", ", $this->rules_categories);
326 $message =
"TODO ($name): the rules field should at least contain one of these: $rules_fields.";
327 $existing_keys = array_keys($docstring_data[
"rules"]);
328 $existing_expected_keys = array_intersect($this->rules_categories, $existing_keys);
329 $this->assertGreaterThanOrEqual(
331 $existing_expected_keys,
347 $message =
"TODO ($name): remove 'context' field, method returns a factory.";
348 $this->assertArrayNotHasKey(
"context", $docstring_data,
$message);
350 if ($kitchensink_info_settings[
"context"]) {
351 $message =
"TODO ($name): factory method returning component should have context field. Add it.";
352 $this->assertArrayHasKey(
"context", $docstring_data,
$message);
359 if (array_key_exists($name, $this->kitchensink_info_settings)) {
361 $this->kitchensink_info_settings_default,
362 $this->kitchensink_info_settings[$name]
test_return_type(ReflectionMethod $method_reflection, string $name)
Tests whether the method either returns a factory or a component.
test_kitchensink_info_featurewiki(ReflectionMethod $method_reflection, string $name)
methods_provider
test_kitchensink_info_javascript(ReflectionMethod $method_reflection, string $name)
methods_provider
test_kitchensink_info_context(ReflectionMethod $method_reflection, string $name)
methods_provider
array $kitchensink_info_settings_default
Crawler EntriesYamlParser $yaml_parser
returnsComponent(array $docstring_data)
test_method_params(ReflectionMethod $method_reflection, string $name)
Tests whether methods returning factories have no parameters.
kitchensink_info_settings_merged_with_defaults(string $name)
test_kitchensink_info_description(ReflectionMethod $method_reflection, string $name)
methods_provider
Defines tests every SHOULD pass UI-factory.
test_kitchensink_info_background(ReflectionMethod $method_reflection, string $name)
methods_provider
returnsFactory(array $docstring_data)
test_kitchensink_info_rivals(ReflectionMethod $method_reflection, string $name)
methods_provider
array array $description_categories
test_kitchensink_info_rules(ReflectionMethod $method_reflection, string $name)
methods_provider
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_check_yaml_extraction(ReflectionMethod $method_reflection, string $name)
Tests whether the YAML Kitchen Sink info can be parsed.
ReflectionClass $reflection
test_factory_method_name_compatible_docstring(ReflectionMethod $method_reflection, string $name)
Tests whether the method name matches the return doctring?
isFactoryName(string $name)
get_regex_factory_namespace()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...