[rules-dev] 5.3.x branch test failures. WAS: Re: 5.3.x regression in TypeDeclarationDescr

Michael Anstis michael.anstis at gmail.com
Thu Mar 1 05:02:48 EST 2012


Yes Jervis you are correct.

This is the current impact of the regression:-

   - Broken Gunvor tests
      -
      org.drools.ide.common.server.rules.SuggestionCompletionLoaderTest.testGeneratedBeansExtendsSimple
      -
      org.drools.ide.common.server.rules.SuggestionCompletionLoaderTest.testGeneratedBeansExtendsPOJOComplex
      - https://bugzilla.redhat.com/show_bug.cgi?id=796612
   - https://bugzilla.redhat.com/show_bug.cgi?id=754093

With kind regards,

Mike

On 1 March 2012 08:34, Jervis Liu <jliu at redhat.com> wrote:

>  Hi Mike,
>
> I believe it is the same regression problem you mentioned that caused
> following 2 tests failed on 5.3.x branch?
>
> http://hudson.qa.jboss.com/hudson/job/guvnor-5.3.x/564/
>
> BTW, we started to get those 2 failures around Feb 9, 2012 , if this info
> helps to find out whom is to blame ;-). Please check
> http://hudson.qa.jboss.com/hudson/job/guvnor-5.3.x/473/. The build 473
> was triggered by a upstream change.
>
> Thanks,
> Jervis
> On 2012/2/17 21:30, Michael Anstis wrote:
>
> Hi,
>
> There appears to be a regression in TypeDeclarationDescr in 5.3.x branch,
> as illustrated by the below.
>
> Bean2 is shown as having a super-type of "Object" whereas it should be
> "Bean1". The fields are correctly listed.
>
> This is causing tests in Guvnor to fail.
>
> Could somebody please take a look?
>
> Thanks,
>
> Mike
>
> package org.drools.ide.common.server.rules;
>
> import java.io.StringReader;
> import java.util.List;
>
> import org.drools.compiler.DrlParser;
> import org.drools.compiler.DroolsError;
> import org.drools.compiler.PackageBuilder;
> import org.drools.definition.type.FactField;
> import org.drools.lang.descr.PackageDescr;
> import org.drools.lang.descr.TypeDeclarationDescr;
> import org.junit.Test;
>
> public class RegressionTest {
>
>     @Test
>     public void regression() {
>         String drl = "package foo \n"
>                      + "declare Bean1 \n"
>                      + "age: int \n"
>                      + "name : String \n"
>                      + "end \n"
>                      + "declare Bean2 extends Bean1\n"
>                      + "cheese : String \n"
>                      + "end";
>
>         PackageBuilder builder = new PackageBuilder();
>         try {
>             DrlParser parser = new DrlParser();
>             PackageDescr pkgDescr = parser.parse( drl );
>             for ( TypeDeclarationDescr baseType :
> pkgDescr.getTypeDeclarations() ) {
>                 String declaredSuperTypeName = baseType.getSuperTypeName();
>                 System.out.println( baseType.getTypeName() + " extends " +
> declaredSuperTypeName );
>             }
>
>             builder.addPackageFromDrl( new StringReader( drl ) );
>
>             System.out.println("foo.Bean1 fields=");
>             List<FactField> fieldsBean1 =
> builder.getPackage().getFactType( "foo.Bean1" ).getFields();
>             for ( FactField field : fieldsBean1 ) {
>                 System.out.println( field.getName() );
>             }
>
>             System.out.println("foo.Bean2 fields=");
>             List<FactField> fieldsBean2 =
> builder.getPackage().getFactType( "foo.Bean2" ).getFields();
>             for ( FactField field : fieldsBean2 ) {
>                 System.out.println( field.getName() );
>             }
>
>             if ( builder.hasErrors() ) {
>                 for ( DroolsError e : builder.getErrors().getErrors() ) {
>                     System.out.println( e.getMessage() );
>                 }
>             }
>         } catch ( Exception e ) {
>             e.printStackTrace();
>         }
>
>     }
>
> }
>
>
>
> _______________________________________________
> rules-dev mailing listrules-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/rules-dev
>
>
>
> _______________________________________________
> rules-dev mailing list
> rules-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/rules-dev
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/rules-dev/attachments/20120301/fa1ada8d/attachment.html 


More information about the rules-dev mailing list