[JBoss JIRA] (JBIDE-19332) batch editor seems slow even on small file
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19332?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-19332:
----------------------------------------
JBIDE-19270 is reproducible only on Linux. So it's something else. But anyway it looks like an upstream issue (Sapphire). Not sure we can do anything here.
> batch editor seems slow even on small file
> ------------------------------------------
>
> Key: JBIDE-19332
> URL: https://issues.jboss.org/browse/JBIDE-19332
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: batch
> Affects Versions: 4.3.0.Alpha1
> Reporter: Max Rydahl Andersen
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.0.Beta1
>
>
> I created a file and named it job.xml with the following content:
> {code}
> <job id="loadRealmAuctionFileJob" xmlns="http://xmlns.jcp.org/xml/ns/javaee" version="1.0">
> <step id="loadRealmAuctionFileStep">
> <batchlet ref="loadAuctionFilesBatchlet">
> <properties>
> <property name="region" value="#{partitionPlan['region']}"/>
> <property name="target" value="#{partitionPlan['target']}"/>
> </properties>
> </batchlet>
> <partition>
> <plan partitions="2">
> <properties partition="0">
> <property name="region" value="US"/>
> <property name="target" value="http://us.battle.net/api/wow/auction/data/"/>
> </properties>
> <properties partition="1">
> <property name="region" value="EU"/>
> <property name="target" value="http://eu.battle.net/api/wow/auction/data/"/>
> </properties>
> </plan>
> </partition>
> </step>
> </job>
> {code}
> Small file, shouldn't be slow but when I click and/or scroll up/down in the UI it seem to be doing "something" and it feels sluggish.
> Here is a recording of me scrolling up and down with keyboard. https://v.usetapes.com/PoUrCOUNty
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-18852) No warning about missing invocation handler for interface
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18852?page=com.atlassian.jira.plugi... ]
Alexey Kazakov resolved JBIDE-18852.
------------------------------------
Resolution: Duplicate Issue
> No warning about missing invocation handler for interface
> ---------------------------------------------------------
>
> Key: JBIDE-18852
> URL: https://issues.jboss.org/browse/JBIDE-18852
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi-extensions
> Affects Versions: 4.2.1.CR1
> Reporter: Rastislav Wagner
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.0.Alpha2
>
>
> 1. Create CDI 1.1 project and add deltaspike libs
> 2. create partial bean binding
> {code}
> @PartialBeanBinding
> @Target(ElementType.TYPE)
> @Retention(RetentionPolicy.RUNTIME)
> public @interface ExamplePartialBeanBinding {
> }
> {code}
> 3.create interface
> {code}
> import javax.enterprise.context.ApplicationScoped;
> @ApplicationScoped
> @ExamplePartialBeanBinding
> public interface Interf {
> String sayHello(String hello);
> }
> {code}
> FAIL: There's no warning saying that class should have an invocation handler
> 4. create abstract class
> {code}
> import javax.enterprise.context.ApplicationScoped;
> @ApplicationScoped
> @ExamplePartialBeanBinding
> public abstract class Abs {
> public abstract String sayHello(String hello);
> public String otherHey (String hello) {
> return "Other: " + hello;
> }
> }
> {code}
> ASSERT: warning about missing invocation handler is displayed for abstract class
> 5. Check interface class again -> no warning, edit file & save -> warning is displayed
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-18852) No warning about missing invocation handler for interface
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18852?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-18852:
-----------------------------------
Fix Version/s: 4.3.0.Alpha1
(was: 4.3.0.Alpha2)
> No warning about missing invocation handler for interface
> ---------------------------------------------------------
>
> Key: JBIDE-18852
> URL: https://issues.jboss.org/browse/JBIDE-18852
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi-extensions
> Affects Versions: 4.2.1.CR1
> Reporter: Rastislav Wagner
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.0.Alpha1
>
>
> 1. Create CDI 1.1 project and add deltaspike libs
> 2. create partial bean binding
> {code}
> @PartialBeanBinding
> @Target(ElementType.TYPE)
> @Retention(RetentionPolicy.RUNTIME)
> public @interface ExamplePartialBeanBinding {
> }
> {code}
> 3.create interface
> {code}
> import javax.enterprise.context.ApplicationScoped;
> @ApplicationScoped
> @ExamplePartialBeanBinding
> public interface Interf {
> String sayHello(String hello);
> }
> {code}
> FAIL: There's no warning saying that class should have an invocation handler
> 4. create abstract class
> {code}
> import javax.enterprise.context.ApplicationScoped;
> @ApplicationScoped
> @ExamplePartialBeanBinding
> public abstract class Abs {
> public abstract String sayHello(String hello);
> public String otherHey (String hello) {
> return "Other: " + hello;
> }
> }
> {code}
> ASSERT: warning about missing invocation handler is displayed for abstract class
> 5. Check interface class again -> no warning, edit file & save -> warning is displayed
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-18831) Validator in CDI 1.1 does not validate unused qualifier
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18831?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-18831:
-----------------------------------
Fix Version/s: 4.3.x
(was: 4.3.0.Alpha2)
> Validator in CDI 1.1 does not validate unused qualifier
> -------------------------------------------------------
>
> Key: JBIDE-18831
> URL: https://issues.jboss.org/browse/JBIDE-18831
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Affects Versions: 4.3.0.Alpha1
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.x
>
>
> 1. Create a CDI 1.1 project with bean discovery mode "annotated".
> 2. Create a new qualifier type and make an cdi error in it (e.g. member returning array not annotated @Nonbinding)
> Assert: validion error should appear.
> That fails now.
> 3. Create an annotated bean and add qualifier annotation to it.
> Call clean build or modify qualifier file. After that validation includes qualifier.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-18598) "Configure->Add JSF Capabilities ..." throws exception on OK/Apply button pressed for Dynamic Web Project
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18598?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-18598:
-----------------------------------
Fix Version/s: 4.3.x
(was: 4.3.0.Alpha2)
> "Configure->Add JSF Capabilities ..." throws exception on OK/Apply button pressed for Dynamic Web Project
> ---------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-18598
> URL: https://issues.jboss.org/browse/JBIDE-18598
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf, upstream
> Affects Versions: 4.2.0.CR2
> Reporter: Denis Golovin
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.x
>
>
> {code}java.util.ConcurrentModificationException
> at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:859)
> at java.util.ArrayList$Itr.remove(ArrayList.java:845)
> at org.eclipse.jst.jee.model.internal.JEE5ModelProvider.addManagedResource(JEE5ModelProvider.java:142)
> at org.eclipse.jst.jee.model.internal.JEE5ModelProvider.getModelResource(JEE5ModelProvider.java:186)
> at org.eclipse.jst.jee.model.internal.Web25ModelProvider.getModelObject(Web25ModelProvider.java:44)
> at org.eclipse.jst.jee.model.internal.JEE5ModelProvider.getModelObject(JEE5ModelProvider.java:231)
> at org.eclipse.jst.jee.model.internal.common.AbstractMergedModelProvider.getLastModificationTimeOfDDFile(AbstractMergedModelProvider.java:235)
> at org.eclipse.jst.jee.model.internal.common.AbstractMergedModelProvider.hasToReloadModel(AbstractMergedModelProvider.java:229)
> at org.eclipse.jst.jee.model.internal.common.AbstractMergedModelProvider.getMergedModel(AbstractMergedModelProvider.java:218)
> at org.eclipse.jst.jee.model.internal.common.AbstractMergedModelProvider.getModelObject(AbstractMergedModelProvider.java:139)
> at org.eclipse.jst.jee.ui.internal.navigator.JEE5ContentProvider.getCachedContentProvider(JEE5ContentProvider.java:98)
> at org.eclipse.jst.jee.ui.internal.navigator.Web25ContentProvider.getChildren(Web25ContentProvider.java:35)
> at org.eclipse.ui.internal.navigator.extensions.SafeDelegateTreeContentProvider.getChildren(SafeDelegateTreeContentProvider.java:96)
> at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider$1.run(NavigatorContentServiceContentProvider.java:152)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider.internalGetChildren(NavigatorContentServiceContentProvider.java:139)
> at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider.getChildren(NavigatorContentServiceContentProvider.java:119)
> at org.eclipse.jst.jee.ui.internal.navigator.JEE5ContentProvider$1.run(JEE5ContentProvider.java:142)
> at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
> at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136)
> at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3806)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3444)
> at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:175)
> at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:390)
> at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:527)
> at org.eclipse.wst.common.project.facet.ui.internal.FacetsPropertyPage.performOk(FacetsPropertyPage.java:257)
> at org.eclipse.wst.common.project.facet.ui.internal.FacetsPropertyPage.performApply(FacetsPropertyPage.java:313)
> at org.eclipse.jface.preference.PreferencePage$2.widgetSelected(PreferencePage.java:284)
> at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4486)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1388)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3831)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3441)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:832)
> at org.eclipse.jface.window.Window.open(Window.java:808)
> at org.jboss.tools.jsf.ui.internal.handlers.AddJSFNatureHandler.addJSFNature(AddJSFNatureHandler.java:137)
> at org.jboss.tools.jsf.ui.internal.handlers.AddJSFNatureHandler.execute(AddJSFNatureHandler.java:73)
> at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:294)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
> at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:247)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:229)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
> at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:149)
> at org.eclipse.core.commands.Command.executeWithChecks(Command.java:499)
> at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:210)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.executeItem(HandledContributionItem.java:825)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.handleWidgetSelection(HandledContributionItem.java:701)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$6(HandledContributionItem.java:685)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$4.handleEvent(HandledContributionItem.java:613)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4486)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1388)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3831)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3441)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:135)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:236)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1438){code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-19338) Ionic palette items disappears when "Show only palette groups for which libraries are defined on the page" filter is applied
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19338?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-19338:
----------------------------------------
I can't reproduce it on Ubuntu. We need to test it in JBDS Alpha1 and Windows 7.
> Ionic palette items disappears when "Show only palette groups for which libraries are defined on the page" filter is applied
> ------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-19338
> URL: https://issues.jboss.org/browse/JBIDE-19338
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html source editing
> Affects Versions: 4.3.0.Alpha1
> Environment: MS Windows 7 JBDS 9.0.0.Alpha1-v20150216-1042-B11
> Reporter: Vlado Pakan
> Assignee: Daniel Azarov
> Fix For: 4.3.0.Alpha2
>
>
> 1. Open empty html file in Visual Page Editor and make sure button "Show only palette groups for which libraries are defined on the page" is not selected
> ASSERT: Following palette groups visible on HTML 5 Palette:
> 1. Ionic 1.0
> 2. jQuery Mobile 1.4
> 3. HTML 5.0
> 2. Check the button "Show only palette groups for which libraries are defined on the page"
> ASSERT: No Palette groups are visible in HTML 5 Palette
> 3. Open following html file in Visual Page Editor and make sure button "Show only palette groups for which libraries are defined on the page" is not selected
> {code:html}
> <!DOCTYPE html>
> <html>
> <head>
> <meta name="viewport" content="width=device-width, initial-scale=1">
> <link rel="stylesheet" href="http://code.ionicframework.com/1.0.0-beta.13/css/ionic.css" />
> <script src="http://code.ionicframework.com/1.0.0-beta.13/js/ionic.bundle.js"></script>
> <meta charset="UTF-8">
> <title>Insert title here</title>
> </head>
> <body>
> </body>
> </html>
> {code}
> ASSERT: Following palette groups visible on HTML 5 Palette:
> 1. Ionic 1.0
> 2. jQuery Mobile 1.4
> 3. HTML 5.0
> 4. Check the button "Show only palette groups for which libraries are defined on the page"
> ERROR: Ionic palette is not displayed
> 5. Uncheck the button "Show only palette groups for which libraries are defined on the page"
> ERROR: Ionic palette is not displayed
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-19338) Ionic palette items disappears when "Show only palette groups for which libraries are defined on the page" filter is applied
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19338?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-19338:
----------------------------------------
[~dazarov] can you reproduce it?
> Ionic palette items disappears when "Show only palette groups for which libraries are defined on the page" filter is applied
> ------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-19338
> URL: https://issues.jboss.org/browse/JBIDE-19338
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html source editing
> Affects Versions: 4.3.0.Alpha1
> Environment: MS Windows 7 JBDS 9.0.0.Alpha1-v20150216-1042-B11
> Reporter: Vlado Pakan
> Assignee: Daniel Azarov
> Fix For: 4.3.0.Alpha2
>
>
> 1. Open empty html file in Visual Page Editor and make sure button "Show only palette groups for which libraries are defined on the page" is not selected
> ASSERT: Following palette groups visible on HTML 5 Palette:
> 1. Ionic 1.0
> 2. jQuery Mobile 1.4
> 3. HTML 5.0
> 2. Check the button "Show only palette groups for which libraries are defined on the page"
> ASSERT: No Palette groups are visible in HTML 5 Palette
> 3. Open following html file in Visual Page Editor and make sure button "Show only palette groups for which libraries are defined on the page" is not selected
> {code:html}
> <!DOCTYPE html>
> <html>
> <head>
> <meta name="viewport" content="width=device-width, initial-scale=1">
> <link rel="stylesheet" href="http://code.ionicframework.com/1.0.0-beta.13/css/ionic.css" />
> <script src="http://code.ionicframework.com/1.0.0-beta.13/js/ionic.bundle.js"></script>
> <meta charset="UTF-8">
> <title>Insert title here</title>
> </head>
> <body>
> </body>
> </html>
> {code}
> ASSERT: Following palette groups visible on HTML 5 Palette:
> 1. Ionic 1.0
> 2. jQuery Mobile 1.4
> 3. HTML 5.0
> 4. Check the button "Show only palette groups for which libraries are defined on the page"
> ERROR: Ionic palette is not displayed
> 5. Uncheck the button "Show only palette groups for which libraries are defined on the page"
> ERROR: Ionic palette is not displayed
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-17591) org.jboss.tools.common.el.core.test fails on Max OS X Mavericks
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17591?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-17591:
-----------------------------------
Fix Version/s: 4.3.x
(was: 4.3.0.Alpha2)
> org.jboss.tools.common.el.core.test fails on Max OS X Mavericks
> ---------------------------------------------------------------
>
> Key: JBIDE-17591
> URL: https://issues.jboss.org/browse/JBIDE-17591
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: common/jst/core
> Affects Versions: 4.2.0.Beta2
> Environment: Mac OS X Mavericks
> Reporter: Denis Golovin
> Assignee: Daniel Azarov
> Fix For: 4.3.x
>
> Attachments: org.jboss.tools.common.el.core.test.CommonELAllTests2.txt
>
>
> {code}junit.framework.AssertionFailedError
> at junit.framework.Assert.fail(Assert.java:55)
> at junit.framework.Assert.assertTrue(Assert.java:22)
> at junit.framework.Assert.assertNotNull(Assert.java:256)
> at junit.framework.Assert.assertNotNull(Assert.java:248)
> at junit.framework.TestCase.assertNotNull(TestCase.java:417)
> at org.jboss.tools.common.el.core.test.resolver.TypeInfoCollectorTest.testTypeResolution(TypeInfoCollectorTest.java:68)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at junit.framework.TestCase.runTest(TestCase.java:176)
> at junit.framework.TestCase.runBare(TestCase.java:141)
> at junit.framework.TestResult$1.protect(TestResult.java:122)
> at junit.framework.TestResult.runProtected(TestResult.java:142)
> at junit.framework.TestResult.run(TestResult.java:125)
> at junit.framework.TestCase.run(TestCase.java:129)
> at junit.framework.TestSuite.runTest(TestSuite.java:255)
> at junit.framework.TestSuite.run(TestSuite.java:250)
> at junit.framework.TestSuite.runTest(TestSuite.java:255)
> at junit.framework.TestSuite.run(TestSuite.java:250)
> at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:84)
> at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:53)
> at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:123)
> at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:104)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164)
> at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110)
> at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175)
> at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:123)
> at org.eclipse.tycho.surefire.osgibooter.OsgiSurefireBooter.run(OsgiSurefireBooter.java:86)
> at org.eclipse.tycho.surefire.osgibooter.HeadlessTestApplication.run(HeadlessTestApplication.java:21)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:587)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:198)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:233)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1438)
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years
[JBoss JIRA] (JBIDE-18424) org.jboss.tools.cdi.core.test failures on Mac OS
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18424?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-18424:
-----------------------------------
Fix Version/s: 4.3.x
(was: 4.3.0.Alpha2)
> org.jboss.tools.cdi.core.test failures on Mac OS
> ------------------------------------------------
>
> Key: JBIDE-18424
> URL: https://issues.jboss.org/browse/JBIDE-18424
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Fix For: 4.3.x
>
> Attachments: bundles.log, bundles.txt, org.jboss.tools.cdi.core.test.CDICoreAllTests.txt
>
>
> {code}
> Tests run: 1286, Failures: 109, Errors: 12, Skipped: 0, Time elapsed: 571.541 sec <<< FAILURE!
> Results :
> Failed tests: testType1(org.jboss.tools.cdi.core.test.TypeTest): expected:<11> but was:<10>
> testType2(org.jboss.tools.cdi.core.test.TypeTest): expected:<11> but was:<10>
> testType(org.jboss.tools.cdi.core.test.TypeTest): expected:<11> but was:<10>
> testDependentProjects(org.jboss.tools.cdi.core.test.tck.validation.DependentProjectValidationTest): Marker matches the 'Injection point declares a primitive type boolean that cannot be proxied by the container resolves to a bean TestBean3.foo\(\) with a normal scope \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /CDITest3/src/cdi/test3/TestBean3.java : []
> testAbstractApiType(org.jboss.tools.cdi.core.test.tck.BeanDefinitionTest): Wrong number of types. expected:<4> but was:<3>
> testPrivitiveTypes(org.jboss.tools.cdi.core.test.tck.BeanDefinitionTest): Can't find java.lang.Integer type.
> testBeanTypes(org.jboss.tools.cdi.core.test.tck.BeanDefinitionTest): Wrong number of types. expected:<6> but was:<5>
> testParameterInjectionsWithQualifierWithMemberValues(org.jboss.tools.cdi.core.test.tck.InjectionPointTest)
> testDefaultValuesInQualifierProperties(org.jboss.tools.cdi.core.test.tck.InjectionPointTest)
> testGenericBeanTypesOnManagedBean(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): /tck/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/Emu.java bean [ org.jboss.jsr299.tck.tests.lookup.typesafe.resolution.FlightlessBird;] should have java.lang.Object type.
> testBeanTypesOnProducerMethod(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): Wrong number of types. expected:<2> but was:<1>
> testBeanTypesOnProducerField(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): Wrong number of types. expected:<2> but was:<1>
> testResolveByTypeWithPrimitives(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): Can't find java.lang.Double type.
> testInjectionResolutionOfRestrictedProducerMethod(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): Wrong number of the beans expected:<1> but was:<0>
> testInjectionResolutionOfRestrictedProducerField(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): Wrong number of the beans expected:<1> but was:<0>
> testBeanTypesOnManagedBean(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): Wrong number of types. expected:<2> but was:<1>
> testGenericBeanTypesOnProducerMethod(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): /tck/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java bean [ org.jboss.jsr299.tck.tests.lookup.typesafe.resolution.Cat;] should have java.lang.Object type.
> testGenericBeanTypesOnProducerField(org.jboss.tools.cdi.core.test.tck.lookup.ResolutionByTypeTest): /tck/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java bean [ org.jboss.jsr299.tck.tests.lookup.typesafe.resolution.Cat;] should have java.lang.Object type.
> testBeanTypesOnSessionBean(org.jboss.tools.cdi.core.test.tck.EnterpriseResolutionByTypeTest): Wrong number of types. expected:<2> but was:<1>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeWithWildcards2(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfSophisticatedCases(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeTypeVariable(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of types. expected:<2> but was:<1>
> testAssignabilityOfRawTypeWithTypeVariablesToParameterizedType(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeWithActualTypes(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithActualTypesToParameterizedTypeWithWildcards(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeWithWildcards(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityToRawType(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<4> but was:<2>
> testAssignabilityOfParameterizedTypeWithActualTypesToParameterizedTypeWithActualTypes(org.jboss.tools.cdi.core.test.tck.AssignabilityOfRawAndParameterizedTypesTest): Wrong number of the beans expected:<2> but was:<0>
> testNewHashSetParameter(org.jboss.tools.cdi.core.test.tck.InjectionPointWithNewQualifierTest): Wrong number of the beans expected:<1> but was:<0>
> testNewArrayListField(org.jboss.tools.cdi.core.test.tck.InjectionPointWithNewQualifierTest): Wrong number of the beans expected:<1> but was:<0>
> testQualifierWithArithmeticExpressionsResolved(org.jboss.tools.cdi.core.test.tck.QualifierWithMembersTest): Wrong number of the beans expected:<1> but was:<0>
> testBuiltInPrincipalBean(org.jboss.tools.cdi.core.test.tck.BuiltInBeanInjectionTest)
> testLegalTypesInTyped(org.jboss.tools.cdi.core.test.tck.validation.DefenitionErrorsValidationTest): Marker matches the 'Bean specifies a type restriction which does not correspond to a type in the unrestricted set of bean types of a bean \[JSR-299 ?2.2.2\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java : []
> testDelegateSpecifiesDifferentTypeParameterInInterfcaeInMethod(org.jboss.tools.cdi.core.test.tck.validation.DefenitionErrorsValidationTest): Marker matches the 'The delegate type must implement or extend the decorated type IClazz\<java.lang.String\> \[JSR-299 ?8.1.3\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/decorators/delegates/TimestampWithMethodBroken.java : [
> testInjectionPointWhichResolvesToNormalScopedFinalBean(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Injection point whose declared type \(String is a final class\) cannot be proxied by the container resolves to a bean Opportunity.t with a normal scope \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/lookup/clientProxy/unproxyable/finalClass/Opportunity.java : []
> testUnsatisfiedDependencyWithNamed(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'No bean is eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/lookup/duplicateName/TestNamed.java : [
> testNormalScopedFinalBean(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Type String \(final class\) is not a legal type of normal scoped bean Opportunity.t because it cannot be proxied by the container \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/lookup/clientProxy/unproxyable/finalClass/Opportunity.java : []
> testNormalScopedBeanWithUnproxyableType(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Primitive type int is not a legal type of normal scoped bean NumberProducer.produce\(\) because it cannot be proxied by the container \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/unproxyable/NumberProducer.java : []
> testInjectionPointWithUnproxyableTypeWhichResolvesToNormalScopedBean(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Injection point declares a primitive type int that cannot be proxied by the container resolves to a bean NumberProducer.produce\(\) with a normal scope \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/unproxyable/Number_Broken.java : []
> testAmbiguousDependencyWithNamed(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/lookup/duplicateName/TestNamed.java : [
> testUnsatisfiedDependencyForInstance(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'No bean is eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/resolution/InjectionInstance.java : []
> testAmbiguousDependencyForInstance(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/resolution/InjectionInstance.java : []
> testPrimitiveInjectionPointResolvedToNonPrimitiveProducerMethod(org.jboss.tools.cdi.core.test.tck.validation.DeploymentProblemsValidationTests): Marker matches the 'Injection point of primitive type resolves to the bean that may have a null value \[JSR-299 ?5.2.4\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/inject/GameBroken.java : []
> testFieldWithSuppressInParentElement(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans \(.*\) have the same EL name and the name is not resolvable \[JSR-299 ?5.3.1\]' pattern was found
> testMultipleSuppressFromElementAndItsParent(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testMultipleSuppress(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testClass(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans \(.*\) have the same EL name and the name is not resolvable \[JSR-299 ?5.3.1\]' pattern was found
> testField(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Producer method or field cannot be annotated @Inject \[JSR-299 ?3.3.2, ?3.4.2\]' pattern was found
> testParam(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Wrong number of found marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern. Expected the pattern at the following lines <31> but was at <27, 31, 45, 35, 49>. expected:<1> but was:<5>
> testWOSuppress(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Wrong number of found marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern. Expected the pattern at the following lines <20, 24, 28, 31, 39, 42, 45> but was at <31, 42, 20, 24, 28, 39>. expected:<7> but was:<6>
> testEL(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the '"abc" cannot be resolved' pattern was found
> testGroupName(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testErrorSuppress(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testWarningsOnClassNameRegion(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Managed bean Rabbit which declares a passivating scope SessionScoped must be passivation capable \[JSR-299 ?6.6.4\]' pattern was found
> testWarningsOnTyped(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Bean specifies a type restriction which does not correspond to a type in the unrestricted set of bean types of a bean \[JSR-299 ?2.2.2\]' pattern wasn't found. Here is the list of found markers in /tck/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/suppresswarnings/AnotherRabbit.java : [
> testNameAll(org.jboss.tools.cdi.core.test.tck.validation.SuppressWarningsTests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testAmbiguousDependencyWithNamed(org.jboss.tools.cdi.core.test.tck.validation.AYTDeploymentProblemsValidationTests): expected:<3> but was:<0>
> testAbstractApiType(org.jboss.tools.cdi.core.test.tck11.BeanDefinitionCDI11Test): Wrong number of types. expected:<4> but was:<3>
> testPrivitiveTypes(org.jboss.tools.cdi.core.test.tck11.BeanDefinitionCDI11Test): Can't find java.lang.Integer type.
> testBeanTypes(org.jboss.tools.cdi.core.test.tck11.BeanDefinitionCDI11Test): Wrong number of types. expected:<6> but was:<5>
> testParameterInjectionsWithQualifierWithMemberValues(org.jboss.tools.cdi.core.test.tck11.InjectionPointCDI11Test)
> testDefaultValuesInQualifierProperties(org.jboss.tools.cdi.core.test.tck11.InjectionPointCDI11Test)
> testGenericBeanTypesOnManagedBean(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/Emu.java bean [ org.jboss.jsr299.tck.tests.lookup.typesafe.resolution.FlightlessBird;] should have java.lang.Object type.
> testBeanTypesOnProducerMethod(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): Wrong number of types. expected:<2> but was:<1>
> testBeanTypesOnProducerField(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): Wrong number of types. expected:<2> but was:<1>
> testResolveByTypeWithPrimitives(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): Can't find java.lang.Double type.
> testInjectionResolutionOfRestrictedProducerMethod(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testInjectionResolutionOfRestrictedProducerField(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testBeanTypesOnManagedBean(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): Wrong number of types. expected:<2> but was:<1>
> testGenericBeanTypesOnProducerMethod(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java bean [ org.jboss.jsr299.tck.tests.lookup.typesafe.resolution.Cat;] should have java.lang.Object type.
> testGenericBeanTypesOnProducerField(org.jboss.tools.cdi.core.test.tck11.lookup.ResolutionByTypeCDI11Test): /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java bean [ org.jboss.jsr299.tck.tests.lookup.typesafe.resolution.Cat;] should have java.lang.Object type.
> testBeanTypesOnSessionBean(org.jboss.tools.cdi.core.test.tck11.EnterpriseResolutionByTypeCDI11Test): Wrong number of types. expected:<2> but was:<1>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeWithWildcards2(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfSophisticatedCases(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeTypeVariable(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of types. expected:<2> but was:<1>
> testAssignabilityOfRawTypeWithTypeVariablesToParameterizedType(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeWithActualTypes(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithActualTypesToParameterizedTypeWithWildcards(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityOfParameterizedTypeWithTypeVariablesToParameterizedTypeWithWildcards(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testAssignabilityToRawType(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<4> but was:<2>
> testAssignabilityOfParameterizedTypeWithActualTypesToParameterizedTypeWithActualTypes(org.jboss.tools.cdi.core.test.tck11.AssignabilityOfRawAndParameterizedTypesCDI11Test): Wrong number of the beans expected:<2> but was:<0>
> testNewHashSetParameter(org.jboss.tools.cdi.core.test.tck11.InjectionPointWithNewQualifierCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testNewArrayListField(org.jboss.tools.cdi.core.test.tck11.InjectionPointWithNewQualifierCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testQualifierWithArithmeticExpressionsResolved(org.jboss.tools.cdi.core.test.tck11.QualifierWithMembersCDI11Test): Wrong number of the beans expected:<1> but was:<0>
> testBuiltInPrincipalBean(org.jboss.tools.cdi.core.test.tck11.BuiltInBeanInjectionCDI11Test)
> testLegalTypesInTyped(org.jboss.tools.cdi.core.test.tck11.validation.DefenitionErrorsValidationCDI11Test): Marker matches the 'Bean specifies a type restriction which does not correspond to a type in the unrestricted set of bean types of a bean \[JSR-299 ?2.2.2\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java : []
> testDelegateSpecifiesDifferentTypeParameterInInterfcaeInMethod(org.jboss.tools.cdi.core.test.tck11.validation.DefenitionErrorsValidationCDI11Test): Marker matches the 'The delegate type must implement or extend the decorated type IClazz\<java.lang.String\> \[JSR-299 ?8.1.3\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/decorators/delegates/TimestampWithMethodBroken.java : [
> testInjectionPointWhichResolvesToNormalScopedFinalBean(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'Injection point whose declared type \(String is a final class\) cannot be proxied by the container resolves to a bean Opportunity.t with a normal scope \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/lookup/clientProxy/unproxyable/finalClass/Opportunity.java : []
> testUnsatisfiedDependencyWithNamed(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'No bean is eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/lookup/duplicateName/TestNamed.java : [
> testNormalScopedFinalBean(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'Type String \(final class\) is not a legal type of normal scoped bean Opportunity.t because it cannot be proxied by the container \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/lookup/clientProxy/unproxyable/finalClass/Opportunity.java : []
> testNormalScopedBeanWithUnproxyableType(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'Primitive type int is not a legal type of normal scoped bean NumberProducer.produce\(\) because it cannot be proxied by the container \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/unproxyable/NumberProducer.java : []
> testInjectionPointWithUnproxyableTypeWhichResolvesToNormalScopedBean(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'Injection point declares a primitive type int that cannot be proxied by the container resolves to a bean NumberProducer.produce\(\) with a normal scope \[JSR-299 ?5.4.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/unproxyable/Number_Broken.java : []
> testAmbiguousDependencyWithNamed(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/lookup/duplicateName/TestNamed.java : [
> testUnsatisfiedDependencyForInstance(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'No bean is eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/resolution/InjectionInstance.java : []
> testAmbiguousDependencyForInstance(org.jboss.tools.cdi.core.test.tck11.validation.DeploymentProblemsValidationCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/resolution/InjectionInstance.java : []
> testFieldWithSuppressInParentElement(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans \(.*\) have the same EL name and the name is not resolvable \[JSR-299 ?5.3.1\]' pattern was found
> testMultipleSuppressFromElementAndItsParent(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testMultipleSuppress(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testClass(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans \(.*\) have the same EL name and the name is not resolvable \[JSR-299 ?5.3.1\]' pattern was found
> testField(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Producer method or field cannot be annotated @Inject \[JSR-299 ?3.3.2, ?3.4.2\]' pattern was found
> testParam(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Wrong number of found marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern. Expected the pattern at the following lines <31> but was at <49, 27, 31, 45, 35>. expected:<1> but was:<5>
> testWOSuppress(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Wrong number of found marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern. Expected the pattern at the following lines <20, 24, 28, 31, 39, 42, 45> but was at <31, 42, 20, 24, 28, 39>. expected:<7> but was:<6>
> testEL(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the '"abc" cannot be resolved' pattern was found
> testGroupName(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testErrorSuppress(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testWarningsOnClassNameRegion(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Managed bean Rabbit which declares a passivating scope SessionScoped must be passivation capable \[JSR-299 ?6.6.4\]' pattern was found
> testWarningsOnTyped(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Bean specifies a type restriction which does not correspond to a type in the unrestricted set of bean types of a bean \[JSR-299 ?2.2.2\]' pattern wasn't found. Here is the list of found markers in /tck1.1/JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/suppresswarnings/AnotherRabbit.java : [
> testNameAll(org.jboss.tools.cdi.core.test.tck11.validation.SuppressWarningsCDI11Tests): Marker matches the 'Multiple beans are eligible for injection to the injection point \[JSR-299 ?5.2.1\]' pattern was found
> testAmbiguousDependencyWithNamed(org.jboss.tools.cdi.core.test.tck11.validation.AYTDeploymentProblemsValidationCDI11Tests): expected:<3> but was:<0>
> Tests in error:
> testObserverMethodResolution(org.jboss.tools.cdi.core.test.tck.ObserverMethodResolutionTest)
> testObserverMethodResolution0(org.jboss.tools.cdi.core.test.tck.ObserverMethodResolutionTest)
> testObserverMethodResolution2(org.jboss.tools.cdi.core.test.tck.ObserverMethodResolutionTest)
> testObserverMethodResolution3(org.jboss.tools.cdi.core.test.tck.ObserverMethodResolutionTest)
> testBeansXMLInBin(org.jboss.tools.cdi.core.test.tck.validation.BeansXmlValidationTest): Resource '/tck/WebContent/WEB-INF/classes/META-INF/beans.xml' does not exist.
> testBeansXMLInBin(org.jboss.tools.cdi.core.test.tck.validation.AYTBeansXmlValidationTest): Resource '/tck/WebContent/WEB-INF/classes/META-INF/beans.xml' does not exist.
> testObserverMethodResolution(org.jboss.tools.cdi.core.test.tck11.ObserverMethodResolutionCDI11Test)
> testObserverMethodResolution0(org.jboss.tools.cdi.core.test.tck11.ObserverMethodResolutionCDI11Test)
> testObserverMethodResolution2(org.jboss.tools.cdi.core.test.tck11.ObserverMethodResolutionCDI11Test)
> testObserverMethodResolution3(org.jboss.tools.cdi.core.test.tck11.ObserverMethodResolutionCDI11Test)
> testBeansXMLInBin(org.jboss.tools.cdi.core.test.tck11.validation.BeansXmlValidationCDI11Test): Resource '/tck1.1/WebContent/WEB-INF/classes/META-INF/beans.xml' does not exist.
> testBeansXMLInBin(org.jboss.tools.cdi.core.test.tck11.validation.AYTBeansXmlValidationCDI11Test): Resource '/tck1.1/WebContent/WEB-INF/classes/META-INF/beans.xml' does not exist.
> Tests run: 1286, Failures: 109, Errors: 12, Skipped: 0
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years