Skip to content

Commit f84b0ad

Browse files
justin-curtis-luBrent Christian
authored and
Brent Christian
committedNov 2, 2022
8295670: Remove duplication in java/util/Formatter/Basic*.java
Reviewed-by: bchristi, lancea, naoto
1 parent a124d8e commit f84b0ad

22 files changed

+1758
-28135
lines changed
 

‎test/jdk/java/util/Formatter/Basic-X.java.template

-97
Original file line numberDiff line numberDiff line change
@@ -43,103 +43,6 @@ import java.util.regex.Pattern;
4343
#end[datetime]
4444

4545
public class Basic$Type$ extends Basic {
46-
47-
private static void test(String fs, String exp, Object ... args) {
48-
Formatter f = new Formatter(new StringBuilder(), Locale.US);
49-
f.format(fs, args);
50-
ck(fs, exp, f.toString());
51-
52-
f = new Formatter(new StringBuilder(), Locale.US);
53-
f.format("foo " + fs + " bar", args);
54-
ck(fs, "foo " + exp + " bar", f.toString());
55-
}
56-
57-
private static void test(Locale l, String fs, String exp, Object ... args)
58-
{
59-
Formatter f = new Formatter(new StringBuilder(), l);
60-
f.format(fs, args);
61-
ck(fs, exp, f.toString());
62-
63-
f = new Formatter(new StringBuilder(), l);
64-
f.format("foo " + fs + " bar", args);
65-
ck(fs, "foo " + exp + " bar", f.toString());
66-
}
67-
68-
private static void test(String fs, Object ... args) {
69-
Formatter f = new Formatter(new StringBuilder(), Locale.US);
70-
f.format(fs, args);
71-
ck(fs, "fail", f.toString());
72-
}
73-
74-
private static void test(String fs) {
75-
Formatter f = new Formatter(new StringBuilder(), Locale.US);
76-
f.format(fs, "fail");
77-
ck(fs, "fail", f.toString());
78-
}
79-
80-
private static void testSysOut(String fs, String exp, Object ... args) {
81-
FileOutputStream fos = null;
82-
FileInputStream fis = null;
83-
try {
84-
PrintStream saveOut = System.out;
85-
fos = new FileOutputStream("testSysOut");
86-
System.setOut(new PrintStream(fos));
87-
System.out.format(Locale.US, fs, args);
88-
fos.close();
89-
90-
fis = new FileInputStream("testSysOut");
91-
byte [] ba = new byte[exp.length()];
92-
int len = fis.read(ba);
93-
String got = new String(ba);
94-
if (len != ba.length)
95-
fail(fs, exp, got);
96-
ck(fs, exp, got);
97-
98-
System.setOut(saveOut);
99-
} catch (FileNotFoundException ex) {
100-
fail(fs, ex.getClass());
101-
} catch (IOException ex) {
102-
fail(fs, ex.getClass());
103-
} finally {
104-
try {
105-
if (fos != null)
106-
fos.close();
107-
if (fis != null)
108-
fis.close();
109-
} catch (IOException ex) {
110-
fail(fs, ex.getClass());
111-
}
112-
}
113-
}
114-
115-
private static void tryCatch(String fs, Class<?> ex) {
116-
boolean caught = false;
117-
try {
118-
test(fs);
119-
} catch (Throwable x) {
120-
if (ex.isAssignableFrom(x.getClass()))
121-
caught = true;
122-
}
123-
if (!caught)
124-
fail(fs, ex);
125-
else
126-
pass();
127-
}
128-
129-
private static void tryCatch(String fs, Class<?> ex, Object ... args) {
130-
boolean caught = false;
131-
try {
132-
test(fs, args);
133-
} catch (Throwable x) {
134-
if (ex.isAssignableFrom(x.getClass()))
135-
caught = true;
136-
}
137-
if (!caught)
138-
fail(fs, ex);
139-
else
140-
pass();
141-
}
142-
14346
#if[datetime]
14447
private static void testDateTime(String fs, String exp, Calendar c) {
14548
testDateTime(fs, exp, c, true);

‎test/jdk/java/util/Formatter/Basic.java

+105-4
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,119 @@
2121
* questions.
2222
*/
2323

24+
import java.io.*;
25+
import java.util.Formatter;
26+
import java.util.Locale;
27+
2428
public class Basic {
2529

2630
private static int fail = 0;
31+
2732
private static int pass = 0;
2833

2934
private static Throwable first;
3035

31-
static void pass() {
36+
protected static void test(String fs, String exp, Object ... args) {
37+
Formatter f = new Formatter(new StringBuilder(), Locale.US);
38+
f.format(fs, args);
39+
ck(fs, exp, f.toString());
40+
41+
f = new Formatter(new StringBuilder(), Locale.US);
42+
f.format("foo " + fs + " bar", args);
43+
ck(fs, "foo " + exp + " bar", f.toString());
44+
}
45+
46+
protected static void test(Locale l, String fs, String exp, Object ... args)
47+
{
48+
Formatter f = new Formatter(new StringBuilder(), l);
49+
f.format(fs, args);
50+
ck(fs, exp, f.toString());
51+
52+
f = new Formatter(new StringBuilder(), l);
53+
f.format("foo " + fs + " bar", args);
54+
ck(fs, "foo " + exp + " bar", f.toString());
55+
}
56+
57+
protected static void test(String fs, Object ... args) {
58+
Formatter f = new Formatter(new StringBuilder(), Locale.US);
59+
f.format(fs, args);
60+
ck(fs, "fail", f.toString());
61+
}
62+
63+
protected static void test(String fs) {
64+
Formatter f = new Formatter(new StringBuilder(), Locale.US);
65+
f.format(fs, "fail");
66+
ck(fs, "fail", f.toString());
67+
}
68+
69+
protected static void testSysOut(String fs, String exp, Object ... args) {
70+
FileOutputStream fos = null;
71+
FileInputStream fis = null;
72+
try {
73+
PrintStream saveOut = System.out;
74+
fos = new FileOutputStream("testSysOut");
75+
System.setOut(new PrintStream(fos));
76+
System.out.format(Locale.US, fs, args);
77+
fos.close();
78+
79+
fis = new FileInputStream("testSysOut");
80+
byte [] ba = new byte[exp.length()];
81+
int len = fis.read(ba);
82+
String got = new String(ba);
83+
if (len != ba.length)
84+
fail(fs, exp, got);
85+
ck(fs, exp, got);
86+
87+
System.setOut(saveOut);
88+
} catch (FileNotFoundException ex) {
89+
fail(fs, ex.getClass());
90+
} catch (IOException ex) {
91+
fail(fs, ex.getClass());
92+
} finally {
93+
try {
94+
if (fos != null)
95+
fos.close();
96+
if (fis != null)
97+
fis.close();
98+
} catch (IOException ex) {
99+
fail(fs, ex.getClass());
100+
}
101+
}
102+
}
103+
104+
protected static void tryCatch(String fs, Class<?> ex) {
105+
boolean caught = false;
106+
try {
107+
test(fs);
108+
} catch (Throwable x) {
109+
if (ex.isAssignableFrom(x.getClass()))
110+
caught = true;
111+
}
112+
if (!caught)
113+
fail(fs, ex);
114+
else
115+
pass();
116+
}
117+
118+
protected static void tryCatch(String fs, Class<?> ex, Object ... args) {
119+
boolean caught = false;
120+
try {
121+
test(fs, args);
122+
} catch (Throwable x) {
123+
if (ex.isAssignableFrom(x.getClass()))
124+
caught = true;
125+
}
126+
if (!caught)
127+
fail(fs, ex);
128+
else
129+
pass();
130+
}
131+
132+
private static void pass() {
32133
pass++;
33134
}
34135

35-
static void fail(String fs, Class ex) {
136+
private static void fail(String fs, Class ex) {
36137
String message = "'%s': %s not thrown".formatted(fs, ex.getName());
37138
if (first == null) {
38139
setFirst(message);
@@ -41,7 +142,7 @@ static void fail(String fs, Class ex) {
41142
fail++;
42143
}
43144

44-
static void fail(String fs, String exp, String got) {
145+
private static void fail(String fs, String exp, String got) {
45146
String message = "'%s': Expected '%s', got '%s'".formatted(fs, exp, got);
46147
if (first == null) {
47148
setFirst(message);
@@ -58,7 +159,7 @@ private static void setFirst(String s) {
58159
}
59160
}
60161

61-
static void ck(String fs, String exp, String got) {
162+
private static void ck(String fs, String exp, String got) {
62163
if (!exp.equals(got)) {
63164
fail(fs, exp, got);
64165
} else {

‎test/jdk/java/util/Formatter/BasicBigDecimal.java

+368-1,481
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicBigInteger.java

+78-1,531
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicBoolean.java

+7-1,541
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicBooleanObject.java

+7-1,541
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicByte.java

+28-1,469
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicByteObject.java

+41-1,515
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicChar.java

+7-1,541
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicCharObject.java

+7-1,541
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicDateTime.java

+88-1,462
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicDouble.java

+302-1,408
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicDoubleObject.java

+239-1,491
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicFloat.java

+55-1,138
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicFloatObject.java

+225-1,491
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicInt.java

+35-1,450
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicIntObject.java

+41-1,515
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicLong.java

+35-1,450
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicLongObject.java

+41-1,515
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicShort.java

+7-1,438
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/BasicShortObject.java

+41-1,515
Large diffs are not rendered by default.

‎test/jdk/java/util/Formatter/genBasic.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gen() {
3232
# fi
3333
out=Basic$2.java
3434
rm -f $out
35-
java build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -K$3 -K$4 -K$5 -K$6 -iBasic-X.java.template -o$out
35+
java build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -K$3 -K$4 -K$5 -K$6 -iBasic-X.java.template -nel -o$out
3636
}
3737

3838
gen boolean Boolean prim "" "" ""

0 commit comments

Comments
 (0)
Please sign in to comment.