• Overview
  • Documentation
  • Version history

Description

The DevOps Test Hub is a web-based continuous testing platform built on modern, cloud native technologies that enables test teams to run a breadth of tests that includes API, functional, and performance tests and to benefit from a holistic view of test progress

Quick Info

Product icon

Product

HCL DevOps Velocity (HCL Accelerate)
Plugin type icon

Type

plugin
Compatibility icon

Compatibility

HCL DevOps Velocity version 3.0 or later
created by icon

Created by

HCLSoftware
Website icon

Website

Published Date

Last Updated

Summary

The DevOps Test Hub plug-in provides an integration with DevOps Test Hub. This plug-in imports the test result data from DevOps Test Hub and saves the data as metrics in DevOps Velocity insights.

Compatibility

Must be running HCL DevOps Velocity version 3.0 and later to use the plug-in. DevOps Test Hub 10.0.2 and later is supported.

Usage

To use the DevOps Test Hub plug-in, the plug-in must be loaded and an instance created before you can configure the plug-in integration. Configuration properties are defined using the product user interface or a JSON file. After the integration is complete, to invoke the plug-in send an HTTP Post request to the plug-in endpoint.

Integration type

The DevOps Test Hub plug-in supports endpoint integration which are listed in the following table.

Endpoints
Name Path Method
OneTestEndpoint onetest/callback Post

Invoking the plugin

You will need to "install" the plug-in in DevOps Velocity. You can do this in one of two ways. Perhaps the easiest way is to create a new Value Stream in DevOps Velocity. You can use the following template for creating your integration.


"integrations": [
{
"type": "ucv-ext-onetest-server",
"tenant_id": "<tenant-id>",
"name": "<integration-name>",
"logginglevel": "INFO",
"properties":{
  "userAccessKey": "<ucv-user-access-key>",
  "oneTestUrl" : "<devops test-hub-url="">",
  "oneTestRefreshToken":"<devops test-hub-refresh-token="">",
  "buildRegExp": "([A-Z]+-[0-9]+)",
  "workflowId" : "<value_stream_id>"
    }
}
]


  • In the above example, provide all of your own values for the values inside of < > brackets.
  • The buildRegExp field can be used to map a build to a metric. The tags on the DevOps Test Hub test will be evaluated against the regular expression.
  • For instance, if your buildRegExp is defined as "([A-Z]+-[0-9]+)" and you tag your test with "BUILD-123" this will map the build with ID BUILD-123 in the Velocity server to the newly created metric.
  • For help forming a regular expression based on your build ID, you can test out patterns at the following web page: https://regexr.com
  • Another option for creating is to hit the https:///integration url with the integration definition as your payload:

  {
"type": "ucv-ext-onetest-server",
"tenant_id": "<tenant-id>",
"name": "<integration-name>",
"logginglevel": "INFO",
"properties":{  
    "oneTestUrl" : "<devops test-hub-url="">",
    "oneTestRefreshToken":"<devops test-hub-refresh-token="">",
    "buildRegExp": "([A-Z]+-[0-9]+)",
    "workflowId" : "<value_stream_id>"
}
}


  • Either option will allow you to create an DevOps Test Hub integration instance.

After going through the "Set Up" portion above, you can send an HTTP POST request to your new endpoint: https:///pluginEndpoint//onetest/callback

  • The payload for this POST must be in the following format

{  
  "project": {
    "name":"",
    "id": ""
    (either project name or project id must be specified)
  },
  "test": {
    "name":"",
    "path":""
    (either test name or test path must be specified)
  },
  "commitId": "" (optional),
  "build": {
    "id": "",
    "url": ""
  } (optional, this will override buildRegExp if specified)
}



Integration

To install the plug-in, perform the following steps:

  1. In HCL DevOps Velocity, click Settings > Integrations > Available.
  2. In the Action column for the DevOps Test Hub, click Install.

There are two methods to integrate the plug-in:

  • Using the user interface
  • Using a JSON file

The tables in the Configuration Properties section describe the properties used to define the integration.

To integrate the plug-in using the user interface, perform the following steps:

  1. In HCL DevOps Velocity, click Settings > Integrations > Installed.
  2. In the Action column for the DevOps Test Hub plug-in, and then click Add Integration.
  3. On the Add Integration dialog, enter the values for the fields to configure the integration and define communication.
  4. Click Add.

Integrating the plug-in by using JSON file

The JSON file contains the information for creating a value stream. Within the JSON file is a section for integrations. It is in this section that plugin properties can be defined. Refer to the JSON sample code in the Set Up section.

To integrate the plug-in using a JSON, perform the following steps:

  1. Navigate to value stream page, and then click the necessary value stream.
  2. Click  icon, and then Select Edit value stream to modify the JSON file in the code or tree view editors.
    Alternatively, you can also click Download JSON option to download the JSON file, and then select the Import JSON option to upload the revised JSON file.
  3. Edit the integration information in the JSON file to add the plug-in configuration properties. Refer to JSON sample code in the Configuration Properties section for more details.
  4. Click Save

Configuration Properties

The following tables describe the properties used to configure the integration. Each table contains the field name when using the user interface and the property name when using a JSON file.

  • The General Configuration Properties table describes configuration properties used by all plug-in integrations.
  • The DevOps Test Hub Configuration Properties table describes the configuration properties that define the connection and communications with the DevOps Test Hub server. When using the JSON method to integrate the plug-in these properties are coded within the properties configuration property.

Some properties might not be displayed in the user interface, to see all properties enable the Show Hidden Properties field.

General Configuration Properties
Name Description Required Property Name
NA The version of the plug-in that you want to use. To view available versions, click the Version History tab. If a value is not specified, the version named latest is used. No image
Integration Name An assigned name to the value stream. Yes name
Logging Level The level of Log4j messages to display in the log file. Valid values are: all, debug, info, warn, error, fatal, off, and trace. No loggingLevel
NA List of plug-in configuration properties used to connect and communicate with the DevOps Test Hub. Enclose the properties within braces. Yes properties
  The name of the tenant. Yes tenant_id
NA Unique identifier assigned to the plug-in. The value for the DevOps Test Hub plug-in is ucv-ext-onetest-server. Yes type
DevOps Test Hub Configuration properties
Name Type Description Required Property Name
DevOps Test Hub URL String The base URL of the DevOps Test Hub. For example: https://tp-cicd2.nonprod.hclpnp.com. Yes oneTestUrl
DevOps Test Hub Offline User Token String The offline user token created in the DevOps Test Hub user interface by clicking the Create Token button. Yes oneTestRefreshToken
Build Label Pattern String A regular expression pattern that will match a build ID on a test execution label. For example: ([A-Z]+-[0-9]+). No buildRegExp
Workflow Id String The value stream that this metric is associated. No workflowId

ucv-ext-onetest-server:1.0.28.tar

 

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.28

Release Notes

  • Plugin name update: The plugin name has been changed from HCL DevOps Test Hub to DevOps Test Hub.

ucv-ext-onetest-server:1.0.27.tar

Uploaded: 09-Apr-2024 09:33

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.27
 

Release Notes

  • Rebranding: Name of the plugin is changed from HCL OneTest Server to HCL DevOps Test Hub.

ucv-ext-onetest-server:1.0.26.tar

Uploaded: 21-Jul-2023 07:13

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.26
 

Release Notes

  • Minor bug fix:Fixed bug related to test results URL generated in plugin.

ucv-ext-onetest-server:1.0.17.tar

Uploaded: 08-Nov-2022 09:18

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.17
 

Release Notes

  • Removed Manual User Access Key: From current version onwards this plugin will only support Auto Generated User Access Key feature of HCL Accelerate.
  • Added WorkflowId: Under the hidden properties section of add integration page for HCL OneTest Server plugin a Workflow ID field is added. This field is optional and can be used to provide HCL Accelerate WorkflowId - the ID of a Value Stream (VSM )to which HCL OneTest Server vulnerability data is associated.
  • Preventing Installation on Older Versions: This version of HCL OneTest Server Plugin can only be installed on HCL Accelerate version 3.0.0 and later
  • Added Category:Quality is the plugin category of HCL OneTest Server.

ucv-ext-onetest-server:1.0.15.tar

Uploaded: 09-Feb-2022 06:10

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.15
 

Release Notes

  • User Access Key Related Changes

ucv-ext-onetest-server:1.0.11.tar

Uploaded: 29-Sep-2021 05:55

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.11
 

Release Notes

  • changes for gating

ucv-ext-onetest-server:1.0.2.tar

Uploaded: 08-Feb-2021 07:39

Pull Command

docker pull hclcr.io/accelerate/ucv-ext-onetest-server:1.0.2
 

Release Notes

  • Upgrade from beta version

Related Plugins