Configuration Helpers in the Artefacts Toolkit
The Artefacts Toolkit Configuration Helpers are functions that allow you to interact with configurations you have set in your artefacts.yaml
file.
Import with:
from artefacts_toolkit.config import get_artefacts_param
Functions
Function Reference
get_artefacts_param
Returns a parameter set in the artefacts.yaml
file. If param_type
is set to launch
, it will be returned as type string
so that it can be used as a ROS launch argument.
This function is particularly useful for parametric testing. When you define a list of parameter values in your artefacts.yaml
file (e.g., launch/world: ["empty.sdf", "bookstore.sdf", "restaurant.sdf"]
), the artefacts run
command will execute your test multiple times - once for each value in the list. During each test execution, get_artefacts_param("launch", "world")
will automatically return the current parameter value for that specific test run.
This becomes especially powerful for grid-based testing! With three parameters that each have three possible values, Artefacts will automatically execute your test 27 times (3 × 3 × 3) while your launch file code remains unchanged.
get_artefacts_param(
param_type,
param_name,
is_ros=True
)
Parameters
Parameter | Type | Description | Default |
---|---|---|---|
param_type |
str |
The namespace/category of the parameter (e.g., "launch" in "launch/world") | Required |
param_name |
str |
The specific parameter name (e.g., "world" in "launch/world") | Required |
is_ros |
bool |
Whether the parameter should be converted to a ROS parameter format | True |
Returns
The function returns the parameter value with the following behavior:
- If
param_type
is"launch"
andis_ros
isTrue
: Returns the value as astr
, regardless of its original type in theartefacts.yaml
file. This is so that it can be used as a ros launch argument. - For all other cases: Returns the value with its original type from the YAML file (e.g.,
list
,dict
,int
,float
,str
, etc.)
Notes
- Currently only supports ROS Params / ROS launch arguments.
- Parametric tests will execute sequentially when running artefacts locally. When running on the platform, they will run in parallel (the maximum number of concurrent tests is determined by your subscription plan).
Example
Given an artefacts.yaml
file with the following configuration set:
scenarios:
defaults:
output_dirs: ["output"]
metrics:
- /odometry_error
params:
launch/world: ["bookstore.sdf", "empty.sdf"]
Getting the parameter in our test launch file like so:
def generate_test_description():
try:
world = get_artefacts_param("launch", "world")
except FileNotFoundError:
world = "empty.world"
run_headless = LaunchConfiguration("run_headless")
launch_navigation_stack = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
[
os.path.join(
get_package_share_directory("sam_bot_nav2_gz"),
"launch",
"complete_navigation.launch.py"
),
]
),
launch_arguments=[("run_headless", run_headless), ("world_file", world)],
)
...# Rest of launch test file
This will run the same test twice - once in an empty world and once in a bookstore world - without any changes to your launch file code between runs.