Identification
Name
The name of the chassis, as it appears at various places in the user interface. The name is also used to distinguish the various chassis contained within a testbed and in files containing the configuration for an entire test case.
Corresponding low-level API class: C_NAME
# Name
await tester.name.set(chassis_name="name")
resp = await tester.name.get()
resp.chassis_name
Password
The password of the chassis, which must be provided when logging on to the chassis.
Corresponding low-level API class: C_PASSWORD
# Password
await tester.password.set(password="xena")
resp = await tester.password.get()
resp.password
Description
The description of the chassis.
Corresponding low-level API class: C_COMMENT
# Description
await tester.comment.set(comment="description")
resp = await tester.comment.get()
resp.comment
Model
Gets the specific model of this Xena chassis.
Corresponding low-level API class: C_MODEL
# Model
resp = await tester.model.get()
resp.model
Serial Number
Gets the unique serial number of this particular Xena chassis.
Corresponding low-level API class: C_SERIALNO
# Serial Number
resp = await tester.serial_no.get()
resp.serial_number
Firmware Version
Gets the major version numbers for the chassis firmware and the Xena PCI driver installed on the chassis.
Corresponding low-level API class: C_VERSIONNO
# Firmware Version
resp = await tester.version_no.get()
resp.chassis_major_version
resp.pci_driver_version
resp = await tester.version_no_minor.get()
resp.chassis_minor_version
resp.reserved_1
resp.reserved_2
Build String
Identify the hostname of the PC that builds the xenaserver. It uniquely identifies the build of a xenaserver.
Corresponding low-level API class: C_BUILDSTRING
# Build String
resp = await tester.build_string.get()
resp.build_string
Version String
Returns the currently running chassis software version. Obsoletes C_VERSIONNO
and C_VERSIONNO_MINOR
Corresponding low-level API class: C_VERSIONSTR
# Firmware Version
resp = await tester.version_str.get()
resp.version_str
Model Name
Get the Xena chassis model name.
Corresponding low-level API class: C_MODEL_NAME
# Model Name
resp = await tester.model_name.get()
resp.name
Model Number
Get the Xena chassis model number.
Corresponding low-level API class: C_MODEL_NUMBER
# Model Name
resp = await tester.model_number.get()
resp.number