You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2023/01/26 19:30:54 UTC

[openwebbeans] branch main updated (1768aee36 -> 43cbd4209)

This is an automated email from the ASF dual-hosted git repository.

struberg pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openwebbeans.git


    from 1768aee36 OWB-1417 createInjectionTarget IllegalArgumentException on failure
     new 17fb76f8e OWB-1417 disable test which isn't covered by the spec
     new 43cbd4209 OWB-1417 misleading test

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 webbeans-tck/standalone-suite.xml | 19 +++++++++++++++++++
 webbeans-tck/testng-dev.xml       |  4 ++--
 2 files changed, 21 insertions(+), 2 deletions(-)


[openwebbeans] 01/02: OWB-1417 disable test which isn't covered by the spec

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openwebbeans.git

commit 17fb76f8e151b935fd563286c2183bf3eb510800
Author: Mark Struberg <st...@apache.org>
AuthorDate: Thu Jan 26 19:48:28 2023 +0100

    OWB-1417 disable test which isn't covered by the spec
---
 webbeans-tck/standalone-suite.xml | 10 ++++++++++
 webbeans-tck/testng-dev.xml       |  4 ++--
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/webbeans-tck/standalone-suite.xml b/webbeans-tck/standalone-suite.xml
index 28b59f779..a52d7ce40 100644
--- a/webbeans-tck/standalone-suite.xml
+++ b/webbeans-tck/standalone-suite.xml
@@ -88,6 +88,16 @@
                 </methods>
             </class>
 
+            <!--
+                The test asserts something which is not defined in the spec.
+            -->
+            <class name="org.jboss.cdi.tck.tests.full.extensions.beanManager.unmanaged.UnmanagedInstanceTest" >
+                <methods>
+                    <exclude name="testNonContextualInstanceIsIntercepted"/>
+                </methods>
+            </class>
+
+
 
             <!-- Tests broken in the CDI-2.0 TCK: -->
 
diff --git a/webbeans-tck/testng-dev.xml b/webbeans-tck/testng-dev.xml
index 260787f45..7673c0da3 100644
--- a/webbeans-tck/testng-dev.xml
+++ b/webbeans-tck/testng-dev.xml
@@ -18,9 +18,9 @@
 <suite name="JSR-346-TCK" verbose="2" configfailurepolicy="continue">
   <test name="JSR-346 TCK">
     <classes>
-          <class name="org.jboss.cdi.tck.tests.full.extensions.beanManager.BeanManagerTest" >
+          <class name="org.jboss.cdi.tck.tests.full.extensions.beanManager.unmanaged.UnmanagedInstanceTest" >
             <methods>
-              <include name="testObtainingInjectionTargetWithDefinitionError"/>
+              <include name="testNonContextualInstanceIsIntercepted"/>
             </methods>
           </class>
 


[openwebbeans] 02/02: OWB-1417 misleading test

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openwebbeans.git

commit 43cbd42096678cf8f897fbb1c0c93a995c971dad
Author: Mark Struberg <st...@apache.org>
AuthorDate: Thu Jan 26 20:30:08 2023 +0100

    OWB-1417 misleading test
---
 webbeans-tck/standalone-suite.xml | 9 +++++++++
 webbeans-tck/testng-dev.xml       | 4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/webbeans-tck/standalone-suite.xml b/webbeans-tck/standalone-suite.xml
index a52d7ce40..515d22b8f 100644
--- a/webbeans-tck/standalone-suite.xml
+++ b/webbeans-tck/standalone-suite.xml
@@ -97,6 +97,15 @@
                 </methods>
             </class>
 
+            <!--
+                The spec says nowhere that they must be invoked in exactly that order.
+            -->
+            <class name="org.jboss.cdi.tck.tests.full.extensions.beanDiscovery.event.ordering.LifecycleEventOrderingTest" >
+                <methods>
+                    <exclude name=".*"/>
+                </methods>
+            </class>
+
 
 
             <!-- Tests broken in the CDI-2.0 TCK: -->
diff --git a/webbeans-tck/testng-dev.xml b/webbeans-tck/testng-dev.xml
index 7673c0da3..e2e94ddf8 100644
--- a/webbeans-tck/testng-dev.xml
+++ b/webbeans-tck/testng-dev.xml
@@ -18,9 +18,9 @@
 <suite name="JSR-346-TCK" verbose="2" configfailurepolicy="continue">
   <test name="JSR-346 TCK">
     <classes>
-          <class name="org.jboss.cdi.tck.tests.full.extensions.beanManager.unmanaged.UnmanagedInstanceTest" >
+          <class name="org.jboss.cdi.tck.tests.full.extensions.beanDiscovery.event.ordering.LifecycleEventOrderingTest" >
             <methods>
-              <include name="testNonContextualInstanceIsIntercepted"/>
+              <include name="testEventsWereFiredInCorrectOrderForManagedBean"/>
             </methods>
           </class>