├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── .run └── Jenkins debug.run.xml ├── HpToolsAborter ├── HpToolsAborter.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── HpToolsLauncher ├── Common │ ├── McConnectionInfo.cs │ └── WinUserNativeMethods.cs ├── ConsoleQuickEdit.cs ├── ConsoleWriter.cs ├── ElevatedProcess.cs ├── ExportOptions.cs ├── HpToolsLauncher.csproj ├── HpToolsLauncher.csproj.DotSettings ├── HpToolsLauncher.sln ├── HpToolsLauncherTests │ ├── HpToolsLauncherTests.csproj │ ├── ParallelRunnerEnvironmentUtilTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── UnitTest1.cs ├── IProcessAdapter.cs ├── IniManager.cs ├── Interfaces │ ├── IAssetRunner.cs │ ├── IFileSysTestRunner.cs │ ├── IMtbManager.cs │ ├── IXmlBuilder.cs │ └── JavaProperties │ │ ├── JavaIniFile.cs │ │ └── JavaProperties.cs ├── JavaProperties │ ├── JavaIniFile.cs │ └── JavaProperties.cs ├── JunitXml │ ├── JunitXmlBuilder.cs │ ├── junit.cs │ └── junit.xsd ├── Launcher.cs ├── Local.testsettings ├── MtbManager.cs ├── MtbxManager.cs ├── MtbxSchema.xsd ├── NativeProcess.cs ├── ParallelRunner │ ├── ParallelRunnerEnvironmentUtil.cs │ └── ParallelTestRunConfiguration.cs ├── ProcessExtensions.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── RTS │ ├── AdditionalAttributeModel.cs │ ├── RTSHelper.cs │ └── ScriptRTSModel.cs ├── Runners │ ├── AlmTestSetsRunner.cs │ ├── FileSystemTestsRunner.cs │ ├── MBTRunner.cs │ └── RunnerBase.cs ├── SummaryDataLogger.cs ├── TestData.cs ├── TestInfo.cs ├── TestParameter.cs ├── TestParameterInfo.cs ├── TestRunResults.cs ├── TestRunners │ ├── ApiTestRunner.cs │ ├── GuiTestRunner.cs │ ├── IterationInfo.cs │ ├── ParallelTestRunner.cs │ └── PerformanceTestRunner.cs ├── TestSuiteRunResults.cs ├── TraceAndTestImpact.testsettings ├── Utils │ ├── Encoder.cs │ ├── Encrypter.cs │ ├── Extensions.cs │ ├── Helper.cs │ └── RunAsUser.cs ├── app.config └── externals │ ├── Analysis.Api.dll │ ├── Analysis.ApiLib.dll │ ├── Analysis.ApiSL.dll │ ├── Interop.TDAPIOLELib.dll │ ├── Interop.Wlrun.dll │ ├── Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll │ ├── QTObjectModelLib.dll │ └── interop.OTAClient.dll ├── Jenkinsfile ├── LICENSE.txt ├── LRAnalysisLauncher ├── Helper.cs ├── LRAnalysisLauncher.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── app.config ├── doc ├── ALM_Integration.md ├── Jenkins_slave_account.png ├── Jenkins_slave_setup.png ├── LR_Integration.md ├── README.md ├── UFT_Mobile_Integration.md └── WhatsNewEarlier.md ├── pom.xml ├── readme.md ├── sonar-project.properties ├── sonarlint.json └── src ├── main ├── java │ └── com │ │ └── microfocus │ │ └── application │ │ └── automation │ │ └── tools │ │ ├── AlmToolsUtils.java │ │ ├── EncryptionUtils.java │ │ ├── JenkinsUtils.java │ │ ├── common │ │ ├── ALMRESTVersionUtils.java │ │ ├── Func.java │ │ ├── Pair.java │ │ ├── RuntimeIOException.java │ │ ├── RuntimeUtils.java │ │ ├── SSEException.java │ │ ├── masterToSlave │ │ │ ├── FunctionFileCallable.java │ │ │ ├── SupplierFileCallable.java │ │ │ ├── ThrowingFunction.java │ │ │ └── ThrowingSupplier.java │ │ ├── model │ │ │ ├── HealthAnalyzerModel.java │ │ │ ├── VariableListWrapper.java │ │ │ └── VariableWrapper.java │ │ ├── run │ │ │ └── HealthAnalyzerBuilder.java │ │ └── utils │ │ │ ├── HealthAnalyzerCommon.java │ │ │ └── OperatingSystem.java │ │ ├── commonResultUpload │ │ ├── CommonResultUploadBuilder.java │ │ ├── CommonUploadLogger.java │ │ ├── ParamConstant.java │ │ ├── rest │ │ │ ├── BaseGetEntityRequest.java │ │ │ ├── BasicPostEntityRequest.java │ │ │ ├── CreateAlmEntityEntityRequest.java │ │ │ ├── GetAlmEntityRequest.java │ │ │ └── UpdateAlmEntityEntityRequest.java │ │ ├── service │ │ │ ├── CriteriaTranslator.java │ │ │ ├── CustomizationService.java │ │ │ ├── FolderService.java │ │ │ ├── RestService.java │ │ │ ├── RunStatusResolver.java │ │ │ ├── UDFTranslator.java │ │ │ └── VersionControlService.java │ │ ├── uploader │ │ │ ├── RunUploader.java │ │ │ ├── StepBean.java │ │ │ ├── TestInstanceUploader.java │ │ │ ├── TestSetUploader.java │ │ │ ├── TestUploader.java │ │ │ ├── Uploader.java │ │ │ └── UploaderHelper.java │ │ └── xmlreader │ │ │ ├── TestSetReader.java │ │ │ ├── ValueTranslator.java │ │ │ ├── XmlReader.java │ │ │ ├── XpathReader.java │ │ │ ├── configloader │ │ │ ├── EntitiesFieldMapLoader.java │ │ │ └── RunStatusMapLoader.java │ │ │ └── model │ │ │ ├── EntitiesFieldMap.java │ │ │ ├── RunStatusMap.java │ │ │ └── XmlResultEntity.java │ │ ├── lr │ │ ├── model │ │ │ ├── AdditionalAttributeModel.java │ │ │ ├── ScriptRTSModel.java │ │ │ ├── ScriptRTSSetModel.java │ │ │ └── SummaryDataLogModel.java │ │ └── run │ │ │ └── HealthAnalyzerLrStep.java │ │ ├── mc │ │ ├── AuthType.java │ │ ├── Constants.java │ │ ├── HttpResponse.java │ │ ├── HttpUtils.java │ │ ├── JobConfigurationProxy.java │ │ └── Oauth2TokenUtil.java │ │ ├── model │ │ ├── ALMVersion.java │ │ ├── AUTEnvironmentModelResolver.java │ │ ├── AUTEnvironmentResolvedModel.java │ │ ├── AlmServerSettingsModel.java │ │ ├── AutEnvironmentModel.java │ │ ├── AutEnvironmentParameterModel.java │ │ ├── AuthModel.java │ │ ├── CdaDetails.java │ │ ├── CloudBrowserModel.java │ │ ├── CredentialsModel.java │ │ ├── CredentialsScope.java │ │ ├── EnumDescription.java │ │ ├── FileSystemTestModel.java │ │ ├── FileSystemTestSetModel.java │ │ ├── MCServerSettingsModel.java │ │ ├── OctaneServerSettingsModel.java │ │ ├── ParallelRunnerEnvironmentModel.java │ │ ├── ProxySettings.java │ │ ├── ResultsPublisherModel.java │ │ ├── RunFromAlmModel.java │ │ ├── RunFromFileSystemModel.java │ │ ├── RunMode.java │ │ ├── SSOCredentialsModel.java │ │ ├── SecretContainer.java │ │ ├── SecretContainerImpl.java │ │ ├── SseModel.java │ │ ├── SseProxySettings.java │ │ ├── SvChangeModeModel.java │ │ ├── SvDataModelSelection.java │ │ ├── SvDeployModel.java │ │ ├── SvExportModel.java │ │ ├── SvPerformanceModelSelection.java │ │ ├── SvServerSettingsModel.java │ │ ├── SvServiceSelectionModel.java │ │ ├── SvUndeployModel.java │ │ ├── TestsFramework.java │ │ ├── UploadAppModel.java │ │ ├── UploadAppPathModel.java │ │ └── UploadTestResultToAlmModel.java │ │ ├── nodes │ │ └── EncryptionNodeProperty.java │ │ ├── octane │ │ ├── AbstractResultQueueImpl.java │ │ ├── CIJenkinsServicesImpl.java │ │ ├── GitFetchUtils.java │ │ ├── ImpersonationUtil.java │ │ ├── JellyUtils.java │ │ ├── ResultQueue.java │ │ ├── actions │ │ │ ├── BuildActions.java │ │ │ ├── CoveragePublisher.java │ │ │ ├── PluginActions.java │ │ │ ├── SonarQubeWebHookCrumbExclusion.java │ │ │ ├── UFTActionDetectionBuildAction.java │ │ │ ├── UFTTestDetectionBuildAction.java │ │ │ ├── UFTTestDetectionPublisher.java │ │ │ ├── WebhookAction.java │ │ │ ├── Webhooks.java │ │ │ ├── coverage │ │ │ │ ├── CoveragePublisherAction.java │ │ │ │ └── CoverageService.java │ │ │ └── cucumber │ │ │ │ ├── CucumberResultsService.java │ │ │ │ ├── CucumberTestResultsAction.java │ │ │ │ └── CucumberTestResultsActionPublisher.java │ │ ├── branches │ │ │ ├── BranchesBuildAction.java │ │ │ └── BranchesPublisher.java │ │ ├── configuration │ │ │ ├── ConfigurationAction.java │ │ │ ├── ConfigurationActionFactory.java │ │ │ ├── ConfigurationActionMultibranch.java │ │ │ ├── ConfigurationActionMultibranchFactory.java │ │ │ ├── ConfigurationListener.java │ │ │ ├── ConfigurationService.java │ │ │ ├── ConfigurationValidator.java │ │ │ ├── FodConfigUtil.java │ │ │ ├── JobConfigurationProxy.java │ │ │ ├── ReflectionUtils.java │ │ │ ├── SDKBasedLoggerProvider.java │ │ │ └── SSCServerConfigUtil.java │ │ ├── events │ │ │ ├── AbstractBuildListenerOctaneImpl.java │ │ │ ├── BuildLogHelper.java │ │ │ ├── GlobalEventsListenerOctaneImpl.java │ │ │ ├── OctaneQueueListener.java │ │ │ ├── OutputEnvironmentParametersHelper.java │ │ │ ├── SCMListenerOctaneImpl.java │ │ │ └── WorkflowListenerOctaneImpl.java │ │ ├── exceptions │ │ │ └── AggregatedMessagesException.java │ │ ├── executor │ │ │ ├── CheckOutSubDirEnvContributor.java │ │ │ ├── ExecutorConnectivityService.java │ │ │ ├── FullSyncRequiredCause.java │ │ │ ├── TestExecutionJobCreatorService.java │ │ │ ├── TriggeredByOctanePlugin.java │ │ │ ├── UFTTestDetectionCallable.java │ │ │ ├── UFTTestDetectionFinalResultSaverCallable.java │ │ │ ├── UFTTestDetectionService.java │ │ │ ├── UftConstants.java │ │ │ ├── UftJobRecognizer.java │ │ │ ├── UftTestDiscoveryDispatcher.java │ │ │ ├── UftTestDiscoveryQueue.java │ │ │ └── scmmanager │ │ │ │ ├── GitPluginHandler.java │ │ │ │ ├── ScmPluginFactory.java │ │ │ │ ├── ScmPluginHandler.java │ │ │ │ └── SvnPluginHandler.java │ │ ├── model │ │ │ ├── CIEventCausesFactory.java │ │ │ ├── ModelFactory.java │ │ │ ├── SonarHelper.java │ │ │ └── processors │ │ │ │ ├── builders │ │ │ │ ├── AbstractBuilderProcessor.java │ │ │ │ ├── BuildTriggerProcessor.java │ │ │ │ ├── ConditionalBuilderProcessor.java │ │ │ │ ├── MultiJobBuilderProcessor.java │ │ │ │ ├── ParameterizedTriggerProcessor.java │ │ │ │ └── SingleConditionalBuilderProcessor.java │ │ │ │ ├── parameters │ │ │ │ ├── AbstractParametersProcessor.java │ │ │ │ ├── ActiveChoiceParameterProcessor.java │ │ │ │ ├── ExtendedChoiceParameterProcessor.java │ │ │ │ ├── InherentParameterProcessor.java │ │ │ │ ├── NodeLabelParameterProcessor.java │ │ │ │ ├── ParameterProcessors.java │ │ │ │ ├── RandomStringParameterProcessor.java │ │ │ │ └── UnsupportedParameterProcessor.java │ │ │ │ ├── projects │ │ │ │ ├── AbstractProjectProcessor.java │ │ │ │ ├── FreeStyleProjectProcessor.java │ │ │ │ ├── JobProcessorFactory.java │ │ │ │ ├── MatrixConfigurationProcessor.java │ │ │ │ ├── MatrixProjectProcessor.java │ │ │ │ ├── MavenProjectProcessor.java │ │ │ │ ├── MultiJobProjectProcessor.java │ │ │ │ ├── UnsupportedProjectProcessor.java │ │ │ │ └── WorkFlowJobProcessor.java │ │ │ │ └── scm │ │ │ │ ├── CommonOriginRevision.java │ │ │ │ ├── GenericSCMProcessor.java │ │ │ │ ├── GitSCMProcessor.java │ │ │ │ ├── SCMProcessor.java │ │ │ │ ├── SCMProcessors.java │ │ │ │ ├── SCMUtils.java │ │ │ │ ├── StarTeamSCMProcessor.java │ │ │ │ └── SvnSCMProcessor.java │ │ ├── octaneExecution │ │ │ └── ExecuteTestsInOctaneBuilder.java │ │ ├── pullrequests │ │ │ ├── PullRequestBuildAction.java │ │ │ └── PullRequestPublisher.java │ │ ├── testrunner │ │ │ ├── TestsToRunConverterBuilder.java │ │ │ ├── TestsToRunConverterModel.java │ │ │ └── VariableInjectionAction.java │ │ ├── tests │ │ │ ├── AbstractSafeLoggingAsyncPeriodWork.java │ │ │ ├── HPRunnerType.java │ │ │ ├── OctaneTestsExtension.java │ │ │ ├── TestApi.java │ │ │ ├── TestListener.java │ │ │ ├── TestProcessingException.java │ │ │ ├── TestResultContainer.java │ │ │ ├── build │ │ │ │ ├── BuildDescriptor.java │ │ │ │ ├── BuildHandlerExtension.java │ │ │ │ ├── BuildHandlerUtils.java │ │ │ │ ├── MatrixBuildExtension.java │ │ │ │ └── MavenBuildExtension.java │ │ │ ├── detection │ │ │ │ ├── MFToolsDetectionExtension.java │ │ │ │ ├── ResultFields.java │ │ │ │ ├── ResultFieldsDetectionExtension.java │ │ │ │ ├── ResultFieldsDetectionService.java │ │ │ │ └── TestNGExtension.java │ │ │ ├── gherkin │ │ │ │ └── GherkinTestExtension.java │ │ │ ├── impl │ │ │ │ └── ObjectStreamIterator.java │ │ │ ├── junit │ │ │ │ ├── AbstractMavenModuleDetection.java │ │ │ │ ├── JUnitExtension.java │ │ │ │ ├── JUnitTestResult.java │ │ │ │ ├── JUnitXmlIterator.java │ │ │ │ ├── MavenBuilderModuleDetection.java │ │ │ │ ├── MavenSetModuleDetection.java │ │ │ │ ├── ModuleDetection.java │ │ │ │ ├── TestError.java │ │ │ │ ├── TestResultStatus.java │ │ │ │ └── codeless │ │ │ │ │ ├── CodelessResult.java │ │ │ │ │ ├── CodelessResultParameter.java │ │ │ │ │ └── CodelessResultUnit.java │ │ │ └── xml │ │ │ │ ├── AbstractXmlIterator.java │ │ │ │ └── TestResultXmlWriter.java │ │ └── vulnerabilities │ │ │ ├── ScanResultQueue.java │ │ │ ├── VulnerabilitiesListener.java │ │ │ ├── VulnerabilitiesUtils.java │ │ │ └── VulnerabilitiesWorkflowListener.java │ │ ├── pc │ │ ├── PcClient.java │ │ ├── PcModel.java │ │ └── helper │ │ │ └── DateFormatter.java │ │ ├── pipelineSteps │ │ ├── LoadRunnerScriptStep.java │ │ ├── LoadRunnerTestStep.java │ │ ├── LrScenarioLoadStepExecution.java │ │ ├── SseBuildAndPublishStep.java │ │ ├── SseBuilderPublishResultStepExecution.java │ │ ├── SvChangeModeStep.java │ │ ├── SvDeployStep.java │ │ ├── SvExecution.java │ │ ├── SvExportStep.java │ │ ├── SvUndeployStep.java │ │ ├── UftScenarioLoadStep.java │ │ └── UftScenarioLoadStepExecution.java │ │ ├── rest │ │ └── RestClient.java │ │ ├── results │ │ ├── DetailReport.java │ │ ├── HtmlBuildReportAction.java │ │ ├── LrGraphUtils.java │ │ ├── PerformanceJobReportAction.java │ │ ├── PerformanceProjectAction.java │ │ ├── PerformanceReportAction.java │ │ ├── ReportMetaData.java │ │ ├── RichReportAction.java │ │ ├── RunResultRecorder.java │ │ ├── SlaRuleTypes.java │ │ ├── SummaryReport.java │ │ ├── TestResultToALMUploader.java │ │ ├── TransactionSummaryAction.java │ │ ├── lrscriptresultparser │ │ │ ├── LrScriptHtmlReport.java │ │ │ ├── LrScriptHtmlReportAction.java │ │ │ └── LrScriptResultsSanitizer.java │ │ ├── parser │ │ │ ├── ReportParseException.java │ │ │ ├── ReportParser.java │ │ │ ├── ReportParserManager.java │ │ │ ├── antjunit │ │ │ │ ├── AntJUnitReportParserImpl.java │ │ │ │ ├── Error.java │ │ │ │ ├── Failure.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Properties.java │ │ │ │ ├── Property.java │ │ │ │ ├── Testcase.java │ │ │ │ ├── Testsuite.java │ │ │ │ └── Testsuites.java │ │ │ ├── jenkinsjunit │ │ │ │ ├── JenkinsJUnitReportParserImpl.java │ │ │ │ ├── NewDataSet.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ └── Result.java │ │ │ ├── mavensurefire │ │ │ │ ├── Error.java │ │ │ │ ├── Failure.java │ │ │ │ ├── MavenSureFireReportParserImpl.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Properties.java │ │ │ │ ├── Property.java │ │ │ │ ├── Testcase.java │ │ │ │ └── Testsuite.java │ │ │ ├── nunit │ │ │ │ ├── CategoriesType.java │ │ │ │ ├── CategoryType.java │ │ │ │ ├── FailureType.java │ │ │ │ ├── NUnitReportParserImpl.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── ReasonType.java │ │ │ │ ├── ResultType.java │ │ │ │ ├── ResultsType.java │ │ │ │ ├── TestCaseType.java │ │ │ │ └── TestSuiteType.java │ │ │ ├── nunit3 │ │ │ │ └── NUnit3ReportParserImpl.java │ │ │ ├── testngxml │ │ │ │ ├── NewDataSet.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── TestNGXmlReportParserImpl.java │ │ │ │ └── TestngResults.java │ │ │ └── util │ │ │ │ ├── ParserUtil.java │ │ │ │ └── TimeUtil.java │ │ ├── projectparser │ │ │ ├── package-info.java │ │ │ └── performance │ │ │ │ ├── AvgTransactionResponseTime.java │ │ │ │ ├── GoalResult.java │ │ │ │ ├── JobLrScenarioResult.java │ │ │ │ ├── LrJobResults.java │ │ │ │ ├── LrProjectScenarioResults.java │ │ │ │ ├── LrRunResults.java │ │ │ │ ├── LrScenario.java │ │ │ │ ├── LrTest.java │ │ │ │ ├── PercentileTransactionWholeRun.java │ │ │ │ ├── ProjectLrResults.java │ │ │ │ ├── TimeRange.java │ │ │ │ ├── TimeRangeResult.java │ │ │ │ ├── WholeRunResult.java │ │ │ │ └── XmlParserUtil.java │ │ └── service │ │ │ ├── AlmRestException.java │ │ │ ├── AlmRestInfo.java │ │ │ ├── AlmRestTool.java │ │ │ ├── AttachmentUploadService.java │ │ │ ├── DefaultExternalEntityUploadServiceImpl.java │ │ │ ├── ExternalEntityUploadException.java │ │ │ ├── ExternalEntityUploadLogger.java │ │ │ ├── IExternalEntityUploadService.java │ │ │ ├── SystemOutLogger.java │ │ │ ├── almentities │ │ │ ├── AlmCommonProperties.java │ │ │ ├── AlmEntity.java │ │ │ ├── AlmEntityImpl.java │ │ │ ├── AlmRun.java │ │ │ ├── AlmRunImpl.java │ │ │ ├── AlmTest.java │ │ │ ├── AlmTestConfig.java │ │ │ ├── AlmTestConfigImpl.java │ │ │ ├── AlmTestFolder.java │ │ │ ├── AlmTestFolderImpl.java │ │ │ ├── AlmTestImpl.java │ │ │ ├── AlmTestInstance.java │ │ │ ├── AlmTestInstanceImpl.java │ │ │ ├── AlmTestSet.java │ │ │ ├── AlmTestSetFolder.java │ │ │ ├── AlmTestSetFolderImpl.java │ │ │ ├── AlmTestSetImpl.java │ │ │ ├── EntityRelation.java │ │ │ └── IAlmConsts.java │ │ │ └── rest │ │ │ ├── CreateAlmEntityRequest.java │ │ │ ├── CreateAttachment.java │ │ │ ├── GetAlmEntityRequest.java │ │ │ └── UpdateAlmEntityRequest.java │ │ ├── run │ │ ├── AdditionalParametersAction.java │ │ ├── AlmRunTypes.java │ │ ├── AutEnvironmentBuilder.java │ │ ├── JobConfigRebrander.java │ │ ├── LrScriptResultsParser.java │ │ ├── MigrateAlmCredentialsBuilder.java │ │ ├── PcBuilder.java │ │ ├── RunFromAlmBuilder.java │ │ ├── RunFromCodelessBuilder.java │ │ ├── RunFromFileBuilder.java │ │ ├── RunLoadRunnerScript.java │ │ ├── SonarOctaneListener.java │ │ ├── SseBuilder.java │ │ ├── SvChangeModeBuilder.java │ │ ├── SvDeployBuilder.java │ │ ├── SvExportBuilder.java │ │ ├── SvUndeployBuilder.java │ │ ├── UftOctaneUtils.java │ │ └── UploadAppBuilder.java │ │ ├── settings │ │ ├── AlmServerSettingsGlobalConfiguration.java │ │ ├── ConfigurationMigrationUtil.java │ │ ├── MCServerSettingsGlobalConfiguration.java │ │ ├── OctaneServerSettingsGlobalConfiguration.java │ │ ├── OutputEnvironmentVariablesBuildWrapper.java │ │ ├── RunnerMiscSettingsGlobalConfiguration.java │ │ ├── SvServerSettingsGlobalConfiguration.java │ │ └── UFTEncryptionGlobalConfiguration.java │ │ ├── sse │ │ ├── ArgsFactory.java │ │ ├── SSEBuilderPerformer.java │ │ ├── autenvironment │ │ │ ├── AUTEnvironmentBuilderPerformer.java │ │ │ ├── AUTEnvironmentFolder.java │ │ │ ├── AUTEnvironmentManager.java │ │ │ ├── AUTEnvironmentParametersManager.java │ │ │ ├── AUTEnvironmnentParameter.java │ │ │ └── request │ │ │ │ ├── AUTEnvironmentResources.java │ │ │ │ ├── get │ │ │ │ ├── GetAutEnvFoldersByIdRequest.java │ │ │ │ ├── GetAutEnvironmentByIdOldApiRequest.java │ │ │ │ ├── GetAutEnvironmentByIdRequest.java │ │ │ │ ├── GetAutEnvironmentConfigurationByIdRequest.java │ │ │ │ └── GetParametersByAutEnvConfIdRequest.java │ │ │ │ ├── post │ │ │ │ └── CreateAutEnvConfRequest.java │ │ │ │ └── put │ │ │ │ └── PutAutEnvironmentParametersBulkRequest.java │ │ ├── common │ │ │ ├── JsonHandler.java │ │ │ ├── JsonHandlerMasterToSlave.java │ │ │ ├── RestXmlUtils.java │ │ │ ├── StringUtils.java │ │ │ └── XPathUtils.java │ │ ├── result │ │ │ ├── JUnitParser.java │ │ │ ├── LabPublisher.java │ │ │ ├── PCPublisher.java │ │ │ ├── Publisher.java │ │ │ ├── PublisherFactory.java │ │ │ └── model │ │ │ │ └── junit │ │ │ │ ├── Error.java │ │ │ │ ├── Failure.java │ │ │ │ ├── JUnitTestCaseStatus.java │ │ │ │ ├── Properties.java │ │ │ │ ├── Property.java │ │ │ │ ├── Testcase.java │ │ │ │ ├── Testsuite.java │ │ │ │ └── Testsuites.java │ │ └── sdk │ │ │ ├── ALMRunReportUrlBuilder.java │ │ │ ├── Args.java │ │ │ ├── Base64Encoder.java │ │ │ ├── Client.java │ │ │ ├── ConsoleLogger.java │ │ │ ├── HttpRequestDecorator.java │ │ │ ├── Logger.java │ │ │ ├── PCRunResponse.java │ │ │ ├── ResourceAccessLevel.java │ │ │ ├── Response.java │ │ │ ├── RunManager.java │ │ │ ├── RunResponse.java │ │ │ ├── authenticator │ │ │ ├── ApiKeyAuthenticator.java │ │ │ ├── AuthenticationTool.java │ │ │ ├── Authenticator.java │ │ │ └── RestAuthenticator.java │ │ │ ├── handler │ │ │ ├── BvsRunHandler.java │ │ │ ├── EventLogHandler.java │ │ │ ├── Handler.java │ │ │ ├── LabPollHandler.java │ │ │ ├── PCPollHandler.java │ │ │ ├── PCRunHandler.java │ │ │ ├── PollHandler.java │ │ │ ├── PollHandlerFactory.java │ │ │ ├── RunHandler.java │ │ │ ├── RunHandlerFactory.java │ │ │ └── TestSetRunHandler.java │ │ │ └── request │ │ │ ├── CreateSiteSessionRequest.java │ │ │ ├── EventLogRequest.java │ │ │ ├── GeneralGetRequest.java │ │ │ ├── GeneralPostRequest.java │ │ │ ├── GeneralPutBulkRequest.java │ │ │ ├── GeneralRequest.java │ │ │ ├── GetALMVersionRequest.java │ │ │ ├── GetBvsRequest.java │ │ │ ├── GetBvsTestSetsRequest.java │ │ │ ├── GetLabRunEntityDataRequest.java │ │ │ ├── GetLabRunEntityTestSetRunsRequest.java │ │ │ ├── GetPCRunEntityDataRequest.java │ │ │ ├── GetPCRunEntityTestSetRunsRequest.java │ │ │ ├── GetRequest.java │ │ │ ├── GetRunEntityNameRequest.java │ │ │ ├── GetTestInstancesRequest.java │ │ │ ├── GetTestSetRequest.java │ │ │ ├── PollSSERunRequest.java │ │ │ ├── PostRequest.java │ │ │ ├── StartRunEntityRequest.java │ │ │ └── StopEntityRequest.java │ │ ├── sv │ │ ├── model │ │ │ └── AbstractSvRunModel.java │ │ ├── pipeline │ │ │ ├── AbstractSvStep.java │ │ │ └── AbstractSvStepDescriptor.java │ │ └── runner │ │ │ ├── AbstractSvRemoteRunner.java │ │ │ ├── AbstractSvRunBuilder.java │ │ │ ├── AbstractSvRunDescriptor.java │ │ │ └── ServiceInfo.java │ │ └── uft │ │ ├── model │ │ ├── FilterTestsModel.java │ │ ├── RerunSettingsModel.java │ │ ├── SpecifyParametersModel.java │ │ ├── UftRunAsUser.java │ │ └── UftSettingsModel.java │ │ └── utils │ │ ├── Constants.java │ │ ├── UftMasterToSlave.java │ │ └── UftToolUtils.java ├── resources │ ├── LR_SCRIPT_REPORT.css │ ├── META-INF │ │ └── hudson.remoting.ClassFilter │ ├── PDetails.xsl │ ├── com │ │ └── microfocus │ │ │ └── application │ │ │ └── automation │ │ │ └── tools │ │ │ ├── Messages.properties │ │ │ ├── common │ │ │ ├── Messages.properties │ │ │ ├── model │ │ │ │ └── VariableWrapper │ │ │ │ │ └── config.jelly │ │ │ └── run │ │ │ │ └── HealthAnalyzerBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help-products.html │ │ │ ├── commonResultUpload │ │ │ └── CommonResultUploadBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-almDomain.html │ │ │ │ ├── help-almPassword.html │ │ │ │ ├── help-almProject.html │ │ │ │ ├── help-almServerName.html │ │ │ │ ├── help-almTestFolder.html │ │ │ │ ├── help-almTestSetFolder.html │ │ │ │ ├── help-almUserName.html │ │ │ │ ├── help-clientType.html │ │ │ │ ├── help-createNewTest.html │ │ │ │ ├── help-fieldMapping.html │ │ │ │ ├── help-runStatusMapping.html │ │ │ │ ├── help-testingResultFile.html │ │ │ │ └── help-updateDesSteps.html │ │ │ ├── lr │ │ │ ├── Messages.properties │ │ │ ├── model │ │ │ │ ├── AdditionalAttributeModel │ │ │ │ │ ├── config.jelly │ │ │ │ │ └── config.properties │ │ │ │ ├── ScriptRTSModel │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── config.properties │ │ │ │ │ └── help-scriptName.html │ │ │ │ ├── ScriptRTSSetModel │ │ │ │ │ └── config.jelly │ │ │ │ └── SummaryDataLogModel │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── help-logErrorCount.html │ │ │ │ │ ├── help-logTransactionStatistics.html │ │ │ │ │ ├── help-logVusersStates.html │ │ │ │ │ └── help-pollingInterval.html │ │ │ └── run │ │ │ │ └── HealthAnalyzerLrStep │ │ │ │ ├── config.jelly │ │ │ │ └── config.properties │ │ │ ├── mc │ │ │ └── Messages.properties │ │ │ ├── model │ │ │ ├── AutEnvironmentModel │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-autEnvironmentId.html │ │ │ │ ├── help-clientType.html │ │ │ │ ├── help-outputParameter.html │ │ │ │ └── help-pathToJsonFile.html │ │ │ ├── AutEnvironmentParameterModel │ │ │ │ ├── config.jelly │ │ │ │ ├── help-name.html │ │ │ │ ├── help-paramType.html │ │ │ │ └── help-value.html │ │ │ ├── FileSystemTestModel │ │ │ │ ├── config.jelly │ │ │ │ └── help-tests.html │ │ │ ├── FileSystemTestSetModel │ │ │ │ ├── config.jelly │ │ │ │ └── help-fileSystemTestSet.html │ │ │ ├── ParallelRunnerEnvironmentModel │ │ │ │ ├── config.jelly │ │ │ │ └── help-environment.html │ │ │ ├── SvDataModelSelection │ │ │ │ └── config.jelly │ │ │ ├── SvPerformanceModelSelection │ │ │ │ └── config.jelly │ │ │ └── SvServiceSelectionModel │ │ │ │ └── config.jelly │ │ │ ├── nodes │ │ │ └── EncryptionNodeProperty │ │ │ │ ├── config.jelly │ │ │ │ └── help-publicKey.html │ │ │ ├── octane │ │ │ ├── Messages.properties │ │ │ ├── actions │ │ │ │ ├── CoveragePublisher │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── config.properties │ │ │ │ │ └── help.html │ │ │ │ ├── UFTActionDetectionBuildAction │ │ │ │ │ └── index.jelly │ │ │ │ ├── UFTTestDetectionBuildAction │ │ │ │ │ └── index.jelly │ │ │ │ ├── UFTTestDetectionPublisher │ │ │ │ │ ├── config.jelly │ │ │ │ │ └── help.html │ │ │ │ └── cucumber │ │ │ │ │ └── CucumberTestResultsActionPublisher │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── config.properties │ │ │ │ │ └── help.html │ │ │ ├── branches │ │ │ │ ├── BranchesBuildAction │ │ │ │ │ └── index.jelly │ │ │ │ └── BranchesPublisher │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── help-useSSHFormat.html │ │ │ │ │ └── help.html │ │ │ ├── configuration │ │ │ │ ├── ConfigurationAction │ │ │ │ │ ├── index.jelly │ │ │ │ │ └── index.properties │ │ │ │ └── ConfigurationActionMultibranch │ │ │ │ │ ├── index.jelly │ │ │ │ │ └── index.properties │ │ │ ├── octaneExecution │ │ │ │ └── ExecuteTestsInOctaneBuilder │ │ │ │ │ ├── config.jelly │ │ │ │ │ └── help.html │ │ │ ├── pullrequests │ │ │ │ ├── PullRequestBuildAction │ │ │ │ │ └── index.jelly │ │ │ │ └── PullRequestPublisher │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── help-useSSHFormat.html │ │ │ │ │ └── help.html │ │ │ └── testrunner │ │ │ │ └── TestsToRunConverterBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── help-format.html │ │ │ │ ├── help-framework.html │ │ │ │ └── help.html │ │ │ ├── pc │ │ │ └── Messages.properties │ │ │ ├── pipelineSteps │ │ │ ├── LoadRunnerScriptStep │ │ │ │ └── config.jelly │ │ │ ├── LoadRunnerTestStep │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-analysisTemplate.html │ │ │ │ ├── help-archiveTestResultsMode.html │ │ │ │ ├── help-controllerPollingInterval.html │ │ │ │ ├── help-displayController.html │ │ │ │ ├── help-fsTests.html │ │ │ │ ├── help-fsTimeout.html │ │ │ │ ├── help-ignoreErrorStrings.html │ │ │ │ └── help-perScenarioTimeOut.html │ │ │ ├── SseBuildAndPublishStep │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-archiveTestResultsMode.html │ │ │ │ ├── help-clientType.html │ │ │ │ └── help-environmentConfigurationId.html │ │ │ └── UftScenarioLoadStep │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-archiveTestResultsMode.html │ │ │ │ └── help-fsTests.html │ │ │ ├── results │ │ │ ├── DetailReport │ │ │ │ └── index.jelly │ │ │ ├── HtmlBuildReportAction │ │ │ │ └── index.jelly │ │ │ ├── PerformanceJobReportAction │ │ │ │ └── index.jelly │ │ │ ├── PerformanceProjectAction │ │ │ │ └── index.jelly │ │ │ ├── PerformanceReportAction │ │ │ │ └── index.jelly │ │ │ ├── RichReportAction │ │ │ │ └── index.jelly │ │ │ ├── RunResultRecorder │ │ │ │ ├── config.jelly │ │ │ │ └── help-archiveTestResultsMode.html │ │ │ ├── SummaryReport │ │ │ │ └── index.jelly │ │ │ ├── TestResultToALMUploader │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-almDomain.html │ │ │ │ ├── help-almPassword.html │ │ │ │ ├── help-almProject.html │ │ │ │ ├── help-almServerName.html │ │ │ │ ├── help-almTestFolder.html │ │ │ │ ├── help-almTestSetFolder.html │ │ │ │ ├── help-almTimeout.html │ │ │ │ ├── help-almUserName.html │ │ │ │ ├── help-clientType.html │ │ │ │ ├── help-jenkinsServerUrl.html │ │ │ │ ├── help-testingFramework.html │ │ │ │ ├── help-testingResultFile.html │ │ │ │ └── help-testingTool.html │ │ │ ├── TransactionSummaryAction │ │ │ │ └── index.jelly │ │ │ ├── lrscriptresultparser │ │ │ │ └── LrScriptHtmlReportAction │ │ │ │ │ └── index.jelly │ │ │ └── parser │ │ │ │ └── nunit3 │ │ │ │ └── nunit-to-junit.xsl │ │ │ ├── run │ │ │ ├── AutEnvironmentBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help-environmentConfigurationId.html │ │ │ ├── JobConfigRebrander │ │ │ │ └── JobConfigRebrander │ │ │ │ │ └── config.jelly │ │ │ ├── Messages.properties │ │ │ ├── PcBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-authenticateWithToken.html │ │ │ │ ├── help-credentialsId.html │ │ │ │ ├── help-pcServerName.html │ │ │ │ ├── help-proxyOutURL.html │ │ │ │ ├── help-statusBySLA.html │ │ │ │ ├── help-testInstanceId.html │ │ │ │ └── help-vudsMode.html │ │ │ ├── RunFromAlmBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-almCredentialsScope.html │ │ │ │ ├── help-almRunHost.html │ │ │ │ ├── help-almRunMode.html │ │ │ │ ├── help-almTestSets.html │ │ │ │ ├── help-almTimeout.html │ │ │ │ ├── help-filterTests.html │ │ │ │ └── help-isSSOEnabled.html │ │ │ ├── RunFromCodelessBuilder │ │ │ │ ├── config.jelly │ │ │ │ └── config.properties │ │ │ ├── RunFromFileBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-analysisTemplate.html │ │ │ │ ├── help-controllerPollingInterval.html │ │ │ │ ├── help-displayController.html │ │ │ │ ├── help-fsAppParamName.html │ │ │ │ ├── help-fsAppPath.html │ │ │ │ ├── help-fsPassword.html │ │ │ │ ├── help-fsProxyAddress.html │ │ │ │ ├── help-fsReportPath.html │ │ │ │ ├── help-fsTests.html │ │ │ │ ├── help-fsTimeout.html │ │ │ │ ├── help-fsUftExportPdf.html │ │ │ │ ├── help-fsUserName.html │ │ │ │ ├── help-ignoreErrorStrings.html │ │ │ │ ├── help-isParallelRunnerEnabled.html │ │ │ │ ├── help-mcServerName.html │ │ │ │ ├── help-outEncoding.html │ │ │ │ └── help-perScenarioTimeOut.html │ │ │ ├── RunFromSrfBuilder │ │ │ │ └── config.properties │ │ │ ├── RunLoadRunnerScript │ │ │ │ └── config.jelly │ │ │ ├── SonarOctaneListener │ │ │ │ ├── config.jelly │ │ │ │ ├── help-skipWebhookCreation.html │ │ │ │ └── help.html │ │ │ ├── SseBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-clientType.html │ │ │ │ └── help-environmentConfigurationId.html │ │ │ ├── SvChangeModeBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help-force.html │ │ │ ├── SvDeployBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-firstAgentFallback.html │ │ │ │ ├── help-force.html │ │ │ │ └── help-service.html │ │ │ ├── SvExportBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-archive.html │ │ │ │ ├── help-cleanTargetDirectory.html │ │ │ │ ├── help-force.html │ │ │ │ ├── help-switchToStandByFirst.html │ │ │ │ └── help-targetDirectory.html │ │ │ ├── SvUndeployBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-continueIfNotDeployed.html │ │ │ │ └── help-force.html │ │ │ └── UploadAppBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help-mcServerName.html │ │ │ ├── settings │ │ │ ├── AlmServerSettingsGlobalConfiguration │ │ │ │ ├── config.jelly │ │ │ │ ├── help-almServerName.html │ │ │ │ ├── help-almServerUrl.html │ │ │ │ └── help-almServerVersion.html │ │ │ ├── MCServerSettingsGlobalConfiguration │ │ │ │ ├── config.jelly │ │ │ │ ├── help-mcServerName.html │ │ │ │ └── help-mcServerUrl.html │ │ │ ├── OctaneServerSettingsGlobalConfiguration │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-identity.html │ │ │ │ ├── help-impersonatedUser.html │ │ │ │ ├── help-parameters.html │ │ │ │ ├── help-sscBaseToken.html │ │ │ │ ├── help-uiLocation.html │ │ │ │ ├── help-username.html │ │ │ │ └── help-workspace2ImpersonatedUserConf.html │ │ │ ├── OutputEnvironmentVariablesBuildWrapper │ │ │ │ ├── config.jelly │ │ │ │ └── help-outputEnvironmentParameters.html │ │ │ ├── RunnerMiscSettingsGlobalConfiguration │ │ │ │ ├── config.jelly │ │ │ │ ├── help-dateFormat.html │ │ │ │ ├── help-defaultBranches.html │ │ │ │ └── help-outputEnvironmentParameters.html │ │ │ ├── SvServerSettingsGlobalConfiguration │ │ │ │ └── config.jelly │ │ │ └── UFTEncryptionGlobalConfiguration │ │ │ │ └── config.jelly │ │ │ └── uft │ │ │ └── model │ │ │ ├── FilterTestsModel │ │ │ └── config.jelly │ │ │ ├── RerunSettingsModel │ │ │ └── config.jelly │ │ │ ├── SpecifyParametersModel │ │ │ ├── config.jelly │ │ │ └── help-__emptyForHelp.html │ │ │ └── UftSettingsModel │ │ │ ├── config.jelly │ │ │ ├── help-cleanupTest.html │ │ │ ├── help-fsTestType.html │ │ │ ├── help-numberOfReruns.html │ │ │ └── help-selectedNode.html │ ├── index.jelly │ └── lib │ │ ├── custom │ │ ├── customEntry.jelly │ │ ├── customOptionalBlock.jelly │ │ ├── customRepeatable.jelly │ │ ├── customRepeatableProperty.jelly │ │ └── taglib │ │ ├── healthanalyzer │ │ ├── customEntry.jelly │ │ ├── customOptionalBlock.jelly │ │ ├── optionalDropDownList.jelly │ │ ├── optionalRepeatableText.jelly │ │ └── taglib │ │ ├── hp-application-automation-tools │ │ ├── blockWrapperTableWidth.jelly │ │ ├── blockWrapperTableWidthId.jelly │ │ └── taglib │ │ ├── octane │ │ ├── configure.js │ │ ├── menu-button-arrow.png │ │ └── ui.css │ │ └── select2 │ │ ├── select2-min.css │ │ └── select2-min.js └── webapp │ ├── ParallelRunner │ └── icons │ │ ├── png │ │ ├── chrome.png │ │ ├── chrome@2x.png │ │ ├── chrome@3x.png │ │ ├── explorer.png │ │ ├── explorer@2x.png │ │ ├── explorer@3x.png │ │ ├── firefox.png │ │ ├── firefox@2x.png │ │ └── firefox@3x.png │ │ └── svg │ │ ├── chrome.svg │ │ ├── explorer.svg │ │ └── firefox.svg │ ├── PerformanceReport │ ├── LoadRunner.png │ └── VuGen.png │ ├── autEnvironment.js │ ├── configure.js │ ├── css │ ├── ColorPlate.css │ ├── alm.css │ ├── build_tasks.css │ ├── chartist-plugin-tooltip.css │ ├── chartist.css │ ├── chartistLegend.css │ ├── modal_dialog.css │ └── projectReport.css │ ├── icons │ ├── 16x16 │ │ ├── failed.png │ │ ├── html_report.png │ │ ├── info-blue.png │ │ ├── passed.png │ │ ├── rrv_report.png │ │ ├── stop.ico │ │ ├── stop.png │ │ └── warning.png │ ├── 24x24 │ │ ├── failed.png │ │ ├── html_report.png │ │ ├── passed.png │ │ ├── rrv_report.png │ │ ├── uft_report.png │ │ └── warning.png │ ├── report │ │ ├── html_report.svg │ │ └── parallel_html_report.svg │ └── uft_icons │ │ ├── copy_paste.png │ │ └── eraser.png │ ├── js │ ├── almUtils.js │ ├── dropdown.jsx │ ├── fileSystemUtils.js │ ├── jslib.js │ ├── libaries │ │ ├── chartist │ │ │ ├── chartist-plugin-axistitle.min.js │ │ │ ├── chartist-plugin-legend.js │ │ │ ├── chartist-plugin-pointlabels.js │ │ │ ├── chartist-plugin-tooltip.min.js │ │ │ ├── chartist.js │ │ │ └── chartist.min.js.old │ │ └── react │ │ │ ├── react-dom.js │ │ │ ├── react-dom.min.js │ │ │ └── react-with-addons.min.js │ └── specifyParametersUtils.js │ ├── parallelRunnerEnvironment.js │ └── scss │ ├── chartist.scss │ ├── chartistLegend.scss │ └── settings │ ├── _chartist-settings.scss │ ├── chartist-plugin-tooltip.css.map │ ├── chartist.css.map │ └── chartistLegend.css.map └── test ├── java └── com │ └── microfocus │ └── application │ └── automation │ └── tools │ ├── common │ ├── HealthAnalyzerCommonTest.java │ ├── OperatingSystemTest.java │ └── TestALMRESTVersionUtils.java │ ├── model │ ├── LoggedJenkinsRule.java │ └── SecretContainerTest.java │ ├── octane │ ├── EnumsTest.java │ ├── OctanePluginTestBase.java │ ├── OctaneServerMock.java │ ├── actions │ │ ├── Configuration.java │ │ ├── Utils.java │ │ ├── plugin │ │ │ └── PluginActionsTest.java │ │ └── project │ │ │ ├── CustomProject.java │ │ │ ├── PluginFreeStyleTest.java │ │ │ ├── PluginMatrixTest.java │ │ │ ├── PluginMavenTest.java │ │ │ └── PluginMultiJobTest.java │ ├── configuration │ │ ├── ConfigApiTest.java │ │ ├── ConfigurationActionFactoryTest.java │ │ ├── ConfigurationListenerTest.java │ │ └── ConfigurationServiceTest.java │ ├── detection │ │ └── ResultFieldsTest.java │ ├── events │ │ └── EventsTest.java │ ├── identity │ │ └── ServerIdentityTest.java │ ├── model │ │ └── WorkspaceJenkinsUserTest.java │ └── tests │ │ ├── CopyResourceSCM.java │ │ ├── ExtensionUtil.java │ │ ├── JUnitResultsTest.java │ │ ├── TestApiTest.java │ │ ├── TestCustomJUnitArchiver.java │ │ ├── TestJenkinsDurationTest.java │ │ ├── TestResultIterable.java │ │ ├── TestResultIterator.java │ │ ├── TestUtils.java │ │ ├── build │ │ └── BuildHandlerUtilsTest.java │ │ ├── detection │ │ ├── ResultFieldsDetectionTest.java │ │ ├── ResultFieldsTest.java │ │ ├── ResultFieldsXmlReader.java │ │ ├── TestNGExtensionTest.java │ │ └── UFTExtensionTest.java │ │ ├── gherkin │ │ └── GherkinResultsTest.java │ │ └── xml │ │ └── TestResultXmlWriterTest.java │ ├── pc │ ├── MockPcModel.java │ ├── MockPcRestProxy.java │ ├── MockPcRestProxyBadResponses.java │ ├── PcTestBase.java │ ├── TestPcClient.java │ └── TestPcClientNegativeScenrios.java │ ├── pipelineSteps │ └── LrScenarioLoadStepTest.java │ ├── results │ ├── RunResultRecorderTest.java │ ├── parser │ │ ├── AntTESTS-TestSuites.xml │ │ ├── MAVENTEST-com.demoapp.demo.AppTest.xml │ │ ├── NUnitReport.xml │ │ ├── TestAntJUnitReportParserImpl.java │ │ ├── TestJenkinsJunitReportParserImpl.java │ │ ├── TestMavenSureFireReportParserImpl.java │ │ ├── TestNUnitReportParserImpl.java │ │ ├── TestTestNGXmlReportParserImpl.java │ │ ├── junitResult.xml │ │ └── testng-results.xml │ └── service │ │ ├── NUnitReport.xml │ │ ├── TestDefaultExternalEntityUploadServiceImpl.java │ │ ├── junitResult.xml │ │ └── testng-results.xml │ └── sse │ ├── common │ ├── ConsoleLogger.java │ ├── RestClient4Test.java │ └── TestCase.java │ ├── result │ └── TestPublisher.java │ └── sdk │ ├── MockRestClientBadDomain.java │ ├── MockRestClientBadRunEntity.java │ ├── MockRestClientBadRunResponse.java │ ├── MockRestClientFailedLogin.java │ ├── MockRestClientFunctional.java │ ├── MockRestClientPC.java │ ├── MockSseModel.java │ ├── TestBvsRunHandler.java │ ├── TestEventLogHandler.java │ ├── TestPCRunHandler.java │ ├── TestPollHandler.java │ ├── TestPostRequest.java │ ├── TestRestAuthenticator.java │ ├── TestRestClient.java │ ├── TestRunHandlerFactory.java │ ├── TestRunManager.java │ ├── TestRunManagerSystemTests.java │ ├── TestTestSetRunHandler.java │ └── TestTestSetRunHandlerGetReportUrl.java ├── resources ├── UFT │ └── UFT_results.xml ├── com │ └── microfocus │ │ └── application │ │ └── automation │ │ └── tools │ │ ├── pc │ │ └── Reports.zip │ │ └── results │ │ ├── RunReport.xml │ │ └── RunReport_sc5.xml ├── helloCucumberWorld │ ├── pom.xml │ ├── settings.xml │ └── src │ │ └── test │ │ ├── java │ │ ├── MyStepdefs.java │ │ └── RunnerTest.java │ │ └── resources │ │ ├── My amazing feature_4002.feature │ │ └── my-fancy-feature.feature ├── helloWorldFailsafe │ ├── pom.xml │ ├── settings.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── hello │ │ │ └── HelloWorld.java │ │ └── test │ │ └── java │ │ └── hello │ │ └── ITHelloWorld.java ├── helloWorldRoot │ ├── helloWorld │ │ ├── pom.xml │ │ ├── settings.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── hello │ │ │ │ └── HelloWorld.java │ │ │ └── test │ │ │ └── java │ │ │ └── hello │ │ │ └── HelloWorldTest.java │ ├── helloWorld2 │ │ ├── pom.xml │ │ ├── settings.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── hello │ │ │ │ └── HelloWorld2.java │ │ │ └── test │ │ │ └── java │ │ │ └── hello │ │ │ └── HelloWorld2Test.java │ ├── pom.xml │ └── settings.xml └── helloWorldTestNGRoot │ ├── helloWorld │ ├── pom.xml │ ├── settings.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── hello │ │ │ └── HelloWorld.java │ │ └── test │ │ └── java │ │ └── hello │ │ └── HelloWorldTest.java │ ├── helloWorld2 │ ├── pom.xml │ ├── settings.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── hello │ │ │ └── HelloWorld2.java │ │ └── test │ │ └── java │ │ └── hello │ │ └── HelloWorld2Test.java │ ├── pom.xml │ └── settings.xml └── setup-testing-server-port.sh /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | Please Make sure these boxes are checked before submitting your pull request - Thanks ahead! 3 | 4 | - [ ] Proper pull request title - concise and clear for others. 5 | - [ ] Proper pull request short description - clear and concise (as it should appear in the Jira ticket) for other developers and users. 6 | - [ ] Proper Jira ticket - Number, Link in pull request description. 7 | - [ ] The PR can is merged on your machine without any conflicts. 8 | - [ ] The PR can is built on your machine without any (new) warnings. 9 | - [ ] The PR passed sanity tests by you / QA / DevTest / Good Samaritan. 10 | - [ ] Add unit tests with new features. 11 | - [ ] If you added any dependency to the POM - Please update grount 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #OS junk files 2 | [Tt]humbs.db 3 | *.DS_Store 4 | 5 | #Visual Studio files 6 | *.[Oo]bj 7 | *.user 8 | *.aps 9 | *.pch 10 | *.vspscc 11 | *.vssscc 12 | *_i.c 13 | *_p.c 14 | *.ncb 15 | *.suo 16 | *.tlb 17 | *.tlh 18 | *.bak 19 | *.[Cc]ache 20 | *.ilk 21 | *.log 22 | *.lib 23 | *.sbr 24 | *.sdf 25 | *.opensdf 26 | *.unsuccessfulbuild 27 | ipch/ 28 | obj/ 29 | [Bb]in 30 | [Dd]ebug*/ 31 | [Rr]elease*/ 32 | Ankh.NoLoad 33 | 34 | #MonoDevelop 35 | *.pidb 36 | *.userprefs 37 | 38 | #Tooling 39 | _ReSharper*/ 40 | *.resharper 41 | *.sass-cache 42 | 43 | #Project files 44 | 45 | #Subversion files 46 | .svn 47 | 48 | # Office Temp Files 49 | ~$* 50 | 51 | #NuGet 52 | packages/ 53 | 54 | #ncrunch 55 | *ncrunch* 56 | 57 | #Eclipse files 58 | *.pydevproject 59 | .project 60 | .metadata 61 | bin/** 62 | tmp/** 63 | tmp/**/* 64 | *.tmp 65 | *.bak 66 | *.swp 67 | *~.nib 68 | local.properties 69 | .classpath 70 | .settings/ 71 | .loadpath 72 | 73 | 74 | #Intellij files 75 | .idea/ 76 | hp-application-automation-tools-plugin.iml 77 | *.iml 78 | 79 | #Visual studio 14 files 80 | HpToolsLauncher/.vs/ 81 | HpToolsLauncher/Service References/ 82 | 83 | #Binaries 84 | src/main/resources/HpToolsAborter.exe.config 85 | src/main/resources/HpToolsAborter.exe 86 | src/main/resources/HpToolsAborter.pdb 87 | src/main/resources/HpToolsLauncher.exe.config 88 | src/main/resources/HpToolsLauncher.exe 89 | src/main/resources/HpToolsLauncher.pdb 90 | src/main/resources/HpToolsLauncher.vshost.exe 91 | src/main/resources/HpToolsLauncher.vshost.exe.config 92 | src/main/resources/LRAnalysisLauncher.exe.config 93 | src/main/resources/LRAnalysisLauncher.pdb 94 | src/main/resources/LRAnalysisLauncher.exe 95 | 96 | 97 | # External tool builders 98 | .externalToolBuilders/ 99 | 100 | # Locally stored "Eclipse launch configurations" 101 | *.launch 102 | 103 | # CDT-specific 104 | .cproject 105 | 106 | # PDT-specific 107 | .buildpath 108 | 109 | 110 | # Intellij specific 111 | .iml 112 | target/ 113 | 114 | # java script 115 | node/ 116 | node_modules 117 | /hp-application-automation-tools-plugin.iml 118 | /node/ 119 | /node_modules/ 120 | .sonarlint/ 121 | 122 | # jenkins instance folder generated by mvn run:hpi 123 | work 124 | work1 125 | nga/ 126 | **/resources/**/*Gherkin*.xml 127 | -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- 1 | -Pconsume-incrementals 2 | -Pmight-produce-incrementals 3 | -------------------------------------------------------------------------------- /HpToolsAborter/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /HpToolsLauncher/HpToolsLauncher.csproj.DotSettings: -------------------------------------------------------------------------------- 1 |  2 | CSharp50 -------------------------------------------------------------------------------- /HpToolsLauncher/Interfaces/IXmlBuilder.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | namespace HpToolsLauncher 38 | { 39 | public interface IXmlBuilder 40 | { 41 | string XmlName { get; set; } 42 | void CreateXmlFromRunResults(TestSuiteRunResults results); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /HpToolsLauncher/Local.testsettings: -------------------------------------------------------------------------------- 1 |  2 | 3 | These are default test settings for a local test run. 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /HpToolsLauncher/TraceAndTestImpact.testsettings: -------------------------------------------------------------------------------- 1 |  2 | 3 | These are test settings for Trace and Test Impact. 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /HpToolsLauncher/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /HpToolsLauncher/externals/Analysis.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/Analysis.Api.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/Analysis.ApiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/Analysis.ApiLib.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/Analysis.ApiSL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/Analysis.ApiSL.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/Interop.TDAPIOLELib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/Interop.TDAPIOLELib.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/Interop.Wlrun.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/Interop.Wlrun.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/QTObjectModelLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/QTObjectModelLib.dll -------------------------------------------------------------------------------- /HpToolsLauncher/externals/interop.OTAClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/HpToolsLauncher/externals/interop.OTAClient.dll -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | if (env.JENKINS_URL == 'https://ci.jenkins.io/') { 2 | // Builds the plugin using https://github.com/jenkins-infra/pipeline-library 3 | buildPlugin(jdkVersions: [21],platforms: ['windows']) 4 | } 5 | else { 6 | // Do internal build 7 | } 8 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Certain versions of software accessible here may contain branding from 2 | Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 3 | This software was acquired by Micro Focus on September 1, 2017, and is now 4 | offered by OpenText. 5 | Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 6 | in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 7 | property of their respective owners. 8 | OpenText is a trademark of Open Text. 9 | __________________________________________________________________ 10 | MIT License 11 | 12 | Copyright 2012-${copyright.end.year} Open Text. 13 | 14 | The only warranties for products and services of Open Text and 15 | its affiliates and licensors ("Open Text") are as may be set forth 16 | in the express warranty statements accompanying such products and services. 17 | Nothing herein should be construed as constituting an additional warranty. 18 | Open Text shall not be liable for technical or editorial errors or 19 | omissions contained herein. The information contained herein is subject 20 | to change without notice. 21 | 22 | Except as specifically indicated otherwise, this document contains 23 | confidential information and a valid license is required for possession, 24 | use or copying. If this work is provided to the U.S. Government, 25 | consistent with FAR 12.211 and 12.212, Commercial Computer Software, 26 | Computer Software Documentation, and Technical Data for Commercial Items are 27 | licensed to the U.S. Government under vendor's standard commercial license. 28 | 29 | Unless required by applicable law or agreed to in writing, software 30 | distributed under the License is distributed on an "AS IS" BASIS, 31 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 32 | See the License for the specific language governing permissions and 33 | limitations under the License. 34 | ___________________________________________________________________ -------------------------------------------------------------------------------- /LRAnalysisLauncher/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /doc/Jenkins_slave_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/doc/Jenkins_slave_account.png -------------------------------------------------------------------------------- /doc/Jenkins_slave_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/doc/Jenkins_slave_setup.png -------------------------------------------------------------------------------- /sonarlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "serverId": "local", 3 | "projectKey": "org.jenkins-ci.plugins:hp-application-automation-tools-plugin" 4 | } -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/common/Func.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package com.microfocus.application.automation.tools.common; 38 | 39 | public interface Func { 40 | 41 | public TResult execute(); 42 | } 43 | -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/commonResultUpload/uploader/StepBean.java: -------------------------------------------------------------------------------- 1 | package com.microfocus.application.automation.tools.commonResultUpload.uploader; 2 | 3 | public class StepBean { 4 | private String stepName; 5 | private String status; 6 | private String actualValue; 7 | private int order; 8 | 9 | public int getOrder() { 10 | return order; 11 | } 12 | 13 | public void setOrder(int order) { 14 | this.order = order; 15 | } 16 | public String getStepName() { 17 | return stepName; 18 | } 19 | 20 | public void setStepName(String stepName) { 21 | this.stepName = stepName; 22 | } 23 | 24 | public String getStatus() { 25 | return status; 26 | } 27 | 28 | public void setStatus(String status) { 29 | this.status = status; 30 | } 31 | 32 | public String getActualValue() { 33 | return actualValue; 34 | } 35 | 36 | public void setActualValue(String actualValue) { 37 | this.actualValue = actualValue; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/model/SecretContainer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package com.microfocus.application.automation.tools.model; 38 | 39 | public interface SecretContainer { 40 | 41 | void initialize(String secret); 42 | } 43 | -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/results/projectparser/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | /** 38 | * Created by kazaky on 07/07/2016. 39 | */ 40 | package com.microfocus.application.automation.tools.results.projectparser; -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/results/service/almentities/AlmTestConfig.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package com.microfocus.application.automation.tools.results.service.almentities; 38 | 39 | public interface AlmTestConfig extends AlmEntity { 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/results/service/almentities/AlmTestFolder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package com.microfocus.application.automation.tools.results.service.almentities; 38 | 39 | public interface AlmTestFolder extends AlmEntity { 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/results/service/almentities/AlmTestSetFolder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package com.microfocus.application.automation.tools.results.service.almentities; 38 | 39 | public interface AlmTestSetFolder extends AlmEntity { 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/microfocus/application/automation/tools/run/AlmRunTypes.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package com.microfocus.application.automation.tools.run; 38 | public class AlmRunTypes { 39 | 40 | public enum RunType { 41 | Alm, FileSystem, LoadRunner 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/common/run/HealthAnalyzerBuilder/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | addCaption=Add new product 39 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/commonResultUpload/CommonResultUploadBuilder/help-almDomain.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The Domain of the project to be used. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/commonResultUpload/CommonResultUploadBuilder/help-almPassword.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The password for the user to login. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/commonResultUpload/CommonResultUploadBuilder/help-almProject.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The project to be used. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/commonResultUpload/CommonResultUploadBuilder/help-almServerName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The name of the ALM Server. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/commonResultUpload/CommonResultUploadBuilder/help-almUserName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The user name to login. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/commonResultUpload/CommonResultUploadBuilder/help-clientType.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Client type is required for some ALM above 12.60 in authentication. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/Messages.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | ProductName=LoadRunner 39 | SummaryDataLogModel=Summary Data Log Model 40 | ScriptRTSSetModel=Script RTS Set Model 41 | ScriptRTSModel=Script RTS Model 42 | AdditionalAttributeModel=Additional Attribute Model -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/model/AdditionalAttributeModel/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | Name=Name 39 | Value=Value 40 | Description=Description (Optional) -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/model/ScriptRTSModel/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | ScriptName=Script Name 39 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/model/SummaryDataLogModel/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | PollingInterval=Polling Interval 39 | LogVusersStates=Log Vusers States 40 | LogErrorCount=Log Error Count 41 | LogTransactionStatistics=Log Transaction Statistics -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/model/SummaryDataLogModel/help-logErrorCount.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Display the number of controller errors. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/model/SummaryDataLogModel/help-logVusersStates.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Display the number of virtual users in each state. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/model/SummaryDataLogModel/help-pollingInterval.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The rate at which the messages are displayed (in seconds). Default value is 10 seconds. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/lr/run/HealthAnalyzerLrStep/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | checkIfLrInstalled=Check if LoadRunner is installed 39 | checkIfSlaveIsWindows=Check if the slave is a Windows machine 40 | checkIfScenarioFilesExist=Check if scenario files exist -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/mc/Messages.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | ProductName=Functional Testing Lab 39 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/model/AutEnvironmentModel/help-autEnvironmentId.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Assign ID of an AUT Environment that exists in the ALM project you selected. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/model/AutEnvironmentModel/help-clientType.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Client type should be provided if your server is ALM version 12.60 or above. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/model/FileSystemTestSetModel/help-fileSystemTestSet.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | File system test set help. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/model/ParallelRunnerEnvironmentModel/help-environment.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Environment help string. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/octane/configuration/ConfigurationAction/index.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | mqm.configuration.title=Software Delivery Management Pipelines -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/octane/configuration/ConfigurationActionMultibranch/index.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | mqm.configuration.multibranch.title=Software Delivery Management Pipelines -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/octane/testrunner/TestsToRunConverterBuilder/help-framework.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Select the testing framework whose format you want to convert to. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/pipelineSteps/LoadRunnerTestStep/help-displayController.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Display the controller while the scenario is running. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/pipelineSteps/LoadRunnerTestStep/help-fsTimeout.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Timeout value in seconds. If left empty, there is no timeout. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/pipelineSteps/LoadRunnerTestStep/help-perScenarioTimeOut.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The maximum time allotted for scenario execution, in minutes. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/pipelineSteps/SseBuildAndPublishStep/help-clientType.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Client type is required for some ALM above 12.60 in authentication. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | AlmServersAreNotDefined=ALM servers are not defined. To use this build step, goto Manage Jenkins->Configure System->OpenText\u2122 Application Quality Management->Add ALM server -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-almDomain.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The Domain of the project to be used. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-almPassword.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The password for the user to login. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-almProject.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The project to be used. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-almServerName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The name of the ALM Server. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-almTimeout.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Number of seconds before timeout. If left empty timeout is unlimited. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-almUserName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The user name to login. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-clientType.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Client type is required for some ALM above 12.60 in authentication. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-jenkinsServerUrl.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The HTTP URL of the Jenkins Server, form example, http://myjenkinsserver.test.com:8080 . 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-testingFramework.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The testing framework that is used when generate the testing result file. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/results/TestResultToALMUploader/help-testingTool.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The testing tool that is used when generate the testing result file. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/PcBuilder/help-credentialsId.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | User / Token's Credentials or parameter pointing to such credentials. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromAlmBuilder/help-almTimeout.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Number of seconds before timeout. If left empty timeout is unlimited. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromAlmBuilder/help-isSSOEnabled.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Obtain the Client ID and API key secret from your ALM site administrator. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-controllerPollingInterval.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Polling interval for checking the scenario status, in seconds. The default is 30 seconds. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-displayController.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Display the controller while the scenario is running. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-fsAppParamName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The parameter name of object identifier, as defined in the UFT script. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-fsAppPath.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The path of the application to upload to Functional Testing Lab, on the Jenkins master machine. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-fsPassword.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The password for Functional Testing Lab. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-fsProxyAddress.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Example: 16.54.185.180:8080 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-fsTimeout.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Timeout value in seconds. If left empty, there is no timeout. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-fsUserName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The user name for Functional Testing Lab. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromFileBuilder/help-perScenarioTimeOut.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The maximum time allotted for scenario execution, in minutes. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/RunFromSrfBuilder/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | DontForgetThePublisher= -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SseBuilder/help-clientType.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Client type is required for some ALM above 12.60 in authentication. 41 |
-------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvChangeModeBuilder/help-force.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | If set, service will be modified regardless it is locked by another user. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvDeployBuilder/help-force.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | If set, service will be redeployed regardless it is locked by another user. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvDeployBuilder/help-service.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Name or ID of service to be deployed. All services from project are deployed if no service is specified. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvExportBuilder/help-archive.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | If set, Export service(s) as project archive(s) (.vproja). 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvExportBuilder/help-force.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | If set, service will be modified regardless it is locked by another user. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvExportBuilder/help-switchToStandByFirst.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Switch service to Stand-By mode to finish current learning before exporting learned data. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvExportBuilder/help-targetDirectory.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Directory where exported services will be written. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvUndeployBuilder/help-continueIfNotDeployed.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Don't fail if any service marked to be undeployed is not deployed on server. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/SvUndeployBuilder/help-force.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | If set, service will be undeployed regardless it is locked by another user. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/run/UploadAppBuilder/config.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Certain versions of software accessible here may contain branding from 3 | # Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | # This software was acquired by Micro Focus on September 1, 2017, and is now 5 | # offered by OpenText. 6 | # Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | # in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | # property of their respective owners. 9 | # OpenText is a trademark of Open Text. 10 | # __________________________________________________________________ 11 | # MIT License 12 | # 13 | # Copyright 2012-2025 Open Text. 14 | # 15 | # The only warranties for products and services of Open Text and 16 | # its affiliates and licensors ("Open Text") are as may be set forth 17 | # in the express warranty statements accompanying such products and services. 18 | # Nothing herein should be construed as constituting an additional warranty. 19 | # Open Text shall not be liable for technical or editorial errors or 20 | # omissions contained herein. The information contained herein is subject 21 | # to change without notice. 22 | # 23 | # Except as specifically indicated otherwise, this document contains 24 | # confidential information and a valid license is required for possession, 25 | # use or copying. If this work is provided to the U.S. Government, 26 | # consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | # Computer Software Documentation, and Technical Data for Commercial Items are 28 | # licensed to the U.S. Government under vendor's standard commercial license. 29 | # 30 | # Unless required by applicable law or agreed to in writing, software 31 | # distributed under the License is distributed on an "AS IS" BASIS, 32 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | # See the License for the specific language governing permissions and 34 | # limitations under the License. 35 | # ___________________________________________________________________ 36 | # 37 | 38 | McServersAreNotDefined=Functional Testing Lab servers are not defined. To use this build step, goto Manage Jenkins->Configure System->Functional Testing Lab->Add Functional Testing Lab server -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/settings/AlmServerSettingsGlobalConfiguration/help-almServerName.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The name of the ALM Server. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/settings/AlmServerSettingsGlobalConfiguration/help-almServerUrl.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The name of the URL of the ALM Server: http://myalmserver:8080/qcbin 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/settings/AlmServerSettingsGlobalConfiguration/help-almServerVersion.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | The version of the ALM server:10.0, 11.0, 11.5 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/uft/model/UftSettingsModel/help-cleanupTest.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Test executed before the re-run process of the failed tests. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/uft/model/UftSettingsModel/help-numberOfReruns.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Defines the maximum amount of test set reruns. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/com/microfocus/application/automation/tools/uft/model/UftSettingsModel/help-selectedNode.html: -------------------------------------------------------------------------------- 1 | 39 |
40 | Please select the corresponding slave machine setup in the main job configuration. 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/lib/custom/taglib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/resources/lib/custom/taglib -------------------------------------------------------------------------------- /src/main/resources/lib/healthanalyzer/taglib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/resources/lib/healthanalyzer/taglib -------------------------------------------------------------------------------- /src/main/resources/lib/hp-application-automation-tools/taglib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/resources/lib/hp-application-automation-tools/taglib -------------------------------------------------------------------------------- /src/main/resources/lib/octane/menu-button-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/resources/lib/octane/menu-button-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/chrome.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/chrome@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/chrome@2x.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/chrome@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/chrome@3x.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/explorer.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/explorer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/explorer@2x.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/explorer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/explorer@3x.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/firefox.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/firefox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/firefox@2x.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/png/firefox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/ParallelRunner/icons/png/firefox@3x.png -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/svg/chrome.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/svg/explorer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/ParallelRunner/icons/svg/firefox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/PerformanceReport/LoadRunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/PerformanceReport/LoadRunner.png -------------------------------------------------------------------------------- /src/main/webapp/PerformanceReport/VuGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/PerformanceReport/VuGen.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/failed.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/html_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/html_report.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/info-blue.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/passed.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/rrv_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/rrv_report.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/stop.ico -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/stop.png -------------------------------------------------------------------------------- /src/main/webapp/icons/16x16/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/16x16/warning.png -------------------------------------------------------------------------------- /src/main/webapp/icons/24x24/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/24x24/failed.png -------------------------------------------------------------------------------- /src/main/webapp/icons/24x24/html_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/24x24/html_report.png -------------------------------------------------------------------------------- /src/main/webapp/icons/24x24/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/24x24/passed.png -------------------------------------------------------------------------------- /src/main/webapp/icons/24x24/rrv_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/24x24/rrv_report.png -------------------------------------------------------------------------------- /src/main/webapp/icons/24x24/uft_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/24x24/uft_report.png -------------------------------------------------------------------------------- /src/main/webapp/icons/24x24/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/24x24/warning.png -------------------------------------------------------------------------------- /src/main/webapp/icons/report/html_report.svg: -------------------------------------------------------------------------------- 1 | Artboard 8 -------------------------------------------------------------------------------- /src/main/webapp/icons/report/parallel_html_report.svg: -------------------------------------------------------------------------------- 1 | Artboard 7 -------------------------------------------------------------------------------- /src/main/webapp/icons/uft_icons/copy_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/uft_icons/copy_paste.png -------------------------------------------------------------------------------- /src/main/webapp/icons/uft_icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/main/webapp/icons/uft_icons/eraser.png -------------------------------------------------------------------------------- /src/main/webapp/scss/settings/chartist-plugin-tooltip.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAEA,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,IAAI;EACb,UAAU,EARO,OAAO;EASxB,KAAK,EARe,OAAO;EAS3B,WAAW,EAAE,iCAAiC;EAC9C,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;EACpB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,kBAAkB;EACtC,eAAe,EAAE,kBAAkB;EACnC,aAAa,EAAE,kBAAkB;EACjC,UAAU,EAAE,kBAAkB;EAC9B,wBAAS;IACP,OAAO,EAAE,EAAE;IACX,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,IAAI;IACT,IAAI,EAAE,GAAG;IACT,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;IACT,WAAW,EAAE,KAAK;IAClB,MAAM,EAAE,sBAAsB;IAC9B,gBAAgB,EA5BD,OAAO;EA8BxB,8BAAe;IACb,OAAO,EAAE,CAAC;;AAId,kBAAmB;EACjB,cAAc,EAAE,IAAI", 4 | "sources": ["../scss/chartist-plugin-tooltip.scss"], 5 | "names": [], 6 | "file": "chartist-plugin-tooltip.css" 7 | } 8 | -------------------------------------------------------------------------------- /src/main/webapp/scss/settings/chartistLegend.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AACA,UAAW;EACP,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,EAAE;;AAEX,aAAG;EACC,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,GAAG;;AAGtB,oBAAU;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,OAAO,EAAE,EAAE;EACX,MAAM,EAAE,qBAAqB;EAC7B,aAAa,EAAE,GAAG;;AAGtB,6BAAmB;EACf,UAAU,EAAE,WAAW;;AAG3B,2BAAmB;EACf,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,CAAC;;AAIR,8BAAwB;EACpB,gBAAgB,ECoC1B,OAAO;EDnCG,YAAY,ECmCtB,OAAO;;ADrCD,8BAAwB;EACpB,gBAAgB,ECqC1B,OAAO;EDpCG,YAAY,ECoCtB,OAAO;;ADtCD,8BAAwB;EACpB,gBAAgB,ECsC1B,OAAO;EDrCG,YAAY,ECqCtB,OAAO;;ADvCD,8BAAwB;EACpB,gBAAgB,ECuC1B,OAAO;EDtCG,YAAY,ECsCtB,OAAO;;ADxCD,8BAAwB;EACpB,gBAAgB,ECwC1B,OAAO;EDvCG,YAAY,ECuCtB,OAAO;;ADzCD,8BAAwB;EACpB,gBAAgB,ECyC1B,OAAO;EDxCG,YAAY,ECwCtB,OAAO;;AD1CD,8BAAwB;EACpB,gBAAgB,EC0C1B,OAAO;EDzCG,YAAY,ECyCtB,OAAO;;AD3CD,8BAAwB;EACpB,gBAAgB,EC2C1B,OAAO;ED1CG,YAAY,EC0CtB,OAAO;;AD5CD,8BAAwB;EACpB,gBAAgB,EC4C1B,OAAO;ED3CG,YAAY,EC2CtB,OAAO;;AD7CD,8BAAwB;EACpB,gBAAgB,EC6C1B,OAAO;ED5CG,YAAY,EC4CtB,OAAO;;AD9CD,+BAAwB;EACpB,gBAAgB,EC8C1B,OAAO;ED7CG,YAAY,EC6CtB,OAAO;;AD/CD,+BAAwB;EACpB,gBAAgB,EC+C1B,OAAO;ED9CG,YAAY,EC8CtB,OAAO;;ADhDD,+BAAwB;EACpB,gBAAgB,ECgD1B,OAAO;ED/CG,YAAY,EC+CtB,OAAO;;ADjDD,+BAAwB;EACpB,gBAAgB,ECiD1B,OAAO;EDhDG,YAAY,ECgDtB,OAAO;;ADlDD,+BAAwB;EACpB,gBAAgB,ECkD1B,OAAO;EDjDG,YAAY,ECiDtB,OAAO", 4 | "sources": ["../../../src/main/webapp/scss/chartistLegend.scss","../../../src/main/webapp/scss/settings/_chartist-settings.scss"], 5 | "names": [], 6 | "file": "chartistLegend.css" 7 | } -------------------------------------------------------------------------------- /src/test/resources/com/microfocus/application/automation/tools/pc/Reports.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/hpe-application-automation-tools-plugin/ed9f673abb65a9b2ea829135289538affe912ca3/src/test/resources/com/microfocus/application/automation/tools/pc/Reports.zip -------------------------------------------------------------------------------- /src/test/resources/helloCucumberWorld/src/test/resources/My amazing feature_4002.feature: -------------------------------------------------------------------------------- 1 | #Auto generated NGA revision tag 2 | @TID4002REV0.2.0 3 | Feature: My Amazing Feature 4 | 5 | Scenario: Amazing scenario 6 | Given user is logged in 7 | When she looks at this feature 8 | Then she is amazed! 9 | -------------------------------------------------------------------------------- /src/test/resources/helloCucumberWorld/src/test/resources/my-fancy-feature.feature: -------------------------------------------------------------------------------- 1 | Feature: My Fancy Feature 2 | Scenario: Fancy button opens the fancy dialog 3 | Given user is logged in 4 | And she is in the fancy module 5 | When she clicks the fancy button 6 | Then the facny dialog pops up 7 | 8 | Scenario: Fancy dialog is fancy 9 | Given user is logged in 10 | And the fancy dialog is opened 11 | When she looks at it 12 | Then it looks fancy -------------------------------------------------------------------------------- /src/test/resources/helloWorldFailsafe/src/main/java/hello/HelloWorld.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package hello; 38 | 39 | public class HelloWorld { 40 | 41 | public static void main(String[] args) { 42 | System.out.println("Hello World!"); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/test/resources/helloWorldRoot/helloWorld/src/main/java/hello/HelloWorld.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package hello; 38 | 39 | public class HelloWorld { 40 | 41 | public static void main(String[] args) { 42 | System.out.println("Hello World!"); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/test/resources/helloWorldRoot/helloWorld2/src/main/java/hello/HelloWorld2.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package hello; 38 | 39 | public class HelloWorld2 { 40 | 41 | public static void main(String[] args) { 42 | System.out.println("Hello World 2!"); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/test/resources/helloWorldTestNGRoot/helloWorld/src/main/java/hello/HelloWorld.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package hello; 38 | 39 | public class HelloWorld { 40 | 41 | public static void main(String[] args) { 42 | System.out.println("Hello World!"); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/test/resources/helloWorldTestNGRoot/helloWorld2/src/main/java/hello/HelloWorld2.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Certain versions of software accessible here may contain branding from 3 | * Hewlett-Packard Company (now HP Inc.) and Hewlett Packard Enterprise Company. 4 | * This software was acquired by Micro Focus on September 1, 2017, and is now 5 | * offered by OpenText. 6 | * Any reference to the HP and Hewlett Packard Enterprise/HPE marks is historical 7 | * in nature, and the HP and Hewlett Packard Enterprise/HPE marks are the 8 | * property of their respective owners. 9 | * OpenText is a trademark of Open Text. 10 | * __________________________________________________________________ 11 | * MIT License 12 | * 13 | * Copyright 2012-2025 Open Text. 14 | * 15 | * The only warranties for products and services of Open Text and 16 | * its affiliates and licensors ("Open Text") are as may be set forth 17 | * in the express warranty statements accompanying such products and services. 18 | * Nothing herein should be construed as constituting an additional warranty. 19 | * Open Text shall not be liable for technical or editorial errors or 20 | * omissions contained herein. The information contained herein is subject 21 | * to change without notice. 22 | * 23 | * Except as specifically indicated otherwise, this document contains 24 | * confidential information and a valid license is required for possession, 25 | * use or copying. If this work is provided to the U.S. Government, 26 | * consistent with FAR 12.211 and 12.212, Commercial Computer Software, 27 | * Computer Software Documentation, and Technical Data for Commercial Items are 28 | * licensed to the U.S. Government under vendor's standard commercial license. 29 | * 30 | * Unless required by applicable law or agreed to in writing, software 31 | * distributed under the License is distributed on an "AS IS" BASIS, 32 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | * See the License for the specific language governing permissions and 34 | * limitations under the License. 35 | * ___________________________________________________________________ 36 | */ 37 | package hello; 38 | 39 | public class HelloWorld2 { 40 | 41 | public static void main(String[] args) { 42 | System.out.println("Hello World 2!"); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/test/setup-testing-server-port.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for (( p = 9999; p <= 11999; p++ )) 4 | do 5 | n=$(netstat -an | grep $p) 6 | if [ "$n" == "" ] 7 | then 8 | echo $p 9 | break 10 | fi 11 | done 12 | --------------------------------------------------------------------------------