[JBoss JIRA] (JBIDE-13380) org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790 test failure against Eclipse 4.3.0.M4
by Alexey Kazakov (JIRA)
Alexey Kazakov created JBIDE-13380:
--------------------------------------
Summary: org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790 test failure against Eclipse 4.3.0.M4
Key: JBIDE-13380
URL: https://issues.jboss.org/browse/JBIDE-13380
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Affects Versions: 4.1.0.Alpha1
Reporter: Alexey Kazakov
Assignee: Yahor Radtsevich
Fix For: 4.1.0.Alpha1
{code}
-------------------------------------------------------------------------------
Test set: org.jboss.tools.jst.css.test.CSSAllTests
-------------------------------------------------------------------------------
Tests run: 16, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 31.333 sec <<< FAILURE!
testInputFractionalValue(org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790) Time elapsed: 3.012 sec <<< FAILURE!
junit.framework.ComparisonFailure: expected:<1[].em> but was:<1[em1.em1].em>
at junit.framework.Assert.assertEquals(Assert.java:85)
at junit.framework.Assert.assertEquals(Assert.java:91)
at org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790.testInputFractionalValue(InputFractionalValueTest_JBIDE4790.java:100)
...
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (JBIDE-13380) org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790 test failure against Eclipse 4.3.0.M4
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13380?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-13380:
----------------------------------------
Not sure it's related to Kepler but I don't reproduce this failure when I'm running tests against Juno.
> org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790 test failure against Eclipse 4.3.0.M4
> -----------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13380
> URL: https://issues.jboss.org/browse/JBIDE-13380
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml source editing
> Affects Versions: 4.1.0.Alpha1
> Reporter: Alexey Kazakov
> Assignee: Yahor Radtsevich
> Fix For: 4.1.0.Alpha1
>
>
> {code}
> -------------------------------------------------------------------------------
> Test set: org.jboss.tools.jst.css.test.CSSAllTests
> -------------------------------------------------------------------------------
> Tests run: 16, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 31.333 sec <<< FAILURE!
> testInputFractionalValue(org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790) Time elapsed: 3.012 sec <<< FAILURE!
> junit.framework.ComparisonFailure: expected:<1[].em> but was:<1[em1.em1].em>
> at junit.framework.Assert.assertEquals(Assert.java:85)
> at junit.framework.Assert.assertEquals(Assert.java:91)
> at org.jboss.tools.jst.css.test.jbide.InputFractionalValueTest_JBIDE4790.testInputFractionalValue(InputFractionalValueTest_JBIDE4790.java:100)
> ...
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (JBDS-2446) ESB Editor remove certains properties such as "http-client-property"
by William Siqueira (JIRA)
[ https://issues.jboss.org/browse/JBDS-2446?page=com.atlassian.jira.plugin.... ]
William Siqueira updated JBDS-2446:
-----------------------------------
Description:
When editing an ESB file (jboss-esb.xml), we have two ways which are using the native XML editor or the visual way.
When we want to use the following property in the editor:
<?xml version="1.0"?>
<jbossesb parameterReloadSecs="5"
xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml... http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk/product/etc/schem...">
<services>
<service category="" description="" name="some-service">
<actions>
<action class="org.jboss.soa.esb.actions.soap.SOAPClient" name="client-action">
<property name="endpointUrl" value="http://host/endpoint">
<http-client-property name="file" value="httpclient.properties" />
</property>
</action>
</actions>
</service>
</services>
</jbossesb>
Notice the "http-client-property" in the action property element. The problem is that when using visual editor of this file and adding something new or editing existing thing, the code related to this property is deleted. In the example above, I have the following result, showing what the editor removed:
<?xml version="1.0"?>
<jbossesb parameterReloadSecs="5"
xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml... http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk/product/etc/schem...">
<services>
<service category="" description="" name="some-service-edited">
<actions>
<action class="org.jboss.soa.esb.actions.soap.SOAPClient" name="client-action">
<property name="wsdl" value="{INSERT WSDL HERE}"/>
</action>
</actions>
</service>
</services>
</jbossesb>
was:
When editing an ESB file (jboss-esb.xml), we have two ways which are using the native XML editor or the visual way.
When we want to use the following property in the editor:
<?xml version="1.0"?>
<jbossesb parameterReloadSecs="5"
xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml... http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk/product/etc/schem...">
<services>
<service name="some-service" category="" description="">
<actions>
<action class="org.jboss.soa.esb.actions.soap.SOAPClient"
name="client-action">
<property name="wsdl" value="{INSERT WSDL HERE}">
<http-client-property name="file"
value="httpclient.properties" />
</property>
</action>
</actions>
</service>
</services>
</jbossesb>
Notice the "http-client-property" in the action property element. The problem is that when using visual editor of this file and adding something new or editing existing thing, the code related to this property is deleted. In the example above, I have the following result, showing what the editor removed:
<?xml version="1.0"?>
<jbossesb parameterReloadSecs="5"
xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml... http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk/product/etc/schem...">
<services>
<service category="" description="" name="some-service-edited">
<actions>
<action class="org.jboss.soa.esb.actions.soap.SOAPClient" name="client-action">
<property name="wsdl" value="{INSERT WSDL HERE}"/>
</action>
</actions>
</service>
</services>
</jbossesb>
> ESB Editor remove certains properties such as "http-client-property"
> ---------------------------------------------------------------------
>
> Key: JBDS-2446
> URL: https://issues.jboss.org/browse/JBDS-2446
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: SOA Tooling / Platform
> Affects Versions: 5.0.0.GA-SOA
> Environment: RHEL 6.1
> java version "1.6.0_25"
> SOA-P 5.0
> Reporter: William Siqueira
> Assignee: Douglas Palmer
>
> When editing an ESB file (jboss-esb.xml), we have two ways which are using the native XML editor or the visual way.
> When we want to use the following property in the editor:
> <?xml version="1.0"?>
> <jbossesb parameterReloadSecs="5"
> xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml... http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk/product/etc/schem...">
> <services>
> <service category="" description="" name="some-service">
> <actions>
> <action class="org.jboss.soa.esb.actions.soap.SOAPClient" name="client-action">
> <property name="endpointUrl" value="http://host/endpoint">
> <http-client-property name="file" value="httpclient.properties" />
> </property>
> </action>
> </actions>
> </service>
> </services>
> </jbossesb>
> Notice the "http-client-property" in the action property element. The problem is that when using visual editor of this file and adding something new or editing existing thing, the code related to this property is deleted. In the example above, I have the following result, showing what the editor removed:
> <?xml version="1.0"?>
> <jbossesb parameterReloadSecs="5"
> xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml... http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk/product/etc/schem...">
> <services>
> <service category="" description="" name="some-service-edited">
> <actions>
> <action class="org.jboss.soa.esb.actions.soap.SOAPClient" name="client-action">
> <property name="wsdl" value="{INSERT WSDL HERE}"/>
> </action>
> </actions>
> </service>
> </services>
> </jbossesb>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (JBIDE-13376) jbosstools-build-sites/aggregate/build.xml index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml)
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13376?page=com.atlassian.jira.plugi... ]
Nick Boldt updated JBIDE-13376:
-------------------------------
Summary: jbosstools-build-sites/aggregate/build.xml index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml) (was: mojo for update site index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml))
Description: jbosstools-build-sites/aggregate/build.xml index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml) (was: mojo for update site index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml))
> jbosstools-build-sites/aggregate/build.xml index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml)
> --------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13376
> URL: https://issues.jboss.org/browse/JBIDE-13376
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Build/Releng, updatesite
> Affects Versions: 4.1.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.1.0.Alpha1
>
>
> jbosstools-build-sites/aggregate/build.xml index page generation produces feature versions of 0.0.0 instead of actual versions (if using category.xml instead of site.xml)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (JBIDE-12974) add missing IUs to coretests and soatests sites
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12974?page=com.atlassian.jira.plugi... ]
Nick Boldt edited comment on JBIDE-12974 at 1/15/13 2:26 PM:
-------------------------------------------------------------
New PR https://github.com/jbosstools/jbosstools-integration-tests/pull/109 fixes compilation error (missing org.jboss.tools.cdi.reddeer plugin) and switches to simpler site build.
Note that this currently omits the option to generate site references in the metadata based on associate.properties file, but avoids 0.0.0s in the index.html page (JBIDE-13376) and ugly dependency on org.jboss.tools:org.jboss.tools.site:pom (JBIDE-13378).
was (Author: nickboldt):
New PR fixes compilation error (missing org.jboss.tools.cdi.reddeer plugin) and switches to simpler site build.
Note that this currently omits the option to generate site references in the metadata based on associate.properties file, but avoids 0.0.0s in the index.html page (JBIDE-13376) and ugly dependency on org.jboss.tools:org.jboss.tools.site:pom (JBIDE-13378).
> add missing IUs to coretests and soatests sites
> -----------------------------------------------
>
> Key: JBIDE-12974
> URL: https://issues.jboss.org/browse/JBIDE-12974
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: testing, updatesite
> Affects Versions: 4.0.0.Beta2
> Reporter: Nick Boldt
> Assignee: Martin Malina
> Fix For: 4.1.x
>
>
> The coretests [3] and soatests [4] sites are missing requirements/dependencies such as org.jboss.tools.ui.bot.ext. For JBDS 6.1 / 7.0, that missing dep can be added if you open a JIRA and specify what needs to be added. I might have to create a new feature to wrap the missing content.
> [3] http://download.jboss.org/jbosstools/updates/nightly/coretests/trunk/
> [4] http://download.jboss.org/jbosstools/updates/nightly/soatests/trunk/
> Are there any other missing IUs you need on those sites?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months