-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
8u31
-
x86_64
-
windows_7
FULL PRODUCT VERSION :
java version "1.8.0_31"
Java(TM) SE Runtime Environment (build 1.8.0_31-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7601]
A DESCRIPTION OF THE PROBLEM :
Two instances of the same MimeType fails on equals().
Match will work, but it seems like missing and equals implementation.
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.equals(mt2));
assertTrue(mt2.equals(mt1));
assertTrue(mt1.equals(mt1));
assertTrue(mt2.equals(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
ADDITIONAL REGRESSION INFORMATION:
java version "1.8.0_31"
Java(TM) SE Runtime Environment (build 1.8.0_31-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run test
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.equals(mt2));
assertTrue(mt2.equals(mt1));
assertTrue(mt1.equals(mt1));
assertTrue(mt2.equals(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
True on all 4 accounts.
ACTUAL -
False on all 4 accounts
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.equals(mt2));
assertTrue(mt2.equals(mt1));
assertTrue(mt1.equals(mt1));
assertTrue(mt2.equals(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.match(mt2));
assertTrue(mt2.match(mt1));
assertTrue(mt1.match(mt1));
assertTrue(mt2.match(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
java version "1.8.0_31"
Java(TM) SE Runtime Environment (build 1.8.0_31-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7601]
A DESCRIPTION OF THE PROBLEM :
Two instances of the same MimeType fails on equals().
Match will work, but it seems like missing and equals implementation.
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.equals(mt2));
assertTrue(mt2.equals(mt1));
assertTrue(mt1.equals(mt1));
assertTrue(mt2.equals(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
ADDITIONAL REGRESSION INFORMATION:
java version "1.8.0_31"
Java(TM) SE Runtime Environment (build 1.8.0_31-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run test
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.equals(mt2));
assertTrue(mt2.equals(mt1));
assertTrue(mt1.equals(mt1));
assertTrue(mt2.equals(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
True on all 4 accounts.
ACTUAL -
False on all 4 accounts
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.equals(mt2));
assertTrue(mt2.equals(mt1));
assertTrue(mt1.equals(mt1));
assertTrue(mt2.equals(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
@Test
public void testMimeTypeEquals() {
try {
MimeType mt1 = new MimeType("application/xml");
MimeType mt2 = new MimeType("application/xml");
assertTrue(mt1.match(mt2));
assertTrue(mt2.match(mt1));
assertTrue(mt1.match(mt1));
assertTrue(mt2.match(mt2));
} catch (MimeTypeParseException e) {
fail(e.getMessage());
}
}