Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8078292

javax.activation.MimeType do not implement equals()

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 8u31
    • other-libs

      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());
      }
      }


            pardesha Pardeep Sharma
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: