Re: TomEE8 TCK status

2018-02-08 Thread Mark Struberg
Well, this is why there are passivation listeners and stuff in the Servlet spec.

We could easily also send a specific CDI event for it. But there is no such 
event in the CDI spec so far.
The @Destryoed and @BeforeDestroyed are specifically for _destroyal_. 

LieGrue,
strub

> Am 08.02.2018 um 12:12 schrieb Romain Manni-Bucau :
> 
> Hmm, it is more vicious cause if the session is not destroyed you can still
> want to trigger this event. Guess it is another case where both cases are
> desirable (i want to clean up related state of the session...as well as I
> don't want to touch the session)...
> 
> Since the appcontext destroy can be used as a workaround I think it is fine
> to challenge them now.
> 
> 
> Romain Manni-Bucau
> @rmannibucau  |  Blog
>  | Old Blog
>  | Github  |
> LinkedIn  | Book
> 
> 
> 2018-02-08 11:37 GMT+01:00 Mark Struberg :
> 
>> Yea, it's mainly testing whether the @Observes 
>> @BeforeDestroyed(SessionScoped.class)
>> and @Destroyed(SessionScoped.class) do work.
>> The tests itself are fine, but instead of relying that the sessions get
>> destroyed at server shutdown they could also have used
>> Session.invalidate()...
>> 
>> LieGrue,
>> strub
>> 
>> 
>>> Am 08.02.2018 um 11:30 schrieb Romain Manni-Bucau >> :
>>> 
>>> 2018-02-08 11:28 GMT+01:00 Mark Struberg :
>>> 
 All the embedded tests are now green.
 
 I'm now working on cdi-tomes (webprofile TCK).
 So far we have 10 errors, but a few TCK tests are broken because they
 wrongly assume that a container stop also kills the Session.
 
>>> 
>>> We can make them passing. We already did this kind of hack but since all
>>> container have pluggability here - for good reasons - I agree they
>>> shouldn't be in the TCK.
>>> 
>>> 
 I've challenged those tests. Still have to review every red test...
 
 LieGrue,
 strub
 
 
> Am 08.02.2018 um 11:19 schrieb Matthew Broadhead <
 matthew.broadh...@nbmlaw.co.uk>:
> 
> nearly there!
> 
> On 07/02/2018 11:57, Mark Struberg wrote:
>> [ERROR] Failures:
>> [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
>> arquillianBeforeClass:109
 » Deployment
>> [INFO]
>> [ERROR] Tests run: 1567, Failures: 1, Errors: 0, Skipped: 5
>> 
>> 
>> Wohuuu, 1 to go!
>> 
>> LieGrue,
>> strub
>> 
>>> Am 02.02.2018 um 21:54 schrieb Mark Struberg
>>  :
>>> 
>>> And the last status:
>>> 
>>> [ERROR] Failures:
>>> [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
>> arquillianBeforeClass:109
 » Deployment
>>> [ERROR]   ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.
>> arquillianBeforeClass:109
 » Deployment
>>> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
 interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
 found [false]
>>> [INFO]
>>> [ERROR] Tests run: 1570, Failures: 3, Errors: 0, Skipped: 22
>>> 
>>> Reminder: this is for cdi-embedded only for now.
>>> But once we are through that the rest is usually much easier.
>>> 
>>> LieGrue,
>>> strub
>>> 
>>> 
>>> 
 Am 01.02.2018 um 23:18 schrieb Mark Struberg :
 
 We are moving...
 
 [ERROR] Failures:
 [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
>> arquillianBeforeClass:109
 » Deployment
 [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
 testTransactionalObserverMethod:55 » EJB
 [ERROR]   SessionBeanObserverMethodInvoc
>> ationContextTest>Arquillian.
 run:164->testTransactionalObserverMethod:55 » EJB
 [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
 Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
 [ERROR]   ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.
>> arquillianBeforeClass:109
 » Deployment
 [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
 interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
 found [false]
 [INFO]
 [ERROR] Tests run: 1573, Failures: 6, Errors: 0, Skipped: 22
 
 
 
 
 On Thursday, 1 February 2018, 14:37:17 CET, Mark Struberg
  wrote:
 
 
 With a bit help from Romains we are now down to 10 failing tests:
 
 
 ERROR] Failures:
 [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
>> arquillianBeforeClass:109
 » Deployment
 [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
 testTransactionalObserverMethod:55 » EJB
 [ERROR]   SessionBeanObserverMethodInvoc
>> ationCon

Re: TomEE8 TCK status

2018-02-08 Thread Romain Manni-Bucau
Hmm, it is more vicious cause if the session is not destroyed you can still
want to trigger this event. Guess it is another case where both cases are
desirable (i want to clean up related state of the session...as well as I
don't want to touch the session)...

Since the appcontext destroy can be used as a workaround I think it is fine
to challenge them now.


Romain Manni-Bucau
@rmannibucau  |  Blog
 | Old Blog
 | Github  |
LinkedIn  | Book


2018-02-08 11:37 GMT+01:00 Mark Struberg :

> Yea, it's mainly testing whether the @Observes 
> @BeforeDestroyed(SessionScoped.class)
> and @Destroyed(SessionScoped.class) do work.
> The tests itself are fine, but instead of relying that the sessions get
> destroyed at server shutdown they could also have used
> Session.invalidate()...
>
> LieGrue,
> strub
>
>
> > Am 08.02.2018 um 11:30 schrieb Romain Manni-Bucau  >:
> >
> > 2018-02-08 11:28 GMT+01:00 Mark Struberg :
> >
> >> All the embedded tests are now green.
> >>
> >> I'm now working on cdi-tomes (webprofile TCK).
> >> So far we have 10 errors, but a few TCK tests are broken because they
> >> wrongly assume that a container stop also kills the Session.
> >>
> >
> > We can make them passing. We already did this kind of hack but since all
> > container have pluggability here - for good reasons - I agree they
> > shouldn't be in the TCK.
> >
> >
> >> I've challenged those tests. Still have to review every red test...
> >>
> >> LieGrue,
> >> strub
> >>
> >>
> >>> Am 08.02.2018 um 11:19 schrieb Matthew Broadhead <
> >> matthew.broadh...@nbmlaw.co.uk>:
> >>>
> >>> nearly there!
> >>>
> >>> On 07/02/2018 11:57, Mark Struberg wrote:
>  [ERROR] Failures:
>  [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
>  [INFO]
>  [ERROR] Tests run: 1567, Failures: 1, Errors: 0, Skipped: 5
> 
> 
>  Wohuuu, 1 to go!
> 
>  LieGrue,
>  strub
> 
> > Am 02.02.2018 um 21:54 schrieb Mark Struberg
>  >>> :
> >
> > And the last status:
> >
> > [ERROR] Failures:
> > [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
> > [ERROR]   ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
> > [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
> >> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
> >> found [false]
> > [INFO]
> > [ERROR] Tests run: 1570, Failures: 3, Errors: 0, Skipped: 22
> >
> > Reminder: this is for cdi-embedded only for now.
> > But once we are through that the rest is usually much easier.
> >
> > LieGrue,
> > strub
> >
> >
> >
> >> Am 01.02.2018 um 23:18 schrieb Mark Struberg :
> >>
> >> We are moving...
> >>
> >> [ERROR] Failures:
> >> [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
> >> [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
> >> testTransactionalObserverMethod:55 » EJB
> >> [ERROR]   SessionBeanObserverMethodInvoc
> ationContextTest>Arquillian.
> >> run:164->testTransactionalObserverMethod:55 » EJB
> >> [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
> >> Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
> >> [ERROR]   ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
> >> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
> >> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
> >> found [false]
> >> [INFO]
> >> [ERROR] Tests run: 1573, Failures: 6, Errors: 0, Skipped: 22
> >>
> >>
> >>
> >>
> >> On Thursday, 1 February 2018, 14:37:17 CET, Mark Struberg
> >>  wrote:
> >>
> >>
> >> With a bit help from Romains we are now down to 10 failing tests:
> >>
> >>
> >> ERROR] Failures:
> >> [ERROR]   EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
> >> [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
> >> testTransactionalObserverMethod:55 » EJB
> >> [ERROR]   SessionBeanObserverMethodInvoc
> ationContextTest>Arquillian.
> >> run:164->testTransactionalObserverMethod:55 » EJB
> >> [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
> >> Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
> >> [ERROR]   ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.
> arquillianBeforeClass:109
> >> » Deployment
> >> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
> >> interceptedBeanForE

Re: TomEE8 TCK status

2018-02-08 Thread Mark Struberg
Yea, it's mainly testing whether the @Observes 
@BeforeDestroyed(SessionScoped.class) and @Destroyed(SessionScoped.class) do 
work.
The tests itself are fine, but instead of relying that the sessions get 
destroyed at server shutdown they could also have used Session.invalidate()...

LieGrue,
strub


> Am 08.02.2018 um 11:30 schrieb Romain Manni-Bucau :
> 
> 2018-02-08 11:28 GMT+01:00 Mark Struberg :
> 
>> All the embedded tests are now green.
>> 
>> I'm now working on cdi-tomes (webprofile TCK).
>> So far we have 10 errors, but a few TCK tests are broken because they
>> wrongly assume that a container stop also kills the Session.
>> 
> 
> We can make them passing. We already did this kind of hack but since all
> container have pluggability here - for good reasons - I agree they
> shouldn't be in the TCK.
> 
> 
>> I've challenged those tests. Still have to review every red test...
>> 
>> LieGrue,
>> strub
>> 
>> 
>>> Am 08.02.2018 um 11:19 schrieb Matthew Broadhead <
>> matthew.broadh...@nbmlaw.co.uk>:
>>> 
>>> nearly there!
>>> 
>>> On 07/02/2018 11:57, Mark Struberg wrote:
 [ERROR] Failures:
 [ERROR]   
 EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
 [INFO]
 [ERROR] Tests run: 1567, Failures: 1, Errors: 0, Skipped: 5
 
 
 Wohuuu, 1 to go!
 
 LieGrue,
 strub
 
> Am 02.02.2018 um 21:54 schrieb Mark Struberg >> :
> 
> And the last status:
> 
> [ERROR] Failures:
> [ERROR]   
> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
> [ERROR]   
> ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
>> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
>> found [false]
> [INFO]
> [ERROR] Tests run: 1570, Failures: 3, Errors: 0, Skipped: 22
> 
> Reminder: this is for cdi-embedded only for now.
> But once we are through that the rest is usually much easier.
> 
> LieGrue,
> strub
> 
> 
> 
>> Am 01.02.2018 um 23:18 schrieb Mark Struberg :
>> 
>> We are moving...
>> 
>> [ERROR] Failures:
>> [ERROR]   
>> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
>> [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
>> testTransactionalObserverMethod:55 » EJB
>> [ERROR]   SessionBeanObserverMethodInvocationContextTest>Arquillian.
>> run:164->testTransactionalObserverMethod:55 » EJB
>> [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
>> Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
>> [ERROR]   
>> ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
>> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
>> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
>> found [false]
>> [INFO]
>> [ERROR] Tests run: 1573, Failures: 6, Errors: 0, Skipped: 22
>> 
>> 
>> 
>> 
>> On Thursday, 1 February 2018, 14:37:17 CET, Mark Struberg
>>  wrote:
>> 
>> 
>> With a bit help from Romains we are now down to 10 failing tests:
>> 
>> 
>> ERROR] Failures:
>> [ERROR]   
>> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
>> [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
>> testTransactionalObserverMethod:55 » EJB
>> [ERROR]   SessionBeanObserverMethodInvocationContextTest>Arquillian.
>> run:164->testTransactionalObserverMethod:55 » EJB
>> [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
>> Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
>> [ERROR]   
>> ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
>> » Deployment
>> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
>> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
>> found [false]
>> [ERROR]   
>> BuiltinMetadataSessionBeanTest>Arquillian.run:164->testDecoratorMetadata:91
>> » EJB
>> [ERROR]   
>> BuiltinMetadataSessionBeanTest>Arquillian.run:164->testInterceptorMetadata:78
>> » EJB
>> [ERROR]   
>> RemoteBusinessDisposalMethodTest>Arquillian.arquillianBeforeClass:109
>> » Runtime
>> [ERROR]   
>> RemoteBusinessProducerMethodTest>Arquillian.arquillianBeforeClass:109
>> » Runtime
>> [INFO]
>> [ERROR] Tests run: 1577, Failures: 10, Errors: 0, Skipped: 26
>> 
>> LieGrue,strub
>> 
>>   On Thursday, 1 February 2018, 00:21:58 CET, Mark Struberg
>>  wrote:
>> 
>> Fixed the new CDI-2.0  feature.
>> 
>> Now down to 16 ^^
>> 
>> [ERROR] Failures:
>> [ERROR]  
>> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
>> 

Re: TomEE8 TCK status

2018-02-08 Thread Romain Manni-Bucau
2018-02-08 11:28 GMT+01:00 Mark Struberg :

> All the embedded tests are now green.
>
> I'm now working on cdi-tomes (webprofile TCK).
> So far we have 10 errors, but a few TCK tests are broken because they
> wrongly assume that a container stop also kills the Session.
>

We can make them passing. We already did this kind of hack but since all
container have pluggability here - for good reasons - I agree they
shouldn't be in the TCK.


> I've challenged those tests. Still have to review every red test...
>
> LieGrue,
> strub
>
>
> > Am 08.02.2018 um 11:19 schrieb Matthew Broadhead <
> matthew.broadh...@nbmlaw.co.uk>:
> >
> > nearly there!
> >
> > On 07/02/2018 11:57, Mark Struberg wrote:
> >> [ERROR] Failures:
> >> [ERROR]   
> >> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
> » Deployment
> >> [INFO]
> >> [ERROR] Tests run: 1567, Failures: 1, Errors: 0, Skipped: 5
> >>
> >>
> >> Wohuuu, 1 to go!
> >>
> >> LieGrue,
> >> strub
> >>
> >>> Am 02.02.2018 um 21:54 schrieb Mark Struberg  >:
> >>>
> >>> And the last status:
> >>>
> >>> [ERROR] Failures:
> >>> [ERROR]   
> >>> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
> » Deployment
> >>> [ERROR]   
> >>> ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
> » Deployment
> >>> [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
> found [false]
> >>> [INFO]
> >>> [ERROR] Tests run: 1570, Failures: 3, Errors: 0, Skipped: 22
> >>>
> >>> Reminder: this is for cdi-embedded only for now.
> >>> But once we are through that the rest is usually much easier.
> >>>
> >>> LieGrue,
> >>> strub
> >>>
> >>>
> >>>
>  Am 01.02.2018 um 23:18 schrieb Mark Struberg :
> 
>  We are moving...
> 
>  [ERROR] Failures:
>  [ERROR]   
>  EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
> » Deployment
>  [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
> testTransactionalObserverMethod:55 » EJB
>  [ERROR]   SessionBeanObserverMethodInvocationContextTest>Arquillian.
> run:164->testTransactionalObserverMethod:55 » EJB
>  [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
> Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
>  [ERROR]   
>  ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
> » Deployment
>  [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
> found [false]
>  [INFO]
>  [ERROR] Tests run: 1573, Failures: 6, Errors: 0, Skipped: 22
> 
> 
> 
> 
>  On Thursday, 1 February 2018, 14:37:17 CET, Mark Struberg
>  wrote:
> 
> 
>  With a bit help from Romains we are now down to 10 failing tests:
> 
> 
>  ERROR] Failures:
>  [ERROR]   
>  EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
> » Deployment
>  [ERROR]   ObserverMethodInvocationContextTest>Arquillian.run:164->
> testTransactionalObserverMethod:55 » EJB
>  [ERROR]   SessionBeanObserverMethodInvocationContextTest>Arquillian.
> run:164->testTransactionalObserverMethod:55 » EJB
>  [ERROR]   SessionBeanStaticObserverMethodInvocationContextTest>
> Arquillian.run:164->testTransactionalObserverMethod:55 » EJB
>  [ERROR]   
>  ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
> » Deployment
>  [ERROR]   BuiltinMetadataEEBeanTest>Arquillian.run:164->
> interceptedBeanForEEComponentIsNullInInterceptor:61 expected [true] but
> found [false]
>  [ERROR]   
>  BuiltinMetadataSessionBeanTest>Arquillian.run:164->testDecoratorMetadata:91
> » EJB
>  [ERROR]   
>  BuiltinMetadataSessionBeanTest>Arquillian.run:164->testInterceptorMetadata:78
> » EJB
>  [ERROR]   
>  RemoteBusinessDisposalMethodTest>Arquillian.arquillianBeforeClass:109
> » Runtime
>  [ERROR]   
>  RemoteBusinessProducerMethodTest>Arquillian.arquillianBeforeClass:109
> » Runtime
>  [INFO]
>  [ERROR] Tests run: 1577, Failures: 10, Errors: 0, Skipped: 26
> 
>  LieGrue,strub
> 
> On Thursday, 1 February 2018, 00:21:58 CET, Mark Struberg
>  wrote:
> 
>  Fixed the new CDI-2.0  feature.
> 
>  Now down to 16 ^^
> 
>  [ERROR] Failures:
>  [ERROR]  
>  EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
> » Deployment
>  [ERROR]  ResourceAdapterArchiveTest>Arquillian.run:164->testInjection:79
> expected object to not be null
>  [ERROR]  ResourceAdapterArchiveTest>Arquillian.run:164->
> testResolution:86->AbstractTest.getUniqueBean:133->AbstractTest.resolveUniqueBean:169
> » UnsatisfiedResolution
>  [ERROR]  
>  EJBAsyncObserverMethodRemoteBusinessMethodTest>Arquillian.arquillianBeforeClass:109
> » Runtime
>  [ERROR]  
> 

Re: TomEE8 TCK status

2018-02-08 Thread Mark Struberg
All the embedded tests are now green.

I'm now working on cdi-tomes (webprofile TCK).
So far we have 10 errors, but a few TCK tests are broken because they wrongly 
assume that a container stop also kills the Session.
I've challenged those tests. Still have to review every red test...

LieGrue,
strub


> Am 08.02.2018 um 11:19 schrieb Matthew Broadhead 
> :
> 
> nearly there!
> 
> On 07/02/2018 11:57, Mark Struberg wrote:
>> [ERROR] Failures:
>> [ERROR]   
>> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 
>> » Deployment
>> [INFO]
>> [ERROR] Tests run: 1567, Failures: 1, Errors: 0, Skipped: 5
>> 
>> 
>> Wohuuu, 1 to go!
>> 
>> LieGrue,
>> strub
>> 
>>> Am 02.02.2018 um 21:54 schrieb Mark Struberg :
>>> 
>>> And the last status:
>>> 
>>> [ERROR] Failures:
>>> [ERROR]   
>>> EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 
>>> » Deployment
>>> [ERROR]   
>>> ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
>>>  » Deployment
>>> [ERROR]   
>>> BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
>>>  expected [true] but found [false]
>>> [INFO]
>>> [ERROR] Tests run: 1570, Failures: 3, Errors: 0, Skipped: 22
>>> 
>>> Reminder: this is for cdi-embedded only for now.
>>> But once we are through that the rest is usually much easier.
>>> 
>>> LieGrue,
>>> strub
>>> 
>>> 
>>> 
 Am 01.02.2018 um 23:18 schrieb Mark Struberg :
 
 We are moving...
 
 [ERROR] Failures:
 [ERROR]   
 EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
  » Deployment
 [ERROR]   
 ObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]   
 SessionBeanObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]   
 SessionBeanStaticObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]   
 ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
  » Deployment
 [ERROR]   
 BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
  expected [true] but found [false]
 [INFO]
 [ERROR] Tests run: 1573, Failures: 6, Errors: 0, Skipped: 22
 
 
 
 
 On Thursday, 1 February 2018, 14:37:17 CET, Mark Struberg 
  wrote:
 
 
 With a bit help from Romains we are now down to 10 failing tests:
 
 
 ERROR] Failures:
 [ERROR]   
 EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
  » Deployment
 [ERROR]   
 ObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]   
 SessionBeanObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]   
 SessionBeanStaticObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]   
 ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
  » Deployment
 [ERROR]   
 BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
  expected [true] but found [false]
 [ERROR]   
 BuiltinMetadataSessionBeanTest>Arquillian.run:164->testDecoratorMetadata:91
  » EJB
 [ERROR]   
 BuiltinMetadataSessionBeanTest>Arquillian.run:164->testInterceptorMetadata:78
  » EJB
 [ERROR]   
 RemoteBusinessDisposalMethodTest>Arquillian.arquillianBeforeClass:109 » 
 Runtime
 [ERROR]   
 RemoteBusinessProducerMethodTest>Arquillian.arquillianBeforeClass:109 » 
 Runtime
 [INFO]
 [ERROR] Tests run: 1577, Failures: 10, Errors: 0, Skipped: 26
 
 LieGrue,strub
 
On Thursday, 1 February 2018, 00:21:58 CET, Mark Struberg 
  wrote:
 
 Fixed the new CDI-2.0  feature.
 
 Now down to 16 ^^
 
 [ERROR] Failures:
 [ERROR]  
 EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109
  » Deployment
 [ERROR]  ResourceAdapterArchiveTest>Arquillian.run:164->testInjection:79 
 expected object to not be null
 [ERROR]  
 ResourceAdapterArchiveTest>Arquillian.run:164->testResolution:86->AbstractTest.getUniqueBean:133->AbstractTest.resolveUniqueBean:169
  » UnsatisfiedResolution
 [ERROR]  
 EJBAsyncObserverMethodRemoteBusinessMethodTest>Arquillian.arquillianBeforeClass:109
  » Runtime
 [ERROR]  
 EJBObserverMethodRemoteBusinessMethodTest>Arquillian.arquillianBeforeClass:109
  » Runtime
 [ERROR]  
 ObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
  » EJB
 [ERROR]  
 EnterpriseSecurityContextPropagationInAsyncObserverTest>Ar

Re: TomEE8 TCK status

2018-02-08 Thread Matthew Broadhead

nearly there!

On 07/02/2018 11:57, Mark Struberg wrote:

[ERROR] Failures:
[ERROR]   
EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 » 
Deployment
[INFO]
[ERROR] Tests run: 1567, Failures: 1, Errors: 0, Skipped: 5


Wohuuu, 1 to go!

LieGrue,
strub


Am 02.02.2018 um 21:54 schrieb Mark Struberg :

And the last status:

[ERROR] Failures:
[ERROR]   
EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 » 
Deployment
[ERROR]   
ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
 » Deployment
[ERROR]   
BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
 expected [true] but found [false]
[INFO]
[ERROR] Tests run: 1570, Failures: 3, Errors: 0, Skipped: 22

Reminder: this is for cdi-embedded only for now.
But once we are through that the rest is usually much easier.

LieGrue,
strub




Am 01.02.2018 um 23:18 schrieb Mark Struberg :

We are moving...

[ERROR] Failures:
[ERROR]   
EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 » 
Deployment
[ERROR]   
ObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]   
SessionBeanObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]   
SessionBeanStaticObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]   
ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
 » Deployment
[ERROR]   
BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
 expected [true] but found [false]
[INFO]
[ERROR] Tests run: 1573, Failures: 6, Errors: 0, Skipped: 22




On Thursday, 1 February 2018, 14:37:17 CET, Mark Struberg 
 wrote:


With a bit help from Romains we are now down to 10 failing tests:


ERROR] Failures:
[ERROR]   
EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 » 
Deployment
[ERROR]   
ObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]   
SessionBeanObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]   
SessionBeanStaticObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]   
ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
 » Deployment
[ERROR]   
BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
 expected [true] but found [false]
[ERROR]   
BuiltinMetadataSessionBeanTest>Arquillian.run:164->testDecoratorMetadata:91 » 
EJB
[ERROR]   
BuiltinMetadataSessionBeanTest>Arquillian.run:164->testInterceptorMetadata:78 » 
EJB
[ERROR]   RemoteBusinessDisposalMethodTest>Arquillian.arquillianBeforeClass:109 
» Runtime
[ERROR]   RemoteBusinessProducerMethodTest>Arquillian.arquillianBeforeClass:109 
» Runtime
[INFO]
[ERROR] Tests run: 1577, Failures: 10, Errors: 0, Skipped: 26

LieGrue,strub

On Thursday, 1 February 2018, 00:21:58 CET, Mark Struberg 
 wrote:

Fixed the new CDI-2.0  feature.

Now down to 16 ^^

[ERROR] Failures:
[ERROR]  
EnterpriseDefaultBeanDiscoveryModeTest>Arquillian.arquillianBeforeClass:109 » 
Deployment
[ERROR]  ResourceAdapterArchiveTest>Arquillian.run:164->testInjection:79 
expected object to not be null
[ERROR]  
ResourceAdapterArchiveTest>Arquillian.run:164->testResolution:86->AbstractTest.getUniqueBean:133->AbstractTest.resolveUniqueBean:169
 » UnsatisfiedResolution
[ERROR]  
EJBAsyncObserverMethodRemoteBusinessMethodTest>Arquillian.arquillianBeforeClass:109
 » Runtime
[ERROR]  
EJBObserverMethodRemoteBusinessMethodTest>Arquillian.arquillianBeforeClass:109 
» Runtime
[ERROR]  
ObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]  
EnterpriseSecurityContextPropagationInAsyncObserverTest>Arquillian.run:164->testSecurityContextNotPropagated:68
 expected [true] but found [false]
[ERROR]  
EnterpriseSecurityContextPropagationInAsyncObserverTest>Arquillian.run:164->testSecurityContextPropagation:59
 NullPointer
[ERROR]  
SessionBeanObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]  
SessionBeanStaticObserverMethodInvocationContextTest>Arquillian.run:164->testTransactionalObserverMethod:55
 » EJB
[ERROR]  
ContainerLifeCycleEventRuntimeInvocationTest>Arquillian.arquillianBeforeClass:109
 » Deployment
[ERROR]  
BuiltinMetadataEEBeanTest>Arquillian.run:164->interceptedBeanForEEComponentIsNullInInterceptor:61
 expected [true] but found [false]
[ERROR]  
BuiltinMetadataSessionBeanTest>Arquillian.run:164->testDecoratorMetadata:91 » 
EJB
[ERROR]  
BuiltinMetadataSessionBeanTest>Arquillian.run:164->testInterceptorMetadata:78 » 
EJB
[ERROR]  RemoteBusinessDisposalMethodTest>Arquillian.arquillianBeforeClass:109 
» Runtime
[ERROR]