Bug 1139515
| Summary: | [GSS] (6.4.0) cli deploy command with unpaired quotation mark causes StringIndexOutOfBoundsException | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Jay SenSharma <jsenshar> |
| Component: | CLI | Assignee: | Shailendra Jadhav <sjadhav> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Petr Kremensky <pkremens> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 6.3.0 | CC: | bmaxwell, brian.stansberry, kkhan, sjadhav |
| Target Milestone: | DR1 | ||
| Target Release: | EAP 6.4.0 | ||
| Hardware: | All | ||
| OS: | Windows | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
When running previous versions of Jboss EAP 6 on Windows, using `jboss-cli.bat` to deploy an application would throw an exception when trying to tab complete an open quote (").
Attempting this action would result in the following error:
----
java.lang.StringIndexOutOfBoundsException: String index out of range: -1
----
In this release, the exception will not occur.
|
Story Points: | --- |
| Clone Of: | Environment: |
Windows
|
|
| Last Closed: | Type: | Bug | |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Verified on EAP 6.4.0.DR1.1 |
Description of problem: ====================== CLI "deploy" command with open quote and tab for completion results in a "StringIndexOutOfBoundsException" exception Type 'connect' to connect to the server or 'help' for the list of supported commands. [disconnected /] connect [standalone@localhost:9999 /] deploy "d<Tab> [standalone@localhost:9990 /] deploy "djava.lang.StringIndexOutOfBoundsException: String index out of range: -1 java.lang.StringIndexOutOfBoundsException: String index out of range: -1 at java.lang.String.substring(String.java:1911) at org.jboss.as.cli.handlers.WindowsFilenameTabCompleter.complete(WindowsFilenameTabCompleter.java:54) at org.jboss.as.cli.operation.OperationRequestCompleter.complete(OperationRequestCompleter.java:224) at org.jboss.as.cli.CommandCompleter.complete(CommandCompleter.java:95) at org.jboss.as.cli.impl.Console$Factory$1$1.complete(Console.java:102) at org.jboss.aesh.console.Console.complete(Console.java:1155) at org.jboss.aesh.console.Console.parseOperation(Console.java:550) at org.jboss.aesh.console.Console.read(Console.java:452) at org.jboss.aesh.console.Console.read(Console.java:346) at org.jboss.as.cli.impl.Console$Factory$1.readLine(Console.java:178) at org.jboss.as.cli.impl.CommandContextImpl.interact(CommandContextImpl.java:1233) at org.jboss.as.cli.impl.CliLauncher.main(CliLauncher.java:263) at org.jboss.as.cli.CommandLineMain.main(CommandLineMain.java:34) 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.jboss.modules.Module.run(Module.java:312) at org.jboss.modules.Main.main(Main.java:460) Version-Release number of selected component (if applicable): How reproducible: ================= Steps to Reproduce: 1. Use a Windows OS (like Windows 2008 R2) and install WildFly in it. 2. Using "jboss-cli.bat" script connect to JBoss and then try the following command which contains incomplete quotation mark then press tab. deploy "test<TAB> Actual results: ============== Following error occurs and CLI terminates: java.lang.StringIndexOutOfBoundsException: String index out of range: -1 Expected results: ============== No Error was supposed to occur there Additional info: ============== Issue can be reproduced only in Windows Platform.