Skip to main content

Testwizard test

Project description

Testwizard - Test

Python language support for testing different kinds of devices using testwizard

Usage

Use this package in combination with one (or more) of the specific device packages

Sidecar file

The testwizard manager enables a single script to be run on different devices with (optionally) different sets of parameters. To enable this from any IDE a sidecar file (in json format) is used . By default the name of the sidecar file is the same as this script, but with a .json extension. A command-line-argument (--sidecar or -s) can be used to instruct the usage of a different file.

This json file has the following attributes:

  • tester: The name of the tester (optional)
  • parameters: An array of parameters (optional)
    • name: The name of the parameter
    • value: The value for the parameter
  • customProperties: An object holding the custom property values (optional)
  • resources: An array of resources
    • category: The category of the testobject
    • name: The name of the testobject
    • id: The id of the testobject
    • customProperties: An object holding the custom property values (optional)
  • outputFolder: The folder where the log files should be written (optional)

Parameters

Every parameter will be made available as a field of the session object.

param1 = session.parameters['param1']

Resources

All resources will be acquired (and thus locked) at the start of a test run and will be released when the script ends. To execute a command on a testobject it must be referenced (constructed), when doing this, the name of the resource will be used, while the id corresponds to the actual device.

mobile = Mobile(session, "Mobile")
result = mobile.initDriver()

CustomProperties

Custom properties are maintained in the Testwizard manager and can be set on Sessions and TestObjects. These custom properties can be accessed from within a script.

sessionProperty = session.customProperties["myString"]
testObjectProperty = mobile.customProperties["myNumber"]

Output folder

When running a test all actions are logged (testrun.log) and so is the result (result.log). By default the location of these files is a timestamp based folder within the runs folder. If a different location is preferred, this can be configured in the outputfolder attribute.

Session

When the script is executed (run or debug), a new session is created, and all resources will be locked If any of the resources is allready in use, a session cannot be setup and an error will be thrown. The session is destroyed when the script ends. At this point the resources will be released and available for other script runs.

More information about the session can be read from the info attribute:

  • info
    • scriptFilePath: The full path of the script file
    • scriptFileName: The file name of the script file
    • storagePath: The directory where the output will be written
    • tester: The name of the tester
  • info.environment
    • scriptsBasePath: The root directory where all scripts are stored
    • storageBasePath: The root directory where the output is written
    • ocrEngine: The name of the ocr engine being used
    • testWizardVersion: The version of testwizard being used
  • info.session (optional: only when run from within the manager)
    • id: The unique identifier of the session in the manager
    • name: The name of the session
    • scriptIndex: The index of the script within the session

Results

The outcome of a script run can be either Pass, Fail or Error. During a script run multiple results can be reported, this can be done in 2 different ways:

  1. addPass / addFail: reports a pass or fail but does not post it to the server
  2. setResult: reports a pass / fail /error and posts it to the server
    result = mobile.initDriver()
    if result.success:
        session.addPass(result.message)
    else:
        session.addFail(result.message)
    result = mobile.initDriver()
    if result.success:
        session.setResult(ResultCodes.PASS, result.message)
    else:
        session.setResult(ResultCodes.FAIL, result.message)

Sample script

python (sample.py)

import sys
import time

from testwizard.test import TestWizard
from testwizard.test import ResultCodes
from testwizard.mobile import Mobile
from testwizard.set_top_box import SetTopBox

with TestWizard() as TW:
    session = TW.session

    print("-- Parameter and Custom properties ---")
    print("Parameters:")
    print("  param1 = " + session.parameters.param1)
    print("  param2 = " + session.parameters['param2'])
    print("  dummy = " + str(session.parameters.get('dummy')))
    print("Custom Properties:")
    print("  myString = " + session.customProperties.myString)
    print("  myNumber = " + str(session.customProperties['myNumber']))
    print("  dummy = " + str(session.customProperties.get('dummy')))

    print("Session info:")
    print("  info.scriptFilePath = " + session.info.scriptFilePath)
    print("  info.scriptFileName = " + session.info.scriptFileName)
    print("  info.storagePath = " + session.info.storagePath)
    print("  info.tester = " + session.info.tester)
    print("  info.environment.scriptsBasePath = " + session.info.environment.scriptsBasePath)
    print("  info.environment.storageBasePath = " + session.info.environment.storageBasePath)
    print("  info.environment.ocrEngine = " + session.info.environment.ocrEngine)
    print("  info.environment.testWizardVersion = " + session.info.environment.testWizardVersion)
    if  session.info.session is not None:
        print("Script was started by the manager:")
        print("  info.session.id = " + session.info.session.id)
        print("  info.session.name = " + session.info.session.name)
        print("  info.session.scriptIndex = " + session.info.session.scriptIndex)

    print("-- Create Mobile test object ---")
    mobile = Mobile(session, "Mobile")

    print("-- Mobile test object info ---")
    print("  id = " + mobile.info.id)
    print("  name = " + mobile.info.name)
    print("  category = " + mobile.info.category)
    print("  device.serialNo = " + mobile.info.device.serialNo)
    print("  device.hardwareVersion = " + mobile.info.device.hardwareVersion)
    print("  device.softwareVersion = " + mobile.info.device.softwareVersion)
    print("  device.description = " + mobile.info.device.description)
    print("  device.vendor.name = " + mobile.info.device.vendor.name)
    print("  device.vendor.modelName = " + mobile.info.device.vendor.modelName)
    print("  device.vendor.serialNo = " + mobile.info.device.vendor.serialNo)
    print("Custom Properties:")
    print("  myString = " + mobile.customProperties.myString)
    print("  myNumber = " + str(mobile.customProperties['myNumber']))
    print("  dummy = " + str(mobile.customProperties.get('dummy', None)))

    print("mobile: initDriver")
    result = mobile.initDriver()
    print(result.message)
    if result.success is False:
        session.addFail(result.message)

    print("-- Create SetTopBox test object ---")
    setTopBox = SetTopBox(session, "STB")

    print("stb: sendRCKey")
    result = setTopBox.sendRCKey("menu")
    print(result.message)
    if result.success is False:
        session.addFail(result.message)

    if not (session.hasFails or session.hasErrors):
        session.addPass("Test was successful")

sidecar file (sample.json)

{
    "tester": "Some tester",
    "parameters": [
        { 
            "name": "param1", 
            "value": "value1"
        },
        { 
            "name": "param2", 
            "value": "value2"
        }
    ],
    "customProperties": {
        "myString": "test",
        "myNumber": 123.4
    },
    "resources": [
        { 
            "category": "MOBILE", 
            "name": "Mobile", 
            "id": "Mobile 1",
            "customProperties": {
                "myString": "Just testing",
                "myNumber": 456
            }
        },
        { 
            "category": "STB", 
            "name": "STB", 
            "id": "SetTopBox 1"
        }
    ],
    "outputFolder": "c:\\temp"
}

Compatibility

The version is compatible with testwizard version 3.5

License

Testwizard licensing

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

testwizard.test-3.5.0b1073.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

testwizard.test-3.5.0b1073-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file testwizard.test-3.5.0b1073.tar.gz.

File metadata

  • Download URL: testwizard.test-3.5.0b1073.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for testwizard.test-3.5.0b1073.tar.gz
Algorithm Hash digest
SHA256 f197a4f01269a09ba420983f99719383b982e474fbaaa79823a286fb811af285
MD5 cf641ed14d815a5fdb21619feddb9b71
BLAKE2b-256 dc6f72f8c024a8a66acd30d0029f45469c90a3e823cf1e5e65a86a68cb3b289c

See more details on using hashes here.

File details

Details for the file testwizard.test-3.5.0b1073-py3-none-any.whl.

File metadata

  • Download URL: testwizard.test-3.5.0b1073-py3-none-any.whl
  • Upload date:
  • Size: 4.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for testwizard.test-3.5.0b1073-py3-none-any.whl
Algorithm Hash digest
SHA256 eadd1565be2c67e6bcc6aa06d9499998ba875e6a041b6ab38b4f5d4db0a5ec17
MD5 4d04b95b64f28df285b7a0de67138c61
BLAKE2b-256 9e23aa3bb318d3d8ab738fdf75a7bbd5686ba986fd949aefed794289d8d7f194

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page