Commands

This page describes the structure of of test step commands.

Table of Contents

Test Step Commands

Each test step in a stage has this structure:

AttributeTypeRequiredDescription
cmdstringYesIdentifies which test step to execute
namestringYesUniquely identifies the step for reports and logs
transportTransportObjectYesDefines how the command is executed
parametersobjectYesCommand-specific parameters
optionsOptionsObjectNoAdditional command options

Examples

- cmd: dutctl
  name: Shutdown the DUT.
  parameters:
    host: "[[attributes.Flasher]]"
    command: power
    args: ["off"]

- cmd: dutctl
  name: Flash the provided binary.
  parameters:
    host: "[[attributes.Flasher]]"
    command: flash
    args: [write, "[[defaults.Binary]]"]

- cmd: sleep
  name: Wait for the DUT to settle
  parameters:
    duration: 15s

- cmd: dutctl
  name: Turn the DUT on
  parameters:
    host: "[[attributes.Flasher]]"
    command: power
    args: ["hardreset"]
  options:
    timeout: 2m

- cmd: ping
  name: Wait for the device to become online.
  options:
    timeout: 4m
  parameters:
    host: "[[attributes.Host]]"

Transport

The transport object defines how test steps are executed, either locally or on a remote machine. This configuration ensures proper command execution and authentication.

AttributeTypeRequiredDescription
protostringYesProtocol for command execution: local (local execution) or ssh (remote execution)
optionsTransportOptionsRequired for SSHProtocol-specific configuration options

Transport Options

When using the SSH protocol (proto: "ssh"), the following options are available:

AttributeTypeRequiredDefaultDescription
hoststringYesHostname or IP address of remote machine
userstringYesUsername for authentication
portintegerNo22SSH port number
passwordstringOne of these required*User’s password
identity_filestringOne of these required*Path to SSH private key

* You must provide either password or identity_file, but not both.

Protocol-Specific Requirements

Local Protocol

When using proto: "local":

  • No options are required or allowed
  • Commands execute on the local machine

SSH Protocol

When using proto: "ssh":

  • The options object is required
  • Must provide host and user
  • Must provide either password or identity_file
  • Cannot provide both password and identity_file

Examples

Local Execution

transport:
  proto: local

SSH with Password

transport:
  proto: ssh
  options:
    host: "192.168.1.100"
    user: "admin"
    password: "secretpassword"

SSH with Identity File

transport:
  proto: ssh
  options:
    host: "[[attributes.Host]]"
    user: "root"
    identity_file: "/root/.ssh/id_ecdsa"
    port: 2222 # Optional custom port

Options

The options object provides common configuration settings that can be applied to any test step. These settings control the test step’s execution behavior.

AttributeTypeRequiredDefaultDescription
timeoutstringNo6h00m00sMaximum duration for test step execution. If the step takes longer than this timeout, it will fail. Format: hours(h), minutes(m), seconds(s)

Timeout Format

The timeout value must follow this pattern: ^((\\d+h)?(\\d+m)?(\\d+s)?)?$

Valid examples:

  • "30s" - 30 seconds
  • "5m" - 5 minutes
  • "2h30m" - 2 hours and 30 minutes
  • "1h30m45s" - 1 hour, 30 minutes, and 45 seconds

Examples

Basic Timeout

options:
  timeout: "30s"

Complex Timeout

options:
  timeout: "1h30m45s"

General

Command

Run any executable or bash-cmd on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYescmdCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectNoAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersCommandOptionsYesOptions passed into the cmd cmd

Command Options

AttributeTypeRequiredDefaultDescription
executablestringYesExecutable file
Args[]stringNoArray of arguments passed to executable
working_dirboolNofalseSpecify the working directory
report_onlyboolNofalseDo not fail on exit-code non-equal to zero
expect[]stringNoCheck the stdout for any regexs

Command Example

cmd: cmd
name: Run echo test
transport: *transport
options:
  timeout: 20m
parameters:
  executable: "echo"
  args:
    [
      "Hello World!"
    ]
  expect:
    - "Hello World!"

Copy

Copy files to the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYescopyCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectNoAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersCopyOptionsYesOptions passed into the copy cmd

Copy Options

AttributeTypeRequiredDefaultDescription
sourcestringYesSource Location of the file to copy to the DUT.
destinationstringYesDestination Location of the file to copy to the DUT
recursiveboolNofalseCopy recursively

Copy Example

cmd: copy
name: Copy some tooling to DUT
transport: *transport
parameters:
  source: "[[storage.my-tooling]]/tool"
  destination: /tmp/tool
  recursive: true

DUTCTL

Run DUTCTL for the DUT. This command can power-cycle andflash the DUT aswell as read the serial of the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesdutctlCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
optionsOptionsObjectNoAdditional command options
parametersDUTCTLOptionsYesOptions passed into the dutctl cmd

DUTCTL Options

AttributeTypeRequiredDefaultDescription
hoststringYesHostname or IP address of the device.
commandstringYesCommand to execute on the device. Available commands: power, flash, serial.
args[]stringNoArguments for the command. Arguments depend on the command that is executed.
ìnputstringNoInput for the command, used only if command is set to serial.
uartintegerNoUART number to use for serial communication.

DUTCTL Expect Options

AttributeTypeRequiredDefaultDescription
regexstringYesexpectRegular expression to match against the output of the device for the serial command.

DUTCTL Example

- cmd: dutctl
  name: Shutdown the DUT.
  parameters:
    host: "[[attributes.Flasher]]"
    command: power
    args: ["off"]

- cmd: dutctl
  name: Flash the provided binary.
  parameters:
    host: "[[attributes.Flasher]]"
    command: flash
    args: [write, "[[defaults.Binary]]"]

- cmd: dutctl
  name: Turn the DUT on
  parameters:
    host: "[[attributes.Flasher]]"
    command: power
    args: ["hardreset"]
  options:
    timeout: 2m

Firmware Version

Check the ESRT Firmware version entry on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesfirmware versionCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersFirmwareVersionOptionsYesOptions passed into the firmware version cmd

Firmware Version Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesPath to the tool used to retrieve the firmware version.
formatstringNonumberFormat of the tool’s output. Available options: number, hex, pair, triplet, quad.
expectFirmware Version Expect OptionsYesExpected Options

Firmware Version Expect Options

AttributeTypeRequiredDefaultDescription
versionstringYesexpectExpected firmware version in the specified format.

Firmware Version Example

cmd: firmware version
name: Get firmware version (ESRT)
transport: *transport
parameters:
  tool_path: /tmp/system-suite/system-suite
  format: pair
  expect:
    version: "1.11"

PiKVM

Run a ping on any host.

AttributeTypeRequiredDefaultDescription
cmdconstYespikvmCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
optionsOptionsObjectNoAdditional command options
parametersPiKVMOptionsYesOptions passed into the ping cmd

PiKVM Options

Boot an OS image on your PiKVM connected to the DUT.

AttributeTypeRequiredDefaultDescription
hoststringYesHostname of the PiKVM
imagestringYesPath to OS image to boot
usernamestringYesPiKVM username
passwordstringYesPiKVM pasword

PiKVM Example

cmd: pikvm
name: Setup Host Image
parameters:
  host: "[[attributes.PiKVM]]"
  image: "[[storage.Image]]/nixos.img"
  username: root
  password: root

Ping

Run a ping on any host.

AttributeTypeRequiredDefaultDescription
cmdconstYespingCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
optionsOptionsObjectNoAdditional command options
parametersPingOptionsYesOptions passed into the ping cmd

Ping Options

AttributeTypeRequiredDefaultDescription
hoststringYesHostname or IP address used for the ping.
portintegerNo22Port to use for the ping.
expectPingExpectOptionsYesping expect options

Ping Expect Options

AttributeTypeRequiredDefaultDescription
should_failbooleanNofalseIf set to true, the expected behavior is that the ping won’t work. Otherwise, a successful ping is expected.

Ping Example

cmd: ping
name: Wait for the device to become online.
options:
  timeout: 4m
parameters:
  host: "[[attributes.Host]]"

Sleep

AttributeTypeRequiredDefaultDescription
cmdconstYessleep
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
parametersSleepOptionsYesOptions passed into the sleep cmd

Sleep Options

AttributeTypeRequiredDefaultDescription
durationstringYesDuration to sleep. Format: 1h2m3s. Units: h, m, s.

Sleep Example

cmd: sleep
name: Wait for the DUT to settle
parameters:
  duration: 15s

BIOS

Different Commands related to the BIOS.

BIOS Certificate

Check BIOS Options on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesbios certificate managementCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersBIOS Certificate OptionsYesOptions passed into ChipSec

BIOS Certificate Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesRequired tooling systemsuite
passwordstringEither of*BIOS Password
cert_pathstringEither of*BIOS Certificate
key_pathstringEither of*BIOS Certificate Private Key
expectBIOS Certificate Expect OptionsNoArray of expected BIOS Certificate Options

BIOS Certificate Expect Options

AttributeTypeRequiredDefaultDescription
should_failboolYesBIOS Option

BIOS Certificate Example

- cmd: bios certificate management
  name: Enable certificate
  transport: *transport
  parameters:
    command: enable
    tool_path: /tmp/system-suite/system-suite
    password: secunet
    cert_path: /tmp/system-suite/4k/new/cert.pem
- cmd: bios certificate management
  name: Check certificate thumbprint
  transport: *transport
  parameters:
    command: check
    tool_path: /tmp/system-suite/system-suite
    cert_path: /tmp/system-suite/4k/new/cert.pem
- cmd: bios certificate management
  name: Disable certificate
  transport: *transport
  parameters:
    command: disable
    tool_path: /tmp/system-suite/system-suite
    key_path: /tmp/system-suite/4k/new/key.pem
    password: secunet

BIOS Settings Get

Check BIOS Options on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesget bios settingCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersBIOS Settings Get OptionsYesOptions passed into ChipSec

BIOS Settings Get Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesRequired tooling systemsuite
expect[]BIOS Settings Get Expect OptionsYesArray of expected BIOS Settings

BIOS Settings Get Expect Options

AttributeTypeRequiredDefaultDescription
optionstringYesBIOS Option
valuestringYesExpected Value (supports regex)

BIOS Settings Get Example

cmd: get bios setting
name: "Check BIOS Settings"
transport: *transport
parameters:
  tool_path: /tmp/system-suite/system-suite
  expect:
    - option: BootDisplayDevice
      value: LCD
    - option: BootMode
      value: Quick
    - option: BootOrderLock
      value: Disable

BIOS Settings Set

Try to set BIOS Options on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesget bios settingCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersBIOS Settings Set OptionsYesOptions passed into ChipSec

BIOS Settings Set Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesRequired tooling systemsuite
passwordstringNoBIOS Password
key_pathstringNoBIOS Cert Key
bios_options[]BIOS OptionsYesArray of BIOS Options to set

BIOS Options

AttributeTypeRequiredDefaultDescription
optionstringYesBIOS Option
valuestringYesValue to set
should_failboolNoSet to true, if the cmd should fail

BIOS Settings Set Example

cmd: set bios setting
name: "Set Target BIOS Settings"
transport: *transport
parameters:
  tool_path: /tmp/system-suite/system-suite
  password: <bios-password>
  bios_options:
    - option: AlwaysOnUSB
      value: Disable
    - option: FingerprintPasswordAuthentication
      value: Disable

CPU

CPULoad

Run a CPU-Load test on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYescpuloadCommand Name
namestringName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectNoAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersCPULoadOptionsNoparameterscpuload Options

CPULoad Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesPath to the tool on the DUT
args[]stringYesArray of strings with arguments passed into the cpuload tool.
cpus[]integerYesArray of CPUs that should be put under load.
durationstringYesDuration of the load. Format: ^((\\d+h)?(\\d+m)?(\\d+s)?)?$
expectCPUExpectOptionsYesExpected values

CPULoad Example

cmd: cpuload
name: Check cpu frequencies with load
transport: *transport
options:
  timeout: 2m
parameters:
  tool_path: /tmp/system-suite/system-suite
  duration: 1m
  expect:
    individual:
      - cpus: [0, 1, 2, 3, 4, 5, 6, 7]
        option: AverageFrequency
        value: ">1500"
      - cpus: [8, 9, 10, 11, 12, 13, 14, 15]
        option: AverageFrequency
        value: ">1200"

CPUSet

Set cpu profiles on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYescpusetCommand Name
namestringName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectNoAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersCPUSetOptionsYesOptions passed into the cpuset cmd

CPUSet Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesPath to the tool on the DUT
commandstringYesCommand to run. Available options: core, or profile.
cores[]integerNoArray of Cores where the command should be applied to. If not set apply to all
argstringYesValue of the command option

CPUSet Example

cmd: cpuset
name: Set ACPI Platform Profile to low-power
transport: *transport
parameters:
  tool_path: /tmp/system-suite/system-suite
  command: profile
  arg: low-power

CPUStats

Run a CPU-Load test on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYescpuloadCommand Name
namestringName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectNoAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersCPUStatsOptionsYesparameterscpuload Options

CPUStats Options

AttributeTypeRequiredDefaultDescription
tool_pathstringYesPath to the tool on the DUT
intervalstringNoTesting interval time
expectCPUExpectOptionsYesExpected values

CPU Expect Options

AttributeTypeRequiredDefaultDescription
general[]GeneralObjectNoexpectGeneral Expected Values
individual[]IndividualObjectNoIndividual CPU Expected Values

General Object

AttributeTypeRequiredDefaultDescription
optionstringNogeneralName of the option
valuestringNogeneralValue of the option

Individual Object

AttributeTypeRequiredDefaultDescription
cpu[]integerYesindividualArray of CPUs where the option should be applied to
optionstringYesindividualName of the option
valuestringYesindividualValue of the option

CPUStats Example

cmd: cpustats
name: Check cpu frequencies in idle
transport: *transport
parameters:
  tool_path: /tmp/system-suite/system-suite
  interval: 10s
  expect:
    individual:
      - cpus: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
        option: AverageFrequency
        value: "<500"

Various

Binarly

The Binarly test step executes a scan using the Binarly service to analyze firmware binaries.

AttributeTypeRequiredDefaultDescription
cmdconstYesbinarlyMust be binarly report
namestringYesUniquely identifies the test step in reports and logs
parametersBinarlyParametersYesBinarly-specific parameters
optionsOptionsObjectNoAdditional command options

Binarly Parameters

AttributeTypeRequiredDescription
urlstringYesURL of the Binarly endpoint
tokenstringYesAuthentication token for Binarly service
file_pathstringYesPath to the binary file to be scanned

Binarly Example

cmd: binarly report
name: "Scan BIOS for vulnerabilities"
parameters:
  url: "https://api.binarly.io/v1"
  token: "your-binarly-token"
  file_path: "/path/to/firmware.bin"
options:
  timeout: "30m" # Scan might take a while

ChipSec

Run ChipSec on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYeschipsecCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectNoAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersChipSecOptionsYesOptions passed into ChipSec

ChipSec Options

AttributeTypeRequiredDefaultDescription
modules[]stringYesList of modules that get executed from the ChipSec test suite
pchstringNoPCH parameter that gets passed into ChipSec as --pch parameter
platformstringNoPlatform parameter that gets passed into ChipSec as --platform parameter

ChipSec Example

cmd: chipsec
name: Run chipsec tests
transport:
  proto: ssh
  options:
    host: "[[attributes.Host]]"
    user: root
    password: root
parameters:
  modules:
    [
      common.bios_kbrd_buffer,
      common.bios_smi,
      common.bios_ts,
      common.bios_wp,
      common.ia32cfg,
      common.me_mfg_mode,
      common.memlock,
      common.rtclock,
      common.smm,
      common.smrr,
      common.spi_access,
      common.spi_desc,
      common.spi_fdopss,
      common.spi_lock,
      common.uefi.access_uefispec,
      common.memconfig,
      common.remap,
      common.smm_dma,
    ]

FWHunt

Run Firmware Hunt on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesfwhuntCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
optionsOptionsObjectNoAdditional command options
parametersFWHuntOptionsYesOptions passed into the fwhunt cmd

FWHunt Options

AttributeTypeRequiredDefaultDescription
rules_dirs[]stringNoList of directories to search for rules. If not specified, the default rules directory will be used.
rules[]stringNoList of rules to run.
report_onlybooleanNofalseOnly report findings, do not interpret the output.

FWHunt Example

name: FwHunt Test
steps:
  - cmd: fwhunt
    name: Run FwHunt tests
    parameters:
      report_only: true

FWTS

Run Firmware Test-Suite on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesfwtsCommand Name
namestringName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersFWTS OptionsOptions passed into the fwts cmd

FWTS Options

AttributeTypeRequiredDefaultDescription
flags[]stringNoList of flags to pass to fwts.
report_onlybooleanNofalseOnly report findings, do not interpret the output.

FWTS Example

  cmd: fwts
  name: Run Firmware Testsuite tests
  options:
    timeout: 10m
  transport: *transport
  parameters:
    flags: [-b]
    report_only: true

HSI

Report Host Firmware Security on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYeshsiCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options

HSI Example

  cmd: hsi
  name: Report Host Firmware Security
  options:
    timeout: 10m
  transport: *transport

Qemu

AttributeTypeRequiredDefaultDescription
cmdconstYesqemuCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
optionsOptionsObjectNoAdditional command options
parametersQemuOptionsYesOptions passed into the qemu cmd

Qemu Options

AttributeTypeRequiredDefaultDescription
executablestringYesThe executable that should be executed.
firmwarestringYesThe firmware that should be used.
imagestringYesThe image that should be used.
logfilestringNoThe logfile that should be used.
nprocintegerNoThe number of processors that should be used.
memintegerNoThe amount of memory that should be used.
stepsQemuStepsOptionsYesSteps to interact with during test execution.

Qemu Steps Options

AttributeTypeRequiredDefaultDescription
sendstringNoA string that should be sent as input.
timeoutstringNoTimeout for the interaction. Format: h for hours, m for minutes, s for seconds (e.g., 1h30m20s).
expectQemuExpectOptionsNoExpectation for the interaction output.

Qemu Expect Options

AttributeTypeRequiredDefaultDescription
regexstringYesexpectRegular expression that should be matched against the output of the interaction.

Robot Test Framework

AttributeTypeRequiredDefaultDescription
cmdconstYesrobotCommand Name
namestringName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersRobot OptionsYesOptions passed into the fwts cmd

Robot Options

AttributeTypeRequiredDefaultDescription
file_pathstringYesPath to the robot test file.
args[]stringNoArguments to pass to the robot test file.
report_onlybooleanNofalseIf true, the output won’t be validated.

Robot Example

cmd: robot
name: Run OpenBMC Test Automation Setup Test
transport:
  proto: local
parameters:
  file_path: "[[storage.openbmc_test_auto]]/openbmc-test-automation/templates/test_openbmc_setup.robot"
  args:
    - "OPENBMC_HOST:[[attributes.Host]]"
    - "OPENBMC_USERNAME:root"
    - "OPENBMC_PASSWORD:root"
    - "IPMI_USERNAME:root"
    - "IPMI_PASSWORD:root"
    - "REDFISH_SUPPORT_TRANS_STATE:1"

S0ix-Selftest

AttributeTypeRequiredDefaultDescription
cmdconstYess0ix-selftestCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options

S0ix-Selftest Example

cmd: s0ix-selftest
name: Run s0ix selftest
transport: *transport

SecureBoot Management

Run different commands, based on sbctl on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYesSecure Boot ManagementCommand Name
namestringYesName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options
parametersSecureBoot OptionsYesOptions passed into the Secure Boot Management cmd

SecureBoot Options

AttributeTypeRequiredDefaultDescription
commandstringYesCommand to execute. Can be one of: status, enroll-key, rotate-key, reset, custom-key.
tool_pathstringYesPath to the tool that should be executed to run Secure Boot commands.
hierarchystringYesHierarchy to use for the key. Can be one of: db, dbx, KEK, PK.
key_filestringNoPath to the key file used for enroll-key and rotate-key commands.
custom_key_filestringNoPath to the custom key file used for custom-key command.
cert_filestringNoPath to the certificate file used for enroll-key and rotate-key commands.
signing_key_filestringNoPath to the signing key file used for enroll-key and rotate-key commands.
signing_cert_filestringNoPath to the signing certificate file used for enroll-key and rotate-key commands.
appendbooleanNofalseAppend the key to the existing key database.
expectSecureBoot Expect OptionsNoparametersExpectations for the command execution.

SecureBoot Expect Options

AttributeTypeRequiredDefaultDescription
should_failbooleanNofalseIf set to true, the test step will fail if the command does not fail.
secure_bootbooleanYesfalseIf set to true, the test step will fail if Secure Boot is not enabled.
setup_modebooleanYesfalseIf set to true, the test step will fail if Secure Boot is not in setup mode.

SecureBoot Management Examples

- cmd: Secure Boot Management
name: Check if SetupMode is enabled
transport: *transport
parameters:
  command: status
  tool_path: /tmp/sbctl/sbctl
  expect:
    secure_boot: false
    setup_mode: true

- cmd: Secure Boot Management
name: Enroll invalid signed PK key
transport: *transport
parameters:
  command: custom-key
  tool_path: /tmp/sbctl/sbctl
  hierarchy: PK
  custom_key_file: /tmp/sbctl/keys/invalidPK.auth
  expect:
    should_fail: true

- cmd: Secure Boot Management
name: Enroll db key
transport: *transport
parameters:
  command: enroll-key
  tool_path: /tmp/sbctl/sbctl
  hierarchy: db
  key_file: /tmp/sbctl/keys/DB.key
  cert_file: /tmp/sbctl/keys/DB.crt
  signing_key_file: /tmp/sbctl/keys/KEK.key
  signing_cert_file: /tmp/sbctl/keys/KEK.crt
  append: true

- cmd: Secure Boot Management
name: Rotate db key
transport: *transport
parameters:
  command: rotate-key
  tool_path: /tmp/sbctl/sbctl
  hierarchy: db
  key_file: /tmp/sbctl/keys-new/DB.key
  cert_file: /tmp/sbctl/keys-new/DB.crt
  signing_key_file: /tmp/sbctl/keys/KEK.key
  signing_cert_file: /tmp/sbctl/keys/KEK.crt

- cmd: Secure Boot Management
  name: Reset db key
  transport: *transport
  parameters:
    command: reset
    tool_path: /tmp/sbctl/sbctl
    hierarchy: db
    signing_key_file: /tmp/sbctl/keys/KEK.key
    signing_cert_file: /tmp/sbctl/keys/KEK.crt
    cert_file: /tmp/sbctl/keys/DB.crt

SysBench

Run SysBench on the DUT.

AttributeTypeRequiredDefaultDescription
cmdconstYessysbenchCommand Name
namestringName to uniquely identify the teststep. This name will show up in reports, logs and the WebUI
transportTransportObjectYesAdditional transport options
optionsOptionsObjectNoAdditional command options

SysBench Options

AttributeTypeRequiredDefaultDescription
args[]stringNoArguments to pass to sysbench.
expect[]ExpectOptionsYesExpectations to check against the output of sysbench.

SysBench Expect Options

AttributeTypeRequiredDefaultDescription
optionstringYesOption to check
valuestringYesExpected value

SysBench Example

cmd: sysbench
name: Benchmark
transport: *transport
parameters:
  args: [cpu, --cpu-max-prime=20000, --threads=18, --time=60, run]
  expect:
    - option: EventsPerSecond
      value: <4500