From 6f13a9caa9dd67cd075d40489bceda45097c0250 Mon Sep 17 00:00:00 2001 From: nathangray Date: Wed, 5 Apr 2017 10:10:08 -0600 Subject: [PATCH] Test some core Widget functions --- api/src/Etemplate/test/WidgetTest.php | 117 ++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 api/src/Etemplate/test/WidgetTest.php diff --git a/api/src/Etemplate/test/WidgetTest.php b/api/src/Etemplate/test/WidgetTest.php new file mode 100644 index 0000000000..792fa4304e --- /dev/null +++ b/api/src/Etemplate/test/WidgetTest.php @@ -0,0 +1,117 @@ + array( + 'expand_me' => 'expanded', + 'expand_2' => 'also_expanded', + 0 => array( + 'id' => 'row_id' + ) + ), + 'row' => 0, + 'c' => 0 + ); + + /** + * Test that setting and retrieving widget attributes is sane + */ + public function testAttributes() + { + $xml = ""; + $widget = new Widget($xml); + + + $this->assertEquals('test', $widget->id, 'ID was not set'); + + // Set in XML goes into attributes + $this->assertEquals('set', $widget->attrs['attribute'], 'XML attribute missing'); + + // get/setElementAttribute do not include xml + $this->assertNull($widget->getElementAttribute('test','attribute')); + + // XML does not include get/setElementAttribute + $widget->setElementAttribute('test', 'other_attribute', 'set'); + $this->assertEquals('set', $widget->getElementAttribute('test','other_attribute')); + $this->assertNull($widget->attrs['other_attribute']); + } + + /** + * Check to make sure form name building is still working. + * Uses expansion array + * + * @dataProvider formNameProvider + * + * @param string $base Base or container / parent ID + * @param string $element Element ID + * @param string $expected Expected result + */ + public function testFormName($base, $element, $expected) + { + $this->assertEquals($expected, Widget::form_name($base, $element, self::$expand)); + } + + /** + * Provides data for testFormName + * + * Each dataset is base (container or parent ID), input ID, expected result + * when using self::$expand to fill expansion variables. + */ + public static function formNameProvider() + { + return array( + // Base name, element name, expected + ['', 'input', 'input'], + ['', 'del[$cont[expand_me]]', 'del[expanded]'], + ['container', 'input', 'container[input]'], + ['grid[sub]', 'input', 'grid[sub][input]'], + ['grid', 'sub[input]', 'grid[sub][input]'], + ['grid[sub]', 'sub[input]', 'grid[sub][sub][input]'], + ['', '@expand_me', 'expanded'], + ['@expand_me', 'input', '@expand_me[input]'], + ['container', '@expand_me', 'container[expanded]'], + + // Rows + ['', '$row', '0'], + ['$row', '', '$row[]'], // Expansion only on element name + ['grid', '$row', 'grid[0]'], + ['grid', '$cont[$row]', 'grid[Array]'], + ['grid', '$row_cont[id]', 'grid[row_id]'], + + // Column + ['', '$c', '0'], + ['$c', '', '$c[]'], // Expansion only on element name + ['grid', '$c', 'grid[0]'], + + // Maybe not right, but this is what it gives + ['container', '@expand_me[input]', 'container[]'], + ['container', 'input[@expand_me]', 'container[input][@expand_me]'], + ['container', '@expand_2[@expand_me]', 'container[]'] + ); + } +}