This repository contains YAML test procedure definitions for use with the CSIP-AUS Client/Server Test Harnesses.
This repository also provides Python dataclasses to make it easier for Python code to work with these definitions. In addition, there are also helper functions for creating valid instances of these dataclasses directly from the YAML test procedure definition files.
Client Test Procedures can be found in the cactus_test_definitions/client/procedures/ directory
Server Test Procedures can be found in the cactus_test_definitions/server/procedures/ directory
This repository also contains a small number of tests that verify that test definitions can be sucessfully converted to their equivalent python dataclasses.
First install the development and testing dependencies with,
python -m pip install --editable .[dev,test]Once installed, run the tests with,
pytestSee cactus_test_definitions/server/README.md
A TestProcedure is a YAML configuration that describes how a CSIP-Aus Client test case should be implemented by a server / compliance body. It's designed to be human readable but interpretable by a test harness for administering a test. At its most basic level, a TestProcedure is a series of a "events" that a client must trigger in sequence in order to demonstrate compliance.
Here is a minimalist definition of a test case
Description: Minimal Test Case Definition
Category: Explaining Schemas
Classes:
- Descriptive Test Tag 1
- Descriptive Test Tag 2
Preconditions:
# See definitions below for more info
actions:
checks:
Criteria:
# See definitions below for more info
checks:
Steps:
# See definitions below for more info
STEP_NAME:
For how to actually interpret and "run" these test cases against a CSIP-Aus Server implementation, please see cactus-runner for a reference implementation.
The most basic building block of a TestProcedure is a Step. Each Step will always define an Event which dictates some form of trigger based on client behavior (eg sending a particular request). When an Event is triggered, each of it's Action elements will fire which will in turn enable/disable additional Steps with new events and so on until the TestProcedure is complete. Event's can also define a set of Check objects (see doco below) that can restrict an Event from triggering if any Check is returning False/fail.
When a TestProcedure first starts, normally only a single Step will be active but more can be enabled/disabled in response to client behaviour.
Step Schema:
Steps:
DESCRIPTIVE_TITLE_OF_STEP: # This is used to reference this step in other parts of this test procedure
event: #
type: # string identifier of the event type - see table below
parameters: # Any parameters to modify the default behaviour of the event - see table below
checks: # A list of Check definitions that will need to be true for this event to trigger - see section on Checks below
actions:
# See action schema in the Action section below
These are the currently defined Event types that a Step can define
| name | params | description |
|---|---|---|
GET-request-received |
endpoint: str serve_request_first: bool/None |
Triggers when a client sends a GET request to the nominated endpoint. Will trigger BEFORE serving request to server unless serve_request_first is True in which case the event will be triggered AFTER the utility server has served the request (but before being proxied back to the device client) |
POST-request-received |
endpoint: str serve_request_first: bool/None |
Triggers when a client sends a POST request to the nominated endpoint. Will trigger BEFORE serving request to server unless serve_request_first is True in which case the event will be triggered AFTER the utility server has served the request (but before being proxied back to the device client) |
PUT-request-received |
endpoint: str serve_request_first: bool/None |
Triggers when a client sends a PUT request to the nominated endpoint. Will trigger BEFORE serving request to server unless serve_request_first is True in which case the event will be triggered AFTER the utility server has served the request (but before being proxied back to the device client) |
DELETE-request-received |
endpoint: str serve_request_first: bool/None |
Triggers when a client sends a DELETE request to the nominated endpoint. Will trigger BEFORE serving request to server unless serve_request_first is True in which case the event will be triggered AFTER the utility server has served the request (but before being proxied back to the device client) |
wait |
duration_seconds: str |
Triggers duration_seconds after being initially activated |
NOTE: The endpoint parameter used by the various -request-received events supports a rudimentary * wildcard. This will match a single "component" of the path (portion deliminated by / characters).
eg:
/edev/*/derp/456/dercwill match/edev/123/derp/456/derc/edev/*will NOT match/edev/123/derp/456/derc(the*will only match the123portion - not EVERYTHING)
These are the currently defined Action elements that can be included in a test. Action's can trigger at the beginning of a test (as a precondition) or whenever a Step's Event is triggered.
Action's are defined with the following schema, always as a list under an element called actions
actions:
- type: # string identifier of the action type - see table below
parameters: # Any parameters to supply to the executed Action - see table below
This is an example of two Action elements that will enable a different Step and create a DERControl:
actions:
- type: enable-steps
parameters:
steps: NAME_OF_STEP_TO_ENABLE
- type: create-der-control
parameters:
start: $now
duration_seconds: 300
opModExpLimW: 2000
| name | params | description |
|---|---|---|
enable-steps |
steps: list[str] |
The names of Step's that will be activated |
remove-steps |
steps: list[str] |
The names of Step's that will be deactivated (if active) |
finish-test |
None | When activated, the current test will be finished (shutdown) and all Criteria evaluated as if the client had requested finalization. |
set-default-der-control |
derp_id: int/None opModImpLimW: float/None opModExpLimW: float/None opModLoadLimW: float/None setGradW: float/None cancelled: bool/None opModStorageTargetW: float/None |
Updates the DefaultDERControl's parameters with the specified values. If cancelled is true, all unspecified values will be set to None. If derp_id is specified, this will apply to the DERProgram with that value, otherwise it will apply to all DERPrograms |
create-der-control |
start: datetime duration_seconds: int pow_10_multipliers: int/None primacy: int/None fsa_id: int/None randomizeStart_seconds: int/None ramp_time_seconds: float/None opModEnergize: bool/None opModConnect: bool/None opModImpLimW: float/None opModExpLimW: float/None opModGenLimW: float/None opModLoadLimW: float/None opModFixedW: float/None opModStorageTargetW: float/None |
Creates a DERControl with the specified start/duration and values. A new DERProgram will be created with primacy (and optionally under FunctionSetAssignment fsa_id) if no such DERProgram already exists |
create-der-program |
primacy: int fsa_id: int/None |
Creates a DERProgram with the specified primacy. Will be assigned under FunctionSetAssignment 1 unless fsa_id says otherwise. |
cancel-active-der-controls |
None | Cancels all active DERControls |
set-comms-rate |
dcap_poll_seconds: int/None edev_post_seconds: int/None edev_list_poll_seconds: int/None fsa_list_poll_seconds: int/None derp_list_poll_seconds: int/None der_list_poll_seconds: int/None mup_post_seconds: int/None |
Updates one or more post/poll rates for various resources. For non list resources, the rate will apply to all resources. Unspecified values will not update existing server values. |
communications-status |
enabled: bool |
If enabled: false simulates a full outage for the server (from the perspective of the client). There are many potential outage classes (eg: networking, DNS, software, performance issues) - for consistency the recommended outage simulation is for all requests to be served with a HTTP 500. Defaults to enabled: true at test start |
edev-registration-links |
enabled: bool |
If enabled: false EndDevice entities will NOT encode RegistrationLink elements. Defaults to enabled: true at test start |
register-end-device |
nmi: str/None registration_pin: int/None aggregator_lfdi: HexBinary/None aggregator_sfdi: int/None |
Creates a new EndDevice, optionally with the specified details. aggregator_lfdi / aggregator_sfdi will ONLY apply to an Aggregator certificate test with the aggregator_lfdi being rewritten with the client's PEN. |
A Check is a boolean test of the state of the utility server. They are typically defined as a success/failure condition to be run at the end of a TestProcedure.
Check's are defined with the following schema, always as a list under an element called checks
checks:
- type: # string identifier of the check type - see table below
parameters: # Any parameters to supply to the executed Check - see table below
This is an example of two Check elements that will check that all steps are marked as complete and that there has been a DERStatus submitted with specific values:
checks:
- type: all-steps-complete
parameters: {}
- type: der-status-contents
parameters:
genConnectStatus: 1
| name | params | description |
|---|---|---|
all-steps-complete |
ignored_steps: list[str]/None |
True if every Step in a TestProcedure has been deactivated (excepting any ignored steps) |
all-notifications-transmitted |
None | True if every transmitted notification (pub/sub) has been received with a HTTP success code response from the subscription notification URI |
end-device-contents |
has_connection_point_id: bool/None deviceCategory_anyset: hex/none check_lfdi: bool/None |
True if an EndDevice is registered and optionally has the specified contents. has_connection_point_id (if True) will check whether the active EndDevice has ConnectionPoint.id specified. check_lfdi will do a deep inspection on the supplied LFDI - checking PEN and derived SFDI. |
der-settings-contents |
setGradW: int/None doeModesEnabled_set: hex/none doeModesEnabled_unset: hex/none doeModesEnabled: bool/none modesEnabled_set: hex/none modesEnabled_unset: hex/none setMaxVA: bool/none setMaxVar: bool/none setMaxW: bool/none setMaxChargeRateW: bool/none setMaxDischargeRateW: bool/none setMaxWh: bool/none setMinWh: bool/none vppModesEnabled_set: hexbinary/none vppModesEnabled_unset: hexbinary/none setMaxVarNeg: bool/none setMinPFOverExcited: bool/none setMinPFUnderExcited: bool/none |
True if a DERSettings has been set for the EndDevice under test (and if certain elements have been set to certain values) |
der-capability-contents |
doeModesSupported_set: hex/none doeModesSupported_unset: hex/none doeModesSupported: bool/none modesSupported_set: hex/none modesSupported_unset: hex/none rtgMaxVA: bool/none rtgMaxVar: bool/none rtgMaxW: bool/none rtgMaxChargeRateW: bool/none rtgMaxDischargeRateW: bool/none rtgMaxWh: bool/none vppModesSupported_set: hexbinary/none vppModesSupported_unset: hexbinary/none rtgMaxVarNeg: bool/none rtgMinPFOverExcited: bool/none rtgMinPFUnderExcited: bool/none |
True if a DERCapability has been set for the EndDevice under test (and if certain elements have been set to certain values) |
der-status-contents |
genConnectStatus: int/None operationalModeStatus: int/None alarmStatus: int/None |
True if a DERStatus has been set for the EndDevice under test (and if certain elements have been set to certain values) |
readings-site-active-power |
minimum_count: int/none minimum_level: float/none maximum_level: float/none window_seconds: uint/none |
True if any MirrorUsagePoint has a MirrorMeterReading for site wide active power with minimum_count entries and/or readings all above and/or below minimum_level/maximum_level respectively; optionally for window_seconds |
readings-site-reactive-power |
minimum_count: int/none minimum_level: float/none maximum_level: float/none window_seconds: uint/none |
True if any MirrorUsagePoint has a MirrorMeterReading for site wide reactive power with minimum_count entries and/or readings all above and/or below minimum_level/maximum_level respectively; optionally for window_seconds |
readings-voltage |
minimum_count: int/none minimum_level: float/none maximum_level: float/none window_seconds: uint/none |
True if any MirrorUsagePoint has a MirrorMeterReading for site wide voltage OR DER voltage with minimum_count entries (at least one is required) |
readings-der-active-power |
minimum_count: int/none minimum_level: float/none maximum_level: float/none window_seconds: uint/none |
True if any MirrorUsagePoint has a MirrorMeterReading for DER active power with minimum_count entries and/or readings all above and/or below minimum_level/maximum_level respectively; optionally for window_seconds |
readings-der-reactive-power |
minimum_count: int/none minimum_level: float/none maximum_level: float/none window_seconds: uint/none |
True if any MirrorUsagePoint has a MirrorMeterReading for DER reactive power with minimum_count entries and/or readings all above and/or below minimum_level/maximum_level respectively; optionally for window_seconds |
response-contents |
latest: bool/None status: int/None all: bool/None |
True if at least one received Response matches the filter. latest will only consider the most recent received Response. all will look for a nominated status match for every DERControl |
subscription-contents |
subscribed_resource: str |
True if a subscription to subscribed_resource has been created |
The following are csipaus.org/ns/v1.3-beta/storage extension specific checks implemented
| name | params | description |
|---|---|---|
readings-der-stored-energy |
minimum_count: int/none minimum_level: float/none maximum_level: float/none window_seconds: uint/none |
True if any MirrorUsagePoint has a MirrorMeterReading for DER stored energy with minimum_count entries and/or readings all above and/or below minimum_level/maximum_level respectively; optionally for window_seconds |
doeModesEnabled_set modesEnabled_set doeModesSupported_set and modesSupported_set all expect a hexbinary string to be supplied, which contains the hi assertion bits to be equal to one e.g. doeModesEnabled_set: "03" would test to ensure that at least bits 0 and 1 are set hi (==1) for the given DERSetting.doeModesEnabled, ignoring all others
The corresponding _unset performs the inverse operation such that every bit set to 1 in the mask is expected to correspond to a zero in the corresponding value e.g. doeModesEnabled_unset: "03" would test to ensure that at least bits 0 and 1 are set lo (==0) for the given DERSetting.doeModesEnabled, ignoring all others
If a common bit is set between a _set and _unset corresponding pair of parameters, the check will always fail.
Any parameter element expects a series of name/value pairs to pass to the "parent" Action, Check or Event. For example:
parameters:
number_param: 123
text_param: Text Content
date_param: 2020-01-02 03:04:05Z
But placeholder variables may also be used to reference things that aren't known until the test is underway. For example, the following would instead set number_param to the current DERSetting.setMaxW supplied by the client while date_param would be set to the moment in time that the Action, Check or Event is being evaluated.
parameters:
number_param: $setMaxW
text_param: Text Content
date_param: $now
The following are all the NamedVariable types currently implemented
| name | description |
|---|---|
$now |
Resolves to the current moment in time (timezone aware). Returns a datetime |
$this |
Self reference to a parameter that is supplied as the key for the parameter check. Must have a corresponding NamedVariable that it can resolve to, derived from the key e.g setMaxW |
$setMaxW |
Resolves to the last supplied value to DERSetting.setMaxW as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
$setMaxVA |
Resolves to the last supplied value to DERSetting.setMaxVA as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
$setMaxVar |
Resolves to the last supplied value to DERSetting.setMaxVar as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
$setMaxChargeRateW |
Resolves to the last supplied value to DERSetting.setMaxChargeRateW as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
$setMaxDischargeRateW |
Resolves to the last supplied value to DERSetting.setMaxDischargeRateW as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
$setMaxWh |
Resolves to the last supplied value to DERSetting.setMaxWh as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
$rtgMaxVA |
Resolves to last supplied DERCapability.rtgMaxVA as a number. Raises exceptions if value hasn't been set, causing test to fail. |
$rtgMaxVar |
Resolves to last supplied DERCapability.rtgMaxVar as a number. Raises exceptions if value hasn't been set, causing test to fail. |
$rtgMaxW |
Resolves to last supplied DERCapability.rtgMaxW as a number. Raises exceptions if value hasn't been set, causing test to fail. |
$rtgMaxChargeRateW |
Resolves to last supplied DERCapability.rtgMaxChargeRateW as a number. Raises exceptions if value hasn't been set, causing test to fail. |
$rtgMaxDischargeRateW |
Resolves to last supplied DERCapability.rtgMaxDischargeRateW as a number. Raises exceptions if value hasn't been set, causing test to fail. |
$rtgMaxWh |
Resolves to last supplied DERCapability.rtgMaxWh as a number. Raises exceptions if value hasn't been set, causing test to fail. |
The following are csipaus.org/ns/v1.3-beta/storage extension specific NamedVariable types implemented
| name | description |
|---|---|
$setMinWh |
Resolves to the last supplied value to DERSetting.setMinWh as a number. Can raise exceptions if this value hasn't been set (which will trigger a test evaluation to fail) |
Placeholder variables can also be used in some rudimentary expressions to make variations on the returned value. For example:
parameters:
number_param: $(setMaxW / 2)
text_param: Text Content
date_param: $(now - '5 mins')
setMaxW: $(this < rtgMaxW)
setMaxVA: $(this >= rtgMaxWh)
Would resolve similar to above, but instead number_param will be half of the last supplied value to DERSetting.setMaxW and date_param will be set to 5 minutes prior to now.
setMaxW param will return boolean result DERSettings.setMaxW is less than DERCapability.rtgMaxW.
setMaxVA param will return boolean result DERSettings.setMaxVA is greather than or equal to DERCapability.rtgMaxWh.