summaryrefslogtreecommitdiff
path: root/src/regex/RegexTest.java
blob: 56d49bb910de73de2c8ee4f64b354af2d6c3ced2 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
 * Authors:
 * Peter Wu (0783206)
 * Andrea Evangelista (0876766)
 */

package regex;

import dk.brics.automaton.RegExp;
import dk.brics.automaton.RunAutomaton;

public class RegexTest {

    private final RunAutomaton r;

    public RegexTest(String regex) {
        System.out.println("regular expression = " + regex);
        r = new RunAutomaton(new RegExp(regex).toAutomaton());
    }

    public long dfaMatch(String input, int index) {
        long start = System.nanoTime();
        int length = r.run(input, index);
        long end = System.nanoTime();

        if (length == -1) {
            System.out.println("No match found!");
        } else {
            String s = input.substring(index, index + length);
            System.out.println("Found: " + s);
        }

        return end - start;
    }

    void runTest(String input, int index) {
        System.out.println("input string = " + input);
        System.out.println("index = " + index);

        long dfaMatchTime = dfaMatch(input, index);
        System.out.println("dfaMatchTime " + dfaMatchTime);
    }

    private void check(String input, boolean expectOk) {
        boolean accepted = r.run(input);
        System.out.println("Testing input: " + input);
        if (expectOk && !accepted || !expectOk && accepted) {
            throw new RuntimeException("Unexpected result for " + input);
        }
    }

    void assertOk(String input) {
        check(input, true);
    }

    void assertFail(String input) {
        check(input, false);
    }

    static void checkId() {
        RegexTest reId = new RegexTest("[a-z][a-z0-9]*");
        reId.assertOk("id");
        reId.assertOk("d0d");
        reId.assertFail("Id");
        reId.assertFail("0");
        reId.assertFail("0d");
        reId.assertFail("aD");
        System.out.println();
    }

    static void checkNAT() {
        RegexTest reNAT = new RegexTest("[0]|[1-9][0-9]*");
        reNAT.assertOk("2");
        reNAT.assertOk("14451");
        reNAT.assertFail("Id");
        reNAT.assertFail("-145711");
        reNAT.assertFail("01");
        System.out.println();
    }

    static void checkFLOAT() {
        String UnsignedInt = "([0]|([1-9][0-9]*))";
        String SignedInt = "[\\+\\-]?" + UnsignedInt;
        String UnsignedReal = "(" + UnsignedInt + "\\." + "[0-9]+" + "([eE]" + SignedInt + ")?" + ")";

        UnsignedReal += "|(" + UnsignedInt + "[eE]" + SignedInt + ")";

        String Number = UnsignedInt + "|" + UnsignedReal;

        RegexTest reFLOAT = new RegexTest(Number);
        reFLOAT.assertOk("0");
        reFLOAT.assertOk("1");
        reFLOAT.assertOk("14");
        reFLOAT.assertOk("0.1");
        reFLOAT.assertOk("3e4");
        reFLOAT.assertOk("3.014e-7");
        reFLOAT.assertOk("3.14E-7");
        reFLOAT.assertFail("00");
        reFLOAT.assertFail("01");
        reFLOAT.assertFail("04.1");
        reFLOAT.assertFail("3e04");
        reFLOAT.assertFail("3.14e-07");
        reFLOAT.assertFail("");
        reFLOAT.assertFail("e7");
        System.out.println();

    }

    static void checkString() {
        /* String           ::= (UnescapedChar | "\" EscapedChar)*
         * UnescapedChar    ::= Char - ["] - "\"
         *                      (* All Unicode chars but quote and backslash *)
         * EscapedChar      ::= ["] | "\"
         */
        RegexTest reString = new RegexTest("([^\\\"\\\\]|\\\\[\\\"\\\\])*");
        reString.assertOk("");
        reString.assertOk("abc");
        reString.assertOk("a\\\"b\\\"c");
        reString.assertOk("\\\"");
        reString.assertFail("a\"b\"c");
        reString.assertFail("\"");
        reString.assertFail("\\");
        reString.assertFail("\\x");
        reString.assertFail("\\\\\"");
        System.out.println();
    }

    public static void main(String[] args) {
        checkId();
        checkNAT();
        checkFLOAT();
        checkString();
        System.out.println("Passed.");
    }
}