summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/bureaucracy/_test/field_email.test.php
blob: c3c522abeba698aea5270efcd987ccf3aea8b994 (plain)
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
<?php

namespace dokuwiki\plugin\bureaucracy\test;

use \Doku_Form;

/**
 * @group plugin_bureaucracy
 * @group plugins
 */
class bureaucracy_field_email_test extends BureaucracyTest
{

    public function dataProvider()
    {
        return [
            [
                'Mail: @@emailLabel@@',
                'valid@example.com',
                'Mail: valid@example.com',
                [],
                'valid email',
            ],
            [
                'Mail: @@emailLabel@@',
                '@MAIL@',
                'Mail: @MAIL@',
                [],
                '@MAIL@ placeholder for user\'s email adress',
            ],
            [
                'Mail: @@emailLabel@@',
                'invalid@example',
                'Mail: invalid@example',
                [],
                'local email addresses are allowed',
            ],
            [
                'Mail: @@emailLabel@@',
                'invalid[at]example.com',
                null,
                ['emailLabel'],
                'invalid email',
            ],
        ];
    }

    /**
     * @dataProvider dataProvider
     *
     * @param string $templateSyntax
     * @param        $postedValue
     * @param string $expectedWikiText
     * @param string $expectedValidationErrors
     * @param string $msg
     *
     */
    public function test_field_email_submit(
        $templateSyntax,
        $postedValue,
        $expectedWikiText,
        $expectedValidationErrors,
        $msg
    ) {
        $actualValidationErrors = [];

        $label = 'emailLabel';
        $actualWikiText = parent::send_form_action_template(
            "email \"$label\"",
            $templateSyntax,
            $actualValidationErrors,
            $postedValue
        );

        if (empty($expectedValidationErrors)) {
            $this->assertEquals($expectedWikiText, $actualWikiText, $msg);
        }
        $this->assertEquals($expectedValidationErrors, $actualValidationErrors, $msg);
    }

    public function test_field_email_render()
    {
        $formSyntax = 'email emailLabel';
        $instr = p_get_instructions("<form>\n$formSyntax\n</form>");

        $actualHTML = p_render('xhtml', $instr, $info);

        $expectedFieldHTML = '<label><span>emailLabel <sup>*</sup></span> <input type="text" name="bureaucracy[0]" class="edit required" required="required" /></label>';
        $expectedHTML = self::FORM_PREFIX_HTML . "\n$expectedFieldHTML\n" . self::FORM_SUFFIX_HTML;
        $this->assertEquals(trim($expectedHTML), trim($actualHTML));
    }
}