[JBoss JIRA] (JBIDE-23567) Integration tests global refactoring
by Ondrej Dockal (Jira)
[ https://issues.redhat.com/browse/JBIDE-23567?page=com.atlassian.jira.plug... ]
Ondrej Dockal reassigned JBIDE-23567:
-------------------------------------
Assignee: Josef Kopriva (was: Ondrej Dockal)
> Integration tests global refactoring
> ------------------------------------
>
> Key: JBIDE-23567
> URL: https://issues.redhat.com/browse/JBIDE-23567
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: integration-tests
> Reporter: Jeff MAURY
> Assignee: Josef Kopriva
> Priority: Major
> Labels: integration-test, integration_tests
> Fix For: 4.14.x
>
>
> We should done some work on integration tests so that we can rely on them to improve our code quality and reduce the technical debt.
> A sprint will be dedicated.
> Here are the tasks we should work on:
> * run tests from Maven and document how to run them if specific steps are required
> * If failure, fix the failed tests
> * Refactor / move tests to the components repository
> * Fix/make sure tests are run in PR check
> This huge task should be done component per component. Sub-tasks JIRA will be created for each component.
> You can use this document as a starting point:[https://docs.google.com/document/d/1bl8pJ2aW65UpyGpr3qxoAUREDWL26N...
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 1 month
[JBoss JIRA] (JBIDE-26917) CDK runtime detection does not work for folder with minishift.exe on windows system
by André Dietisheim (Jira)
[ https://issues.redhat.com/browse/JBIDE-26917?page=com.atlassian.jira.plug... ]
André Dietisheim edited comment on JBIDE-26917 at 2/10/20 11:07 AM:
--------------------------------------------------------------------
the file pattern that I see for windows is missing the "windows" portion required:
http://cdk-builds.usersys.redhat.com/builds/nightly/latest-build/windows-...
{code}
minishift.exe
{code}
Assuming that the file I am refering to is the correct one, [~odockal], could you please verify the filename of your cdk binary on windows where detection fails?
was (Author: adietish):
the file pattern that I see for windows is missing the "windows" portion required:
http://cdk-builds.usersys.redhat.com/builds/nightly/latest-build/windows-...
{code}
minishift.exe.sha256sum
{code}
Assuming that the file I am refering to is the correct one, [~odockal], could you please verify the filename of your cdk binary on windows where detection fails?
> CDK runtime detection does not work for folder with minishift.exe on windows system
> -----------------------------------------------------------------------------------
>
> Key: JBIDE-26917
> URL: https://issues.redhat.com/browse/JBIDE-26917
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk, openshift, runtime-detection
> Affects Versions: 4.13.0.Final
> Environment: Windows 10
> Reporter: Ondrej Dockal
> Assignee: André Dietisheim
> Priority: Critical
> Fix For: 4.14.0.Final
>
>
> Runtime detection does not find CDK server adapter when given folder with minishift.exe binary. It does not happen on linux systems.
> Steps:
> 1. Have studio opened and CDK binary downloaded
> 2. Preferences -> JBossTools -> Jboss Runtime Detection
> 3. Add
> 4. Choose folder with cdk binary -> Open
> 5. ASSERT: Searching for runtimes dialog is shown with offered CDK 3.2+ server adapter
> Acutally: on windows it does not recognize adapter. On linux this works.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 1 month
[JBoss JIRA] (JBIDE-26917) CDK runtime detection does not work for folder with minishift.exe on windows system
by André Dietisheim (Jira)
[ https://issues.redhat.com/browse/JBIDE-26917?page=com.atlassian.jira.plug... ]
André Dietisheim commented on JBIDE-26917:
------------------------------------------
the file pattern that I see for windows is missing the "windows" portion required:
http://cdk-builds.usersys.redhat.com/builds/nightly/latest-build/windows-...
{code}
minishift.exe.sha256sum
{code}
Assuming that the file I am refering to is the correct one, [~odockal], could you please verify the filename of your cdk binary on windows where detection fails?
> CDK runtime detection does not work for folder with minishift.exe on windows system
> -----------------------------------------------------------------------------------
>
> Key: JBIDE-26917
> URL: https://issues.redhat.com/browse/JBIDE-26917
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk, openshift, runtime-detection
> Affects Versions: 4.13.0.Final
> Environment: Windows 10
> Reporter: Ondrej Dockal
> Assignee: André Dietisheim
> Priority: Critical
> Fix For: 4.14.0.Final
>
>
> Runtime detection does not find CDK server adapter when given folder with minishift.exe binary. It does not happen on linux systems.
> Steps:
> 1. Have studio opened and CDK binary downloaded
> 2. Preferences -> JBossTools -> Jboss Runtime Detection
> 3. Add
> 4. Choose folder with cdk binary -> Open
> 5. ASSERT: Searching for runtimes dialog is shown with offered CDK 3.2+ server adapter
> Acutally: on windows it does not recognize adapter. On linux this works.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 1 month
[JBoss JIRA] (JBIDE-26917) CDK runtime detection does not work for folder with minishift.exe on windows system
by André Dietisheim (Jira)
[ https://issues.redhat.com/browse/JBIDE-26917?page=com.atlassian.jira.plug... ]
André Dietisheim commented on JBIDE-26917:
------------------------------------------
[~jeffmaury] In *UnifiedMinishiftRuntimeDetector* I've found the following regex that is used to find the cdk binary:
{code}
(crc|cdk-[0-9][.][0-9].*-minishift-(linux|darwin|windows)-amd64)(.exe)?
{code}
The code looks at all files within a given folder and tries to match those against the above regex:
https://github.com/jbosstools/jbosstools-openshift/blob/master/plugins/or...
> CDK runtime detection does not work for folder with minishift.exe on windows system
> -----------------------------------------------------------------------------------
>
> Key: JBIDE-26917
> URL: https://issues.redhat.com/browse/JBIDE-26917
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk, openshift, runtime-detection
> Affects Versions: 4.13.0.Final
> Environment: Windows 10
> Reporter: Ondrej Dockal
> Assignee: André Dietisheim
> Priority: Critical
> Fix For: 4.14.0.Final
>
>
> Runtime detection does not find CDK server adapter when given folder with minishift.exe binary. It does not happen on linux systems.
> Steps:
> 1. Have studio opened and CDK binary downloaded
> 2. Preferences -> JBossTools -> Jboss Runtime Detection
> 3. Add
> 4. Choose folder with cdk binary -> Open
> 5. ASSERT: Searching for runtimes dialog is shown with offered CDK 3.2+ server adapter
> Acutally: on windows it does not recognize adapter. On linux this works.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 1 month