summaryrefslogtreecommitdiff
path: root/json/tests/draft3/optional/non-bmp-regex.json
blob: dd67af2b2ada79adadc1a6dc284c134222cac7a8 (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
[
    {
        "description": "Proper UTF-16 surrogate pair handling: pattern",
        "comment": "Optional because .Net doesn't correctly handle 32-bit Unicode characters",
        "schema": { "pattern": "^🐲*$" },
        "tests": [
            {
                "description": "matches empty",
                "data": "",
                "valid": true
            },
            {
                "description": "matches single",
                "data": "🐲",
                "valid": true
            },
            {
                "description": "matches two",
                "data": "🐲🐲",
                "valid": true
            },
            {
                "description": "doesn't match one",
                "data": "🐉",
                "valid": false
            },
            {
                "description": "doesn't match two",
                "data": "🐉🐉",
                "valid": false
            },
            {
                "description": "doesn't match one ASCII",
                "data": "D",
                "valid": false
            },
            {
                "description": "doesn't match two ASCII",
                "data": "DD",
                "valid": false
            }
        ]
    },
    {
        "description": "Proper UTF-16 surrogate pair handling: patternProperties",
        "comment": "Optional because .Net doesn't correctly handle 32-bit Unicode characters",
        "schema": {
            "patternProperties": {
                "^🐲*$": {
                    "type": "integer"
                }
            }
        },
        "tests": [
            {
                "description": "matches empty",
                "data": { "": 1 },
                "valid": true
            },
            {
                "description": "matches single",
                "data": { "🐲": 1 },
                "valid": true
            },
            {
                "description": "matches two",
                "data": { "🐲🐲": 1 },
                "valid": true
            },
            {
                "description": "doesn't match one",
                "data": { "🐲": "hello" },
                "valid": false
            },
            {
                "description": "doesn't match two",
                "data": { "🐲🐲": "hello" },
                "valid": false
            }
        ]
    }
]