CheckDefinitionTestBuilder - Scoped
The CheckDefinitionTestBuilder script include provides methods that enable you to building test check requests on check definitions.
This script include requires the Agent Client Collector Framework (sn_agent) store application and is provided within the sn_agent namespace. For more information, refer to Agent Client Collector.
For the REST API solution, refer to Agent Client Collector API.
- Set the check definition to test
- Set the configuration item to run the test against
- Credential sys_id
- Credential alias id
- Credential name
CheckDefinitionTestBuilder - CheckDefinitionTestBuilder()
Creates an CheckDefinitionTestBuilder instance.
| Name | Type | Description |
|---|---|---|
| None |
The following example shows how to initialize CheckDefinitionTestBuilder.
var builder = new sn_agent.CheckDefinitionTestBuilder();
CheckDefinitionTestBuilder - build()
Builds the test check request with the arguments set.
| Name | Type | Description |
|---|---|---|
| None |
| Properties | Description |
|---|---|
| Object | JSON object with two attributes – the test result record ID and an error. If the build is successful, the test result ID returns and error is null. If an error occurs during the build, the test result ID is null and the error displays. |
The following example shows how build a test check request:
var checkId = "158279505372b30034b8ddeeff7b1270";
var ciId = "cc0dcc855374301062d1ddeeff7b12b0";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCiId(ciId).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);
CheckDefinitionTestBuilder - withCheckId(String checkId)
Sets the sys_id of the check definition to test.
| Name | Type | Description |
|---|---|---|
| checkId | String | Sys_id of the check definition listed in the Check Definitions [sn_agent_check_def] table. |
| Type | Description |
|---|---|
| CheckDefinitionTestBuilder | The builder instance the method was invoked for. |
The following example shows how create a test check.
var checkId = "158279505372b30034b8ddeeff7b1270";
var ciId = "cc0dcc855374301062d1ddeeff7b12b0";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCiId(ciId).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);
CheckDefinitionTestBuilder - withCiId(String ciId)
Sets the sys_id of the configuration item to run the test against.
| Name | Type | Description |
|---|---|---|
| ciId | String | Sys_id of a CMDB Configuration Item. |
| Type | Description |
|---|---|
| CheckDefinitionTestBuilder | The builder instance the method was invoked for. |
The following example shows how to create a test check request with
var checkId = "158279505372b30034b8ddeeff7b1270";
var ciId = "cc0dcc855374301062d1ddeeff7b12b0";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCiId(ciId).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);
CheckDefinitionTestBuilder - withCredentialsAliasId(String credentialsAliasId)
Sets the credentials alias sys_id to use during the test.
| Name | Type | Description |
|---|---|---|
| credentialsAliasId | String | Sys_id of a credentials record. |
| Type | Description |
|---|---|
| CheckDefinitionTestBuilder | The builder instance the method was invoked for. |
The following example shows how create a test check and set the credentials alias ID.
var checkId = "158279505372b30034b8ddeeff7b1270";
var credAlias = "<sys_id>";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCredentialsAliasId(credAlias).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);
CheckDefinitionTestBuilder - withCredentialsAliasName(String credentialsAliasName)
Sets the credentials alias name to use during the test. If the given value matches the name of multiple credentials aliases records, then one of them is chosen randomly.
| Name | Type | Description |
|---|---|---|
| credentialsAliasName | String | Name of a credentials alias. |
| Type | Description |
|---|---|
| CheckDefinitionTestBuilder | The builder instance the method was invoked for. |
The following example shows how create a test check and set the credentials alias name.
var checkId = "158279505372b30034b8ddeeff7b1270";
var credentialsAliasName = "credentialsAliasName";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCredentialsAliasName(credentialsAliasName).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);
CheckDefinitionTestBuilder - withCredentialsId(String credentialsId)
Sets the credentials sys_id to use during the test.
| Name | Type | Description |
|---|---|---|
| credentialsId | String | Sys_id of a credentials record. |
| Type | Description |
|---|---|
| CheckDefinitionTestBuilder | The builder instance the method was invoked for. |
The following example shows how create a test check and set the credentials ID.
var checkId = "158279505372b30034b8ddeeff7b1270";
var credID = "<sys_id>";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCredentialsId(credID).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);
CheckDefinitionTestBuilder - withCredentialsName(String credentialsName)
Sets the credentials name to use during the test. If the given value is the name of several credentials records, then one of them is chosen randomly.
| Name | Type | Description |
|---|---|---|
| credentialsName | String | Name of the credentials record. |
| Type | Description |
|---|---|
| CheckDefinitionTestBuilder | The builder instance the method was invoked for. |
The following example shows how create a test check and set the credentials name.
var checkId = "158279505372b30034b8ddeeff7b1270";
var credname = "credentialsName";
var builder = new sn_agent.CheckDefinitionTestBuilder();
var testResultJson = builder.withCheckId(checkId).withCredentialsName(credName).build();
if (!gs.nil(testResultJson.error))
gs.error(testResultJson.error);