Uploaded image for project: 'Tapestry'
  1. Tapestry
  2. TAPESTRY-1816

Some tapestry-ioc tests fail on IBM JDK due to subtle differences in JDK implementations

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 5.0
    • 5.0.7
    • tapestry-ioc
    • None

    Description

      I'm tried to build tapestry5-ioc with ibm jdk

      There is 3 failed test:
      src/test/java/org/apache/tapestry/ioc/internal/services/ClassFabImplTest.java:
      ======================================================================================
      public void attempt_to_subclass_from_final_class() throws Exception
      {
      ClassFab cf = newClassFab("StringSubclass", String.class);
      try

      { cf.createClass(); }

      catch (RuntimeException ex)

      { assertExceptionRegexp( ex, "Unable to create class StringSubclass\\: .*"); }

      }
      ======================================================================================
      but on ibm jdk it's "Unable to create class StringSubclass: by java.lang.VerifyError: java.lang.String"

      src/test/java/org/apache/tapestry/ioc/services/MethodIteratorTest.java:
      ======================================================================================
      public void inherited_methods_from_super_interface() {
      MethodIterator mi = new MethodIterator(Play.class);
      assertTrue(mi.hasNext());

      // Problematic because the order in which they are returned is
      // JDK specific and not defined! Perhaps we should sort by alpha?
      MethodSignature actual = mi.next();

      assertEquals(new MethodSignature(void.class, "jump", null, null), actual);
      assertTrue(mi.hasNext());
      actual = mi.next();
      assertEquals(new MethodSignature(void.class, "run", null, null), actual);
      assertFalse(mi.hasNext());
      assertEquals(false, mi.getToString());
      }
      ======================================================================================
      the problem is already described on ibm jdk i get other order
      the solution may be to check in order neutral way here or fix MethodIterator to iterate over ordered list (i personally prefer this way)

      and the last one:
      src/test/java/org/apache/tapestry/ioc/services/MethodSignatureTest.java:
      ======================================================================================
      public void to_string() {
      MethodSignature m = find(String.class, "getChars");
      assertEquals(m.toString(), "void getChars(int, int, char[], int)");
      m = find(Class.class, "newInstance");
      assertEquals(
      m.toString(),
      "java.lang.Object newInstance() throws java.lang.IllegalAccessException, java.lang.InstantiationException");
      }
      ======================================================================================
      the problem is that i get "java.lang.Object newInstance() throws java.lang.InstantiationException, java.lang.IllegalAccessException" with jdk
      (ie wrong order of exceptions)
      also it can be fixed here or (what i likes more) to_string may return ordered list of exceptions

      i tried to fix these errors, trivial patches in attachment
      please, review and apply/comment

      Attachments

        1. MethodSignatureTest.patch
          0.7 kB
          Pavel Volkovitskiy
        2. MethodSignature.patch
          1 kB
          Pavel Volkovitskiy
        3. MethodIterator.patch
          2 kB
          Pavel Volkovitskiy
        4. ClassFabImplTest.patch
          0.6 kB
          Pavel Volkovitskiy

        Activity

          People

            hlship Howard Lewis Ship
            int Pavel Volkovitskiy
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: