[JBoss JIRA] (JBIDE-23862) Server adapter: if "oc" in preferences is set to path with a " " syncing fails
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23862?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-23862 at 2/15/17 6:04 PM:
-------------------------------------------------------------------
[~jrichter1] thx for spotting. I dont know how my patch in openshift-restclient-java even worked at some point. I can perfectly replicate the issue and found the reason(s):
* the java process builder (that's being used to launch the oc binary) wont accept commands (nor arguments) with spaces.
* the openshift-restclient-java ([AbstractOpenShiftBinaryCapability#startProcess|https://github.com/adietis...] splits the command line by whitespaces and thus trashes a command with spaces in it's path.
Nevertheless I didnt find a proper solution:
If I put the command in double quotes (like it is suggested in many entries on the net), the binary is still not being found. Any other quoting that I tried (like "\\" or "%20" or even new FIle().getCanonicalPath()) dont work either.
Postponing this non-critical issue to later.
was (Author: adietish):
[~jrichter1] thx for spotting. I dont know how my patch in openshift-restclient-java even worked at some point. I can perfectly replicate the issue and found the reason(s):
* the java process builder (that's being used to launch the oc binary) wont accept commands (nor arguments) with spaces.
* the openshift-restclient-java ([AbstractOpenShiftBinaryCapability#startProcess|https://github.com/adietis...] splits the command line by whitespaces and thus trashes a command with spaces in it's path.
Nevertheless I dont find a proper solution:
If I put the command in double quotes (like it is suggested in many entries on the net), the binary is still not being found. Any other quoting that I tried (like "\\" or "%20" or even new FIle().getCanonicalPath()) dont work either.
Postponing this non-critical issue to later.
> Server adapter: if "oc" in preferences is set to path with a " " syncing fails
> ------------------------------------------------------------------------------
>
> Key: JBIDE-23862
> URL: https://issues.jboss.org/browse/JBIDE-23862
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.3.Final
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.4.3.Final
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23862) Server adapter: if "oc" in preferences is set to path with a " " syncing fails
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23862?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-23862:
------------------------------------------
[~jrichter1] thx for spotting. I dont know how my patch in openshift-restclient-java even worked at some point. I can perfectly replicate the issue and found the reason(s):
* the java process builder (that's being used to launch the oc binary) wont accept commands (nor arguments) with spaces.
* the openshift-restclient-java ([AbstractOpenShiftBinaryCapability#startProcess|https://github.com/adietis...] splits the command line by whitespaces and thus trashes a command with spaces in it's path.
Nevertheless I dont find a proper solution:
If I put the command in double quotes (like it is suggested in many entries on the net), the binary is still not being found. Any other quoting that I tried (like "\\" or "%20" or even new FIle().getCanonicalPath()) dont work either.
Postponing this non-critical issue to later.
> Server adapter: if "oc" in preferences is set to path with a " " syncing fails
> ------------------------------------------------------------------------------
>
> Key: JBIDE-23862
> URL: https://issues.jboss.org/browse/JBIDE-23862
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.3.Final
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.4.3.Final
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23872) Tools clear war deployed files
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23872?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-23872:
-------------------------------------
hey @[~cweiler] :
I still can't replicate, and I'll have [~mmalina] try it. But, I did just commit a change which will allow you to enable tracing on these plugins to see what's really going on. It won't be available until our release =/
However, you can still enable tracing on your own without my little UI enhancement... but it's a bit more complicated.
In your eclipse installation folder, please create a file named .options with the content below:
{code}
# Debugging options for the org.jboss.ide.eclipse.as.core plugin
# Turn on general debugging
org.jboss.ide.eclipse.as.core/debug=true
# Tracing options
org.jboss.ide.eclipse.as.core/config=true
org.jboss.ide.eclipse.as.core/info=true
org.jboss.ide.eclipse.as.core/warning=true
org.jboss.ide.eclipse.as.core/severe=true
org.jboss.ide.eclipse.as.core/finest=true
org.jboss.ide.eclipse.as.core/finer=true
# Tracking of server resources
org.jboss.ide.eclipse.as.core/resources=true
# Loading of extension points
org.jboss.ide.eclipse.as.core/extension_point=true
# Server listeners
org.jboss.ide.eclipse.as.core/listeners=true
# runtime targets
org.jboss.ide.eclipse.as.core/runtime_target=true
# Performance of loading and calling delegates
org.jboss.ide.eclipse.as.core/performance=true
# Publishing
org.jboss.ide.eclipse.as.core/publishing=true
# Debugging options for the org.jboss.ide.eclipse.as.wtp.core plugin
# Turn on general debugging
org.jboss.ide.eclipse.as.wtp.core/debug=true
# Tracing options
org.jboss.ide.eclipse.as.wtp.core/config=true
org.jboss.ide.eclipse.as.wtp.core/info=true
org.jboss.ide.eclipse.as.wtp.core/warning=true
org.jboss.ide.eclipse.as.wtp.core/severe=true
org.jboss.ide.eclipse.as.wtp.core/finest=true
org.jboss.ide.eclipse.as.wtp.core/finer=true
# Tracking of server resources
org.jboss.ide.eclipse.as.wtp.core/resources=true
# Loading of extension points
org.jboss.ide.eclipse.as.wtp.core/extension_point=true
# Server listeners
org.jboss.ide.eclipse.as.wtp.core/listeners=true
# runtime targets
org.jboss.ide.eclipse.as.wtp.core/runtime_target=true
# Performance of loading and calling delegates
org.jboss.ide.eclipse.as.wtp.core/performance=true
# Publishing
org.jboss.ide.eclipse.as.wtp.core/publishing=true
{code}
You must also launch your eclipse with the -debug flag.
Let's see if this can help you =/
> Tools clear war deployed files
> ------------------------------
>
> Key: JBIDE-23872
> URL: https://issues.jboss.org/browse/JBIDE-23872
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.4.2.Final
> Environment: Windows 7 64
> JDK 8
> Eclipse Neon 1
> JBoss Tools 4.4
> WildFly 10.1
> Reporter: Claudio Weiler
> Assignee: Rob Stryker
> Fix For: 4.4.3.Final
>
>
> After an Eclipse start war deployed files are deleted and not republished.
> I have created a system lock to one of the html resources to try to dig more infos, but the exception shown refers to another resource:
> "Error renaming D:\Aplic\wildfly-10.1.0\standalone\tmp\tmp7250132485298982117.MF to D:\Aplic\wildfly-10.1.0\standalone\deployments\testing-ear.ear\META-INF\MANIFEST.MF."
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23322) create mojo that takes as input a list of URLs and a name, and generates a composite site
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23322?page=com.atlassian.jira.plugi... ]
Nick Boldt updated JBIDE-23322:
-------------------------------
Fix Version/s: 4.4.3.Final
(was: 4.5.x)
> create mojo that takes as input a list of URLs and a name, and generates a composite site
> -----------------------------------------------------------------------------------------
>
> Key: JBIDE-23322
> URL: https://issues.jboss.org/browse/JBIDE-23322
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.4.3.Final
>
>
> In https://issues.jboss.org/browse/WINDUP-1189 it was requested that tycho builds be able to produce a simple composite site, using as input 1 or more URLs.
> So, to generalize this for use by other projects, we need a mojo that can be configured with a set of URLs, and a site name, in order to produce three files:
> {code}
> target/composite/compositeContent.xml
> target/composite/compositeArtifacts.xml
> target/composite/p2.index (like https://devstudio.jboss.com/10.0/stable/updates/p2.index )
> {code}
> Secondary use case would be to generate a composite site from subfolders in an existing folder, eg., to replace https://github.com/jbosstools/jbosstools-build-ci/blob/jbosstools-4.4.x/u...
> So we could use this to create composite sites in folders like:
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/core/ (invalid composite points to ../, which has no composite either)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/central/ (no composite)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/earlyaccess/ (no composite)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/integrati... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/coretests/ (up to date)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/core/ (invalid composite points to ../, which has no composite either)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/cent... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/earl... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/inte... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/core... (composite out of date)
> But also to point to remote (/stable/) URLs from pointer sites, like:
> * http://download.jboss.org/jbosstools/neon/stable/updates/compositeArtifac... (up to date, name = JBoss Tools - Core + Central Update Site)
> * http://download.jboss.org/jbosstools/neon/stable/updates/central/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/stable/updates/earlyaccess/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/stable/updates/coretests/compos... (up to date, name = JBoss Tools 4.4.2.Final Stable Release Tests Site)
> * http://download.jboss.org/jbosstools/neon/stable/updates/integration-tests (404'd)
> * http://download.jboss.org/jbosstools/neon/development/updates/compositeAr... (up to date, name = JBoss Tools - Core + Central Update Site)
> * http://download.jboss.org/jbosstools/neon/development/updates/central/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/development/updates/earlyaccess/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/development/updates/coretests/c... (out of date, points to 4.4.0.Alpha1)
> * http://download.jboss.org/jbosstools/neon/development/updates/integration... (404'd)
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23322) create mojo that takes as input a list of URLs and a name, and generates a composite site
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23322?page=com.atlassian.jira.plugi... ]
Nick Boldt commented on JBIDE-23322:
------------------------------------
New mojo created:
https://github.com/jbosstools/jbosstools-maven-plugins/tree/master/tycho-...
https://github.com/jbosstools/jbosstools-maven-plugins/blob/master/tycho-...
https://github.com/jbosstools/jbosstools-maven-plugins/blob/master/tycho-...
Updated the doc for repository-utils too:
https://github.com/jbosstools/jbosstools-maven-plugins/tree/master/tycho-...
> create mojo that takes as input a list of URLs and a name, and generates a composite site
> -----------------------------------------------------------------------------------------
>
> Key: JBIDE-23322
> URL: https://issues.jboss.org/browse/JBIDE-23322
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.4.3.Final
>
>
> In https://issues.jboss.org/browse/WINDUP-1189 it was requested that tycho builds be able to produce a simple composite site, using as input 1 or more URLs.
> So, to generalize this for use by other projects, we need a mojo that can be configured with a set of URLs, and a site name, in order to produce three files:
> {code}
> target/composite/compositeContent.xml
> target/composite/compositeArtifacts.xml
> target/composite/p2.index (like https://devstudio.jboss.com/10.0/stable/updates/p2.index )
> {code}
> Secondary use case would be to generate a composite site from subfolders in an existing folder, eg., to replace https://github.com/jbosstools/jbosstools-build-ci/blob/jbosstools-4.4.x/u...
> So we could use this to create composite sites in folders like:
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/core/ (invalid composite points to ../, which has no composite either)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/central/ (no composite)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/earlyaccess/ (no composite)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/integrati... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/stable/updates/coretests/ (up to date)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/core/ (invalid composite points to ../, which has no composite either)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/cent... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/earl... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/inte... (no composite)
> * http://download.jboss.org/jbosstools/static/neon/development/updates/core... (composite out of date)
> But also to point to remote (/stable/) URLs from pointer sites, like:
> * http://download.jboss.org/jbosstools/neon/stable/updates/compositeArtifac... (up to date, name = JBoss Tools - Core + Central Update Site)
> * http://download.jboss.org/jbosstools/neon/stable/updates/central/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/stable/updates/earlyaccess/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/stable/updates/coretests/compos... (up to date, name = JBoss Tools 4.4.2.Final Stable Release Tests Site)
> * http://download.jboss.org/jbosstools/neon/stable/updates/integration-tests (404'd)
> * http://download.jboss.org/jbosstools/neon/development/updates/compositeAr... (up to date, name = JBoss Tools - Core + Central Update Site)
> * http://download.jboss.org/jbosstools/neon/development/updates/central/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/development/updates/earlyaccess/ (composite missing)
> * http://download.jboss.org/jbosstools/neon/development/updates/coretests/c... (out of date, points to 4.4.0.Alpha1)
> * http://download.jboss.org/jbosstools/neon/development/updates/integration... (404'd)
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23815) NPE in BuildConfigPropertySource.getResourcePropertyDescriptors
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23815?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-23815:
-------------------------------------
[~aurelien.pupier] [~tsedmik]
Sorry to be a pain, all, but I had some spare cycles and was looking to help out the openshift tools guys... and this bug report assumes a lot of knowledge on my part ;)
Any chance we can get a 100% a-z use case with steps listed? I know that's annoying, but that kinda stuff helps people get up to speed on workflows and usecases they don't know about...
So it'd be great if you just, you know, started with a clean cdk (list version plz), and list every step to replicate? A screencast from step 0 would also work.
What I tried so far is:
1) Start a clean cdk, wait for openshift connection to appear, expand it
2) Create an project (t22)
3) right-click it, select new -> resource
4) realize i need a file to contribute
5) save the json in this jira description to a file
6) select it in the new resource dialog
7) get an error that my namespace is wrong, change namespace from test1 to t22, try again
8) get an error that resourceVersion cannot be set, delete the line "resourceVersion" : "69156",
9) try again, resource gets created
10) right-click on t22, select properties (empty properties view opens)
11) right-click on camel-ose-springboot-xml in openshift explorer under t22, select properties
12) empty properties view shows up.
13) sit around confused for a bit ;)
14) browse the web console,
15) give up
Any further help in replicating is appreciated!
> NPE in BuildConfigPropertySource.getResourcePropertyDescriptors
> ---------------------------------------------------------------
>
> Key: JBIDE-23815
> URL: https://issues.jboss.org/browse/JBIDE-23815
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.2.Final
> Reporter: Aurélien Pupier
> Assignee: Andre Dietisheim
> Priority: Critical
> Fix For: 4.4.3.Final
>
> Attachments: npe.webm, test-ose.zip
>
>
> {noformat}
> !ENTRY org.eclipse.jface 4 2 2017-01-31 10:27:08.951
> !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface".
> !STACK 0
> java.lang.NullPointerException
> at org.jboss.tools.openshift.internal.ui.property.BuildConfigPropertySource.getResourcePropertyDescriptors(BuildConfigPropertySource.java:56)
> at org.jboss.tools.openshift.internal.ui.property.ResourcePropertySource.getPropertyDescriptors(ResourcePropertySource.java:62)
> at org.eclipse.ui.views.properties.PropertySheetEntry.computeMergedPropertyDescriptors(PropertySheetEntry.java:171)
> at org.eclipse.ui.views.properties.PropertySheetEntry.refreshChildEntries(PropertySheetEntry.java:506)
> at org.eclipse.ui.views.properties.PropertySheetEntry.setValues(PropertySheetEntry.java:732)
> at org.eclipse.ui.views.properties.PropertySheetViewer.setInput(PropertySheetViewer.java:980)
> at org.eclipse.ui.views.properties.PropertySheetPage.selectionChanged(PropertySheetPage.java:525)
> at org.jboss.tools.openshift.internal.ui.property.tabbed.OpenShiftResourcePropertySection$2.selectionChanged(OpenShiftResourcePropertySection.java:140)
> at org.eclipse.jface.viewers.Viewer$1.run(Viewer.java:158)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50)
> at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:173)
> at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:155)
> at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2191)
> at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1229)
> at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1258)
> at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:242)
> at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:236)
> at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:405)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4410)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1079)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4228)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3816)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1121)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1022)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:150)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:687)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:604)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:138)
> 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:388)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:243)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:498)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:673)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:610)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1519)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1492)
> {noformat}
> here is the json available when I click "Edit" on the application:
> {noformat}
> {
> "metadata" : {
> "name" : "camel-ose-springboot-xml",
> "namespace" : "test1",
> "selfLink" : "/api/v1/namespaces/test1/services/camel-ose-springboot-xml",
> "uid" : "a28f19cd-e298-11e6-9637-525400ee9c8f",
> "resourceVersion" : "69156",
> "creationTimestamp" : "2017-01-25T00:53:07Z",
> "labels" : {
> "expose" : "true",
> "group" : "com.mycompany",
> "project" : "camel-ose-springboot-xml",
> "provider" : "fabric8",
> "version" : "1.0.0-SNAPSHOT"
> },
> "annotations" : {
> "fabric8.io/iconUrl" : "img/icons/camel.svg",
> "prometheus.io/port" : "9779",
> "prometheus.io/scrape" : "true"
> }
> },
> "spec" : {
> "ports" : [{
> "name" : "http",
> "protocol" : "TCP",
> "port" : 80,
> "targetPort" : 8080
> }],
> "selector" : {
> "group" : "com.mycompany",
> "project" : "camel-ose-springboot-xml",
> "provider" : "fabric8"
> },
> "portalIP" : "172.30.65.90",
> "clusterIP" : "172.30.65.90",
> "type" : "ClusterIP",
> "sessionAffinity" : "None"
> },
> "status" : {"loadBalancer" : {}},
> "kind" : "Service",
> "apiVersion" : "v1"
> }
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23825) Improve eap compatibility test execution
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23825?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-23825:
-------------------------------------
[~mmalina] Can you make sure this issue is targeted correctly? Will it be done by freeze / branch? This seems to be about the jobs I emailed you about yesterday
> Improve eap compatibility test execution
> ----------------------------------------
>
> Key: JBIDE-23825
> URL: https://issues.jboss.org/browse/JBIDE-23825
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: integration-tests, server
> Affects Versions: 4.4.3.AM2
> Reporter: Martin Malina
> Assignee: Martin Malina
> Fix For: 4.4.3.Final
>
>
> This is a followup of JBIDE-23756 - with that, we are once again able to execute compatibility tests for eap. But there are a few things missing:
> For now I will make it work with what we have, but there are several things that need to be fixed:
> 1. Even if you only run the eap7x-compatibility profile, all of the runtimes (jboss as 4, as 5, as 7, wildfly...) will be downloaded anyway, because this is set up in as/itests/pom.xml - we need to come up with a way to only do this if the compatibility profile is not active. Maybe we need to switch to profile activation by property, e.g. eap7x-compatibility - the profile in as/itests/org.jboss.tools.as.ui.bot.itests/pom.xml would be activated by this, whereas all the other runtime downloads in as/itests/pom.xml would be in a profile that is deactivated using this property.
> 2. https://github.com/jbosstools/jbosstools-server/blob/master/as/itests/org...
> The eap7x-compatibility profile has jboss-eap-7.0 server directory hardcoded. You can still override the whole property with something else for eap 7.1, but it would be nice to improve this.
> For reference, this is a job where Radim demonstrated the new way to execute tests:
> https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/view/All/job...
> And these are the two jobs EAP QE uses for the compatibilty testing:
> https://eap-qe-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/eap-70x-jbds-c...
> https://eap-qe-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/view/EAP7/view/EAP...
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23903) Server adapter: waits endlessly if you dont unfold the project in the OpenShift explorer
by Dmitrii Bocharov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23903?page=com.atlassian.jira.plugi... ]
Dmitrii Bocharov commented on JBIDE-23903:
------------------------------------------
I tried to replicate this issue with EAP application. But it works fine. Server adapter for EAP doesn't wait endlessly.
I created a nodejs example application in the same project as EAP.
Here are 2 orders of steps i've tried
1) start EAP adapter - works fine
start nodejs adapter - works fine
2) start nodejs adapter - hangs
start EAP adapter - works fine, but nodejs adapter continues hanging
So something is with nodejs example or it has something that disturbs starting adapter without problems.
Will look further
> Server adapter: waits endlessly if you dont unfold the project in the OpenShift explorer
> ----------------------------------------------------------------------------------------
>
> Key: JBIDE-23903
> URL: https://issues.jboss.org/browse/JBIDE-23903
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.3.Final
> Reporter: Andre Dietisheim
> Assignee: Dmitrii Bocharov
> Labels: openshift_v3, server_adapter
> Fix For: 4.4.3.Final
>
> Attachments: failed-to-detect-pod.png, image-2017-02-15-17-38-29-607.png
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month