Skip to main content

test_summaries

Creates, updates, deletes, gets or lists a test_summaries resource.

Overview

Nametest_summaries
TypeResource
Idazure_extras.testbase.test_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
applicationNamestringApplication name.
applicationVersionstringApplication version.
executionStatusstringThe execution status of last test. Known values are: "None", "InProgress", "Processing", "Completed", "NotExecuted", "Incomplete", "Failed", and "Succeeded".
featureUpdatesTestSummaryobjectThe result summary of tests triggered by feature updates.
gradestringThe grade of the test. Known values are: "None", "NotAvailable", "Pass", and "Fail".
packageIdstringThe Azure resource Id of package.
packageTagsobjectThe tags of Package resource that are associated with the testSummary.
securityUpdatesTestSummaryobjectThe result summary of tests triggered by security updates.
systemDataobjectThe system metadata relating to this resource.
testRunTimestringThe run time of the last test.
testStatusstringThe status of last test. Known values are: "None", "TestExecutionInProgress", "DataProcessing", "TestFailure", "UpdateFailure", "TestAndUpdateFailure", "InfrastructureFailure", and "Completed".
testSummaryIdstringThe Id of the current Test Summary.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, test_base_account_name, test_summary_name, subscription_idGets a Test Summary with specific name from all the Test Summaries of all the packages under a Test Base Account.
listselectresource_group_name, test_base_account_name, subscription_idLists the Test Summaries of all the packages under a Test Base Account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resource_group_namestringThe name of the resource group that contains the resource. Required.
subscription_idstring
test_base_account_namestringThe resource name of the Test Base Account. Required.
test_summary_namestringThe name of the Test Summary. Required.

SELECT examples

Gets a Test Summary with specific name from all the Test Summaries of all the packages under a Test Base Account.

SELECT
id,
name,
applicationName,
applicationVersion,
executionStatus,
featureUpdatesTestSummary,
grade,
packageId,
packageTags,
securityUpdatesTestSummary,
systemData,
testRunTime,
testStatus,
testSummaryId,
type
FROM azure_extras.testbase.test_summaries
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND test_base_account_name = '{{ test_base_account_name }}' -- required
AND test_summary_name = '{{ test_summary_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;