-
Bug
-
Resolution: Fixed
-
Major
-
Jenkins: 2.46.2
hp-application-automation-tools-plugin: 5.1.0.2 - beta
Windows OS 2012 R2
Java 1.7.0_25
We are currently exploring "hp-application-automation-tools-plugin: 5.1.0.2 - beta. We had a requirement of instead of running VuGen script using mdrv.exe command it is better if there is a plugin that manages on its own to invoke mdrv.exe on the node and provides Run status with PASS/FAIL status for Transactions. In the Beta version our requirement is almost met and we were able to create Jenkins build & execute to invoke VuGen script by using "Run LoadRunner Script" step.
However, our final objective of using the Plugin is to build a pipeline script in CI/CD flow.
In that process, I have created as below using Pipeline syntax :
stage('RunLRScriptDallasLG')
{
node('Dallas_LG_386')
{
RunLoadRunnerScript 'C:\\LR\\Projects\\MINA\\MINA_WebServices_01
MINA_WebServices_01.usr'
}
}
while saving the build and after executing it, I see below exception:
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
WorkflowScript: 5: unexpected token: C:\LR\Projects\MINA\MINA_WebServices_01\MINA_WebServices_01.usr @ line 5, column 29.
RunLoadRunnerScript 'C:\\LR\\Projects\\MINA\\MINA_WebServices_01
MINA_WebServices_01.usr'
^
1 error
at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.ErrorCollector.addFatalError(ErrorCollector.java:150)
at org.codehaus.groovy.control.ErrorCollector.addError(ErrorCollector.java:120)
at org.codehaus.groovy.control.ErrorCollector.addError(ErrorCollector.java:132)
at org.codehaus.groovy.control.SourceUnit.addError(SourceUnit.java:360)
at org.codehaus.groovy.antlr.AntlrParserPlugin.transformCSTIntoAST(AntlrParserPlugin.java:145)
at org.codehaus.groovy.antlr.AntlrParserPlugin.parseCST(AntlrParserPlugin.java:111)
at org.codehaus.groovy.control.SourceUnit.parse(SourceUnit.java:237)
at org.codehaus.groovy.control.CompilationUnit$1.call(CompilationUnit.java:167)
at org.codehaus.groovy.control.CompilationUnit.applyToSourceUnits(CompilationUnit.java:931)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:593)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:569)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:546)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:67)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:429)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:392)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:221)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:405)
Finished: FAILURE
Could you please help me in fixing the issue. I am suspecting as the plugin is in Beta version & it is not yet supported for Pipeline script?.