File: StatsTest.java

package info (click to toggle)
jtreg 5.1-b01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 5,432 kB
  • sloc: java: 29,218; xml: 729; sh: 665; makefile: 245
file content (132 lines) | stat: -rw-r--r-- 4,847 bytes parent folder | download | duplicates (7)
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
/*
 * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package com.sun.javatest.regtest.report;

import com.sun.javatest.Status;

public class StatsTest {
    static String[][] tests = {
        { "-p:1", "-f:10", "-e:100", "-n:1000",
                "--format:passed:%p failed:%f error:%e not run:%n",
                "passed:1 failed:10 error:100 not run:1000",
                "--format:%?{passed:p}% %?{failed:f}% %?{error:e}% %?{not run:n}",
                "passed:1 failed:10 error:100 not run:1000" },
        { "--format:%?{passed:p}% %?{failed:f}% %?{error:e}% %?{not run:n}",
                "-p:1",  "passed:1",
                "-f:10", "passed:1 failed:10",
                "-p:0",  "failed:10" },
        { "--format:%?{passed:p}%,% %?{failed:f}%,% %?{error:e}%,% %?{not run:n}",
                "-p:1",  "passed:1",
                "-f:10", "passed:1, failed:10",
                "-p:0",  "failed:10" },
        { "--format:%?{passed:p}% %?{failed:F}% %?{not run:n}",
                "-p:1",   "passed:1",
                "-f:10",  "passed:1 failed:10",
                "-e:100", "passed:1 failed:110",
                "-p:0",   "failed:110" },
        { "--format:%z", "%z" },
        { "--format:%?z", "%?z" },
        { "--format:%?{textz}", "%?{textz}" },
        { "--format:%?{text", "%?{text" },
    };

    public static void main(String... args) {
        StatsTest t = new StatsTest();
        try {
            if (args.length > 0)
                t.run(args);
            else {
                for (String[] test: tests) {
                    t.reset();
                    t.run(test);
                }
            }
        } catch (Exception e) {
            e.printStackTrace(System.err);
            System.exit(1);
        }
    }

    void run(String... args) throws Exception {
        for (String arg: args) {
            if (arg.startsWith("-e:")) {
                ts.counts[Status.ERROR] = Integer.valueOf(arg.substring(3));
            } else if (arg.startsWith("-f:")) {
                ts.counts[Status.FAILED] = Integer.valueOf(arg.substring(3));
            } else if (arg.startsWith("-n:")) {
                ts.counts[Status.NOT_RUN] = Integer.valueOf(arg.substring(3));
            } else if (arg.startsWith("-p:")) {
                ts.counts[Status.PASSED] = Integer.valueOf(arg.substring(3));
            } else if (arg.startsWith("-i:")) {
                ts.ignored = Integer.valueOf(arg.substring(3));
            } else if (arg.startsWith("-x:")) {
                ts.excluded = Integer.valueOf(arg.substring(3));
            } else if (arg.equals("-0")) {
                reset();
            } else if (arg.startsWith("--format:")) {
                format = arg.substring(9);
            } else if (arg.startsWith("-"))
                throw new IllegalArgumentException(arg);
            else
                test(arg);
        }

        if (errors > 0)
            throw new Exception(errors + " errors occurred");
    }

    void reset() {
        ts.counts[Status.ERROR] = 0;
        ts.counts[Status.FAILED] = 0;
        ts.counts[Status.NOT_RUN] = 0;
        ts.counts[Status.PASSED] = 0;
        ts.excluded = 0;
        ts.ignored = 0;
    }

    void test(String expect) {
        System.err.println("test: " + expect);
        String result = ts.getText(format);
        if (!equal(expect, result)) {
            error("unexpected result");
            System.err.println("    expected: '" + expect + "'");
            System.err.println("       found: '" + result + "'");
        }
    }

    void error(String msg) {
        System.err.println("Error: " + msg);
        errors++;
    }

    static <T> boolean equal(T t1, T t2) {
        return (t1 == null) ? (t2 == null) : t1.equals(t2);
    }



    TestStats ts = new TestStats();
    String format;
    int errors;
}