19 declare(strict_types=1);
21 require_once(
"vendor/composer/vendor/autoload.php");
53 'description' =>
true,
54 'background' =>
false,
56 'featurewiki' =>
false,
57 'javascript' =>
false,
93 return in_array(
"ILIAS\\UI\\Component\\Component", $reflection->getInterfaceNames());
98 return preg_match(
"#^(\\\\)?ILIAS\\\\UI\\\\Component\\\\([a-zA-Z]+\\\\)*Factory$#", $name) === 1;
109 $reflection = self::buildFactoryReflection();
112 if (!in_array($element->getName(), self::$omit_factory_methods)) {
113 return array($element, $element->getName());
116 }, $reflection->getMethods())
124 $this->yaml_parser =
new Crawler\EntriesYamlParser();
130 $message =
"TODO: Put your factory into the proper namespace.";
131 $this->assertMatchesRegularExpression(
132 "#^ILIAS\\\\UI\\\\Component.#",
133 self::$reflection->getNamespaceName(),
140 $name = self::$reflection->getName();
141 $message =
"TODO: Give your factory a proper name.";
154 $function_name_string =
"\n public function " . $method_reflection->getName() .
"()";
155 $docstring_data = $this->yaml_parser->parseArrayFromString(
156 $method_reflection->getDocComment() . $function_name_string
158 $this->assertTrue(
true);
160 $message =
"TODO ($name): fix parse error in kitchen sink yaml: " . $e->getMessage();
163 $this->assertCount(1, $docstring_data);
164 return $docstring_data[0];
174 $message =
"TODO ($name): fix return type, it must be a factory or a component.";
177 $this->assertTrue(
true);
179 $this->assertTrue(
true);
197 $return_doc = $docstring_data[
"namespace"];
198 $name_uppercase = ucwords($name);
200 $regex_head =
"#^(\\\\?)$regex_factory_namespace";
202 $message =
"TODO ($name): fix @return, it does not match the method name.";
204 $this->assertMatchesRegularExpression(
205 "$regex_head\\\\$name_uppercase\\\\Factory$#",
212 $standard_pattern =
"$regex_head\\\\$name_uppercase#";
213 $standard_case = preg_match($standard_pattern, $return_doc);
216 $namespace_parts = explode(
"\\", self::$reflection->getNamespaceName());
217 $typediff_only_pattern =
"$regex_head\\\\" . array_pop($namespace_parts) .
"#";
218 $typediff_only_case = preg_match($typediff_only_pattern, $return_doc);
220 $this->assertTrue($standard_case || $typediff_only_case,
$message);
226 return str_replace(
"\\",
"\\\\", self::$reflection->getNamespaceName());
238 $message =
"TODO ($name): remove params from method that returns Factory.";
239 $this->assertEquals(0, $method_reflection->getNumberOfParameters(),
$message);
254 if ($kitchensink_info_settings[
'description']) {
255 $message =
"TODO ($name): add a description.";
256 $this->assertArrayHasKey(
'description', $docstring_data,
$message);
258 $desc_fields = implode(
", ", static::$description_categories);
259 $message =
"TODO ($name): the description field should at least contain one of these: $desc_fields.";
260 $existing_keys = array_keys($docstring_data[
"description"]);
261 $existing_expected_keys = array_intersect(static::$description_categories, $existing_keys);
262 $this->assertGreaterThanOrEqual(
264 $existing_expected_keys,
276 if (isset($docstring_data[
"description"]) && isset($docstring_data[
"description"][
"rivals"])) {
277 $rules = $docstring_data[
"description"][
"rivals"];
278 $message =
"TODO ($name): The Rivals field has a non-string index. Format like 'rival_name': 'description'";
279 $this->assertTrue(array_unique(
array_map(
"is_string", array_keys($rules))) === array(
true),
$message);
281 $this->assertTrue(
true);
292 if ($kitchensink_info_settings[
'background']) {
293 $message =
"TODO ($name): add a background field.";
294 $this->assertArrayHasKey(
'background', $docstring_data,
$message);
306 if ($kitchensink_info_settings[
'featurewiki']) {
307 $message =
"TODO ($name): add a featurewiki field.";
308 $this->assertArrayHasKey(
'featurewiki', $docstring_data,
$message);
320 if ($kitchensink_info_settings[
'javascript']) {
321 $message =
"TODO ($name): add a javascript field.";
322 $this->assertArrayHasKey(
'javascript', $docstring_data,
$message);
334 if ($kitchensink_info_settings[
'rules']) {
335 $message =
"TODO ($name): add a rules field.";
336 $this->assertArrayHasKey(
'rules', $docstring_data,
$message);
338 $rules_fields = implode(
", ", static::$rules_categories);
339 $message =
"TODO ($name): the rules field should at least contain one of these: $rules_fields.";
340 $existing_keys = array_keys($docstring_data[
"rules"]);
341 $existing_expected_keys = array_intersect(static::$rules_categories, $existing_keys);
342 $this->assertGreaterThanOrEqual(
344 $existing_expected_keys,
357 if (!$this->
returnsFactory($docstring_data) && $kitchensink_info_settings[
"context"]) {
358 $message =
"TODO ($name): factory method returning component should have context field. Add it.";
359 $this->assertArrayHasKey(
"context", $docstring_data,
$message);
365 if (array_key_exists($name, static::$kitchensink_info_settings)) {
367 static::$kitchensink_info_settings_default,
368 static::$kitchensink_info_settings[$name]
371 return static::$kitchensink_info_settings_default;
returnsFactory(array $docstring_data)
isFactoryName(string $name)
testKitchensinkInfoDescription(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
testReturnType(ReflectionMethod $method_reflection, string $name)
Tests whether the method either returns a factory or a component.
static string $factory_title
testKitchensinkInfoFeatureWiki(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
testKitchensinkInfoBackground(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
static array $omit_factory_methods
testKitchensinkInfoContext(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
returnsComponent(array $docstring_data)
static getMethodsProvider()
static array static array $description_categories
testKitchensinkInfoRules(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
testFactoryMethodNameCompatibleDocstring(ReflectionMethod $method_reflection, string $name)
Tests whether the method name matches the return doctring?
testMethodParams(ReflectionMethod $method_reflection, string $name)
Tests whether methods returning factories have no parameters.
static buildFactoryReflection()
static ReflectionClass $reflection
testKitchensinkInfoRivals(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
static array $kitchensink_info_settings_default
getRegexFactoryNamespace()
Crawler EntriesYamlParser $yaml_parser
kitchensinkInfoSettingsMergedWithDefaults(string $name)
static array $rules_categories
testKitchensinkInfoJavaScript(ReflectionMethod $method_reflection, string $name)
getMethodsProvider
Defines tests every SHOULD pass UI-factory.
testCheckYamlExtraction(ReflectionMethod $method_reflection, string $name)
Tests whether the YAML Kitchen Sink info can be parsed.