summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/bureaucracy/_test/field_date.test.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/lib/plugins/bureaucracy/_test/field_date.test.php')
-rw-r--r--platform/www/lib/plugins/bureaucracy/_test/field_date.test.php97
1 files changed, 97 insertions, 0 deletions
diff --git a/platform/www/lib/plugins/bureaucracy/_test/field_date.test.php b/platform/www/lib/plugins/bureaucracy/_test/field_date.test.php
new file mode 100644
index 0000000..3164630
--- /dev/null
+++ b/platform/www/lib/plugins/bureaucracy/_test/field_date.test.php
@@ -0,0 +1,97 @@
+<?php
+
+namespace dokuwiki\plugin\bureaucracy\test;
+
+use \Doku_Form;
+
+/**
+ * @group plugin_bureaucracy
+ * @group plugins
+ */
+class bureaucracy_field_date_test extends BureaucracyTest
+{
+
+ public function dataProvider()
+ {
+ return [
+ [
+ 'Date:@@dateLabel@@',
+ 'date "dateLabel"',
+ '2018-05-15',
+ 'Date:2018-05-15',
+ [],
+ 'valid date',
+ ],
+ [
+ 'Date:@@dateLabel@@',
+ 'date "dateLabel"',
+ '2018.05.15',
+ null,
+ ['dateLabel'],
+ 'invalid date',
+ ],
+ [
+ 'Date: @DATE(@@dateLabel@@)@',
+ 'date "dateLabel"',
+ '2018-02-15',
+ 'Date: 2018/02/15 00:00',
+ [],
+ 'formatted date with $conf[\'dformat\'] format',
+ ],
+ [
+ 'Month: @DATE(@@dateLabel@@,%%m)@',
+ 'date "dateLabel"',
+ '2018-02-15',
+ 'Month: 02',
+ [],
+ 'formatted date with custom format',
+ ],
+ ];
+ }
+
+ /**
+ * @dataProvider dataProvider
+ *
+ * @param string $templateSyntax
+ * @param string $formSyntax
+ * @param string $postedValue
+ * @param string $expectedWikiText
+ * @param string $expectedValidationErrors
+ * @param string $msg
+ *
+ */
+ public function test_field_date_submit(
+ $templateSyntax,
+ $formSyntax,
+ $postedValue,
+ $expectedWikiText,
+ $expectedValidationErrors,
+ $msg
+ ) {
+ $actualValidationErrors = [];
+
+ $actualWikiText = parent::send_form_action_template(
+ $formSyntax,
+ $templateSyntax,
+ $actualValidationErrors,
+ $postedValue
+ );
+
+ if (empty($expectedValidationErrors)) {
+ $this->assertEquals($expectedWikiText, $actualWikiText, $msg);
+ }
+ $this->assertEquals($expectedValidationErrors, $actualValidationErrors, $msg);
+ }
+
+ public function test_field_date_render()
+ {
+ $formSyntax = 'date "dateLabel"';
+ $instr = p_get_instructions("<form>\n$formSyntax\n</form>");
+
+ $actualHTML = p_render('xhtml', $instr, $info);
+
+ $expectedFieldHTML = '<label><span>dateLabel <sup>*</sup></span> <input type="text" name="bureaucracy[0]" class="datepicker edit required" maxlength="10" required="required" /></label>';
+ $expectedHTML = self::FORM_PREFIX_HTML . "\n$expectedFieldHTML\n" . self::FORM_SUFFIX_HTML;
+ $this->assertEquals(trim($expectedHTML), trim($actualHTML));
+ }
+}