-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta3
-
generic, x86, sparc
-
generic, linux, solaris_8, windows_nt
-
Verified
Name: vtR10009 Date: 08/13/2001
API spec for PrinterStateReason(Map) constructor reads:
"Throws:
NullPointerException - (unchecked exception) Thrown if map is null
or if any key or value in map is null.
ClassCastException - (unchecked exception) Thrown if any key in map
is not an instance of class PrinterStateReason or if any value in map
is not an instance of class Severity."
However, the implementation (build 1.4.0-internal-b75) does not
throw this declared exceptions. This bug causes failure of JCK test:
api/javax_print/attribute/standard/PrinterStateReasons/index.html#Ctor
Note that the test was passed on jdk(build 1.4.0-internal-b73 and earlier),
so this is regression.
To reproduce the bug run the following test:
---------------------- test.java -------------------------------
import java.util.Map;
import java.util.HashMap;
import javax.print.attribute.standard.PrinterStateReasons;
import javax.print.attribute.standard.PrinterStateReason;
import javax.print.attribute.standard.Severity;
public class test{
public static void main(String args[])
{
boolean isFailed = false;
HashMap h = new HashMap();
h.put(PrinterStateReason.COVER_OPEN, Severity.ERROR);
h.put(null, Severity.REPORT);
h.put(PrinterStateReason.MARKER_SUPPLY_EMPTY, Severity.WARNING);
try {
PrinterStateReasons ps = new PrinterStateReasons((Map)h);
System.out.println("PrinterStateReasons(Map), a key is null: no "
+" NullPointerException");
isFailed = true;
} catch (NullPointerException np){}
h = new HashMap();
h.put(PrinterStateReason.COVER_OPEN, Severity.ERROR);
h.put(PrinterStateReason.INTERLOCK_OPEN, null);
h.put(PrinterStateReason.MARKER_SUPPLY_EMPTY, Severity.WARNING);
try {
PrinterStateReasons ps = new PrinterStateReasons((Map)h);
System.out.println("PrinterStateReasons(Map), a value is null: no "
+ "NullPointerException");
isFailed = true;
} catch (NullPointerException np){}
h = new HashMap();
h.put(PrinterStateReason.COVER_OPEN, Severity.ERROR);
h.put(Severity.WARNING, Severity.ERROR);
try {
PrinterStateReasons ps = new PrinterStateReasons((Map)h);
System.out.println("PrinterStateReasons(Map), a key is not "
+ "PrinterStateReason: no ClassCastException");
isFailed = true;
} catch (ClassCastException cc){}
h = new HashMap();
h.put(PrinterStateReason.COVER_OPEN, Severity.ERROR);
h.put(PrinterStateReason.INTERLOCK_OPEN,
PrinterStateReason.INTERLOCK_OPEN);
try {
PrinterStateReasons ps = new PrinterStateReasons((Map)h);
System.out.println("PrinterStateReasons(Map), a value is not
Severity: no ClassCastException");
isFailed = true;
} catch (ClassCastException cc){}
if (!isFailed) System.out.println("OKAY");
}
}
---------------------------Logs---------------------------------
$ javac test.java
$ java test
PrinterStateReasons(Map), a key is null: no NullPointerException
PrinterStateReasons(Map), a value is null: no NullPointerException
PrinterStateReasons(Map), a key is not PrinterStateReason: no ClassCastException
PrinterStateReasons(Map), a value is not Severity: no ClassCastException
$ java -version
java version "1.4.0-beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta_refresh-b75)
Java HotSpot(TM) Client VM (build 1.4.0-beta_refresh-b75, mixed mode)
----------------------------------------------------------------
======================================================================