Chilkat Online Tools

ListRuns TCL Example

AWS Device Farm

load ./chilkat.dll

# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set rest [new_CkRest]

set authAws [new_CkAuthAws]

CkAuthAws_put_AccessKey $authAws "AWS_ACCESS_KEY"
CkAuthAws_put_SecretKey $authAws "AWS_SECRET_KEY"

# Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
CkAuthAws_put_Region $authAws "us-west-2"
CkAuthAws_put_ServiceName $authAws "devicefarm"
# SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
CkRest_SetAuthAws $rest $authAws

# URL: https://devicefarm.us-west-2.amazonaws.com/
# Use the same region as specified above.
set success [CkRest_Connect $rest "devicefarm.us-west-2.amazonaws.com" 443 1 1]
if {$success != 1} then {
    puts "ConnectFailReason: [CkRest_get_ConnectFailReason $rest]"
    puts [CkRest_lastErrorText $rest]
    delete_CkRest $rest
    delete_CkAuthAws $authAws
    exit
}

# The following code creates the JSON request body.
# The JSON created by this code is shown below.

# Use this online tool to generate code from sample JSON:
# Generate Code to Create JSON

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "arn" "string"
CkJsonObject_UpdateString $json "nextToken" "string"

# The JSON request body created by the above code:

# {
#   "arn": "string",
#   "nextToken": "string"
# }

CkRest_AddHeader $rest "Content-Type" "application/x-amz-json-1.1"
CkRest_AddHeader $rest "X-Amz-Target" "DeviceFarm_20150623.ListRuns"

set sbRequestBody [new_CkStringBuilder]

CkJsonObject_EmitSb $json $sbRequestBody
set sbResponseBody [new_CkStringBuilder]

set success [CkRest_FullRequestSb $rest "POST" "/" $sbRequestBody $sbResponseBody]
if {$success != 1} then {
    puts [CkRest_lastErrorText $rest]
    delete_CkRest $rest
    delete_CkAuthAws $authAws
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    delete_CkStringBuilder $sbResponseBody
    exit
}

set respStatusCode [CkRest_get_ResponseStatusCode $rest]
puts "response status code = $respStatusCode"
if {$respStatusCode != 200} then {
    puts "Response Header:"
    puts [CkRest_responseHeader $rest]
    puts "Response Body:"
    puts [CkStringBuilder_getAsString $sbResponseBody]
    delete_CkRest $rest
    delete_CkAuthAws $authAws
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    delete_CkStringBuilder $sbResponseBody
    exit
}

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody

# The following code parses the JSON response.
# A sample JSON response is shown below the sample code.

# Use this online tool to generate parsing code from sample JSON:
# Generate Parsing Code from JSON

set nextToken [CkJsonObject_stringOf $jResp "nextToken"]
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "runs"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set appUpload [CkJsonObject_stringOf $jResp "runs[i].appUpload"]
    set arn [CkJsonObject_stringOf $jResp "runs[i].arn"]
    set billingMethod [CkJsonObject_stringOf $jResp "runs[i].billingMethod"]
    set completedJobs [CkJsonObject_IntOf $jResp "runs[i].completedJobs"]
    set Errored [CkJsonObject_IntOf $jResp "runs[i].counters.errored"]
    set Failed [CkJsonObject_IntOf $jResp "runs[i].counters.failed"]
    set Passed [CkJsonObject_IntOf $jResp "runs[i].counters.passed"]
    set Skipped [CkJsonObject_IntOf $jResp "runs[i].counters.skipped"]
    set Stopped [CkJsonObject_IntOf $jResp "runs[i].counters.stopped"]
    set Total [CkJsonObject_IntOf $jResp "runs[i].counters.total"]
    set Warned [CkJsonObject_IntOf $jResp "runs[i].counters.warned"]
    set created [CkJsonObject_IntOf $jResp "runs[i].created"]
    set Metered [CkJsonObject_IntOf $jResp "runs[i].deviceMinutes.metered"]
    set deviceMinutesTotal [CkJsonObject_IntOf $jResp "runs[i].deviceMinutes.total"]
    set Unmetered [CkJsonObject_IntOf $jResp "runs[i].deviceMinutes.unmetered"]
    set devicePoolArn [CkJsonObject_stringOf $jResp "runs[i].devicePoolArn"]
    set MatchedDevicesCount [CkJsonObject_IntOf $jResp "runs[i].deviceSelectionResult.matchedDevicesCount"]
    set MaxDevices [CkJsonObject_IntOf $jResp "runs[i].deviceSelectionResult.maxDevices"]
    set eventCount [CkJsonObject_IntOf $jResp "runs[i].eventCount"]
    set jobTimeoutMinutes [CkJsonObject_IntOf $jResp "runs[i].jobTimeoutMinutes"]
    set locale [CkJsonObject_stringOf $jResp "runs[i].locale"]
    set Latitude [CkJsonObject_IntOf $jResp "runs[i].location.latitude"]
    set Longitude [CkJsonObject_IntOf $jResp "runs[i].location.longitude"]
    set message [CkJsonObject_stringOf $jResp "runs[i].message"]
    set name [CkJsonObject_stringOf $jResp "runs[i].name"]
    set Arn [CkJsonObject_stringOf $jResp "runs[i].networkProfile.arn"]
    set Description [CkJsonObject_stringOf $jResp "runs[i].networkProfile.description"]
    set DownlinkBandwidthBits [CkJsonObject_IntOf $jResp "runs[i].networkProfile.downlinkBandwidthBits"]
    set DownlinkDelayMs [CkJsonObject_IntOf $jResp "runs[i].networkProfile.downlinkDelayMs"]
    set DownlinkJitterMs [CkJsonObject_IntOf $jResp "runs[i].networkProfile.downlinkJitterMs"]
    set DownlinkLossPercent [CkJsonObject_IntOf $jResp "runs[i].networkProfile.downlinkLossPercent"]
    set Name [CkJsonObject_stringOf $jResp "runs[i].networkProfile.name"]
    set v_Type [CkJsonObject_stringOf $jResp "runs[i].networkProfile.type"]
    set UplinkBandwidthBits [CkJsonObject_IntOf $jResp "runs[i].networkProfile.uplinkBandwidthBits"]
    set UplinkDelayMs [CkJsonObject_IntOf $jResp "runs[i].networkProfile.uplinkDelayMs"]
    set UplinkJitterMs [CkJsonObject_IntOf $jResp "runs[i].networkProfile.uplinkJitterMs"]
    set UplinkLossPercent [CkJsonObject_IntOf $jResp "runs[i].networkProfile.uplinkLossPercent"]
    set parsingResultUrl [CkJsonObject_stringOf $jResp "runs[i].parsingResultUrl"]
    set platform [CkJsonObject_stringOf $jResp "runs[i].platform"]
    set Bluetooth [CkJsonObject_IntOf $jResp "runs[i].radios.bluetooth"]
    set Gps [CkJsonObject_IntOf $jResp "runs[i].radios.gps"]
    set Nfc [CkJsonObject_IntOf $jResp "runs[i].radios.nfc"]
    set Wifi [CkJsonObject_IntOf $jResp "runs[i].radios.wifi"]
    set result [CkJsonObject_stringOf $jResp "runs[i].result"]
    set resultCode [CkJsonObject_stringOf $jResp "runs[i].resultCode"]
    set seed [CkJsonObject_IntOf $jResp "runs[i].seed"]
    set skipAppResign [CkJsonObject_IntOf $jResp "runs[i].skipAppResign"]
    set started [CkJsonObject_IntOf $jResp "runs[i].started"]
    set status [CkJsonObject_stringOf $jResp "runs[i].status"]
    set stopped [CkJsonObject_IntOf $jResp "runs[i].stopped"]
    set testSpecArn [CkJsonObject_stringOf $jResp "runs[i].testSpecArn"]
    set totalJobs [CkJsonObject_IntOf $jResp "runs[i].totalJobs"]
    set v_type [CkJsonObject_stringOf $jResp "runs[i].type"]
    set webUrl [CkJsonObject_stringOf $jResp "runs[i].webUrl"]
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "runs[i].customerArtifactPaths.androidPaths"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set strVal [CkJsonObject_stringOf $jResp "runs[i].customerArtifactPaths.androidPaths[j]"]
        set j [expr $j + 1]
    }
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "runs[i].customerArtifactPaths.deviceHostPaths"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set strVal [CkJsonObject_stringOf $jResp "runs[i].customerArtifactPaths.deviceHostPaths[j]"]
        set j [expr $j + 1]
    }
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "runs[i].customerArtifactPaths.iosPaths"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set strVal [CkJsonObject_stringOf $jResp "runs[i].customerArtifactPaths.iosPaths[j]"]
        set j [expr $j + 1]
    }
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "runs[i].deviceSelectionResult.filters"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set attribute [CkJsonObject_stringOf $jResp "runs[i].deviceSelectionResult.filters[j].attribute"]
        set operator [CkJsonObject_stringOf $jResp "runs[i].deviceSelectionResult.filters[j].operator"]
        set k 0
        set count_k [CkJsonObject_SizeOfArray $jResp "runs[i].deviceSelectionResult.filters[j].values"]
        while {$k < $count_k} {
            CkJsonObject_put_K $jResp $k
            set strVal [CkJsonObject_stringOf $jResp "runs[i].deviceSelectionResult.filters[j].values[k]"]
            set k [expr $k + 1]
        }
        set j [expr $j + 1]
    }
    set i [expr $i + 1]
}

# A sample JSON response body parsed by the above code:

# {
#   "nextToken": "string",
#   "runs": [
#     {
#       "appUpload": "string",
#       "arn": "string",
#       "billingMethod": "string",
#       "completedJobs": number,
#       "counters": {
#         "errored": number,
#         "failed": number,
#         "passed": number,
#         "skipped": number,
#         "stopped": number,
#         "total": number,
#         "warned": number
#       },
#       "created": number,
#       "customerArtifactPaths": {
#         "androidPaths": [
#           "string"
#         ],
#         "deviceHostPaths": [
#           "string"
#         ],
#         "iosPaths": [
#           "string"
#         ]
#       },
#       "deviceMinutes": {
#         "metered": number,
#         "total": number,
#         "unmetered": number
#       },
#       "devicePoolArn": "string",
#       "deviceSelectionResult": {
#         "filters": [
#           {
#             "attribute": "string",
#             "operator": "string",
#             "values": [
#               "string"
#             ]
#           }
#         ],
#         "matchedDevicesCount": number,
#         "maxDevices": number
#       },
#       "eventCount": number,
#       "jobTimeoutMinutes": number,
#       "locale": "string",
#       "location": {
#         "latitude": number,
#         "longitude": number
#       },
#       "message": "string",
#       "name": "string",
#       "networkProfile": {
#         "arn": "string",
#         "description": "string",
#         "downlinkBandwidthBits": number,
#         "downlinkDelayMs": number,
#         "downlinkJitterMs": number,
#         "downlinkLossPercent": number,
#         "name": "string",
#         "type": "string",
#         "uplinkBandwidthBits": number,
#         "uplinkDelayMs": number,
#         "uplinkJitterMs": number,
#         "uplinkLossPercent": number
#       },
#       "parsingResultUrl": "string",
#       "platform": "string",
#       "radios": {
#         "bluetooth": boolean,
#         "gps": boolean,
#         "nfc": boolean,
#         "wifi": boolean
#       },
#       "result": "string",
#       "resultCode": "string",
#       "seed": number,
#       "skipAppResign": boolean,
#       "started": number,
#       "status": "string",
#       "stopped": number,
#       "testSpecArn": "string",
#       "totalJobs": number,
#       "type": "string",
#       "webUrl": "string"
#     }
#   ]
# }

delete_CkRest $rest
delete_CkAuthAws $authAws
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp