description | icon |
---|---|
Extend TestBox your way! |
codepen |
TestBox supports the concepts of modules just like how ColdBox has modules. They are self-contained packages that can extend the functionality of TestBox. They can listen to test creations, errors, failures, skippings and much more. To get started you can use the TestBox CLI to generate a module for you:
testbox generate module MyModule
A TestBox module layout is similar to a ColdBox Module layout. They have to be installed at /testbox/system/modules
to be discovered and loaded and have one mandatory file: ModuleConfig.cfc
which must exist in the root of the module folder.
+ testbox/system/modules
+ myModule
+ ModuleConfig.cfc
You can install TestBox modules from ForgeBox via the install
command:
install id=module directory=testbox/system/modules
- There is no WireBox
- There is no Routing
- There is no Scheduling
- There is no Interceptors
- There is no Views
- Inception works, but limited
- No module dependencies, all modules are loaded in discovered order
This is the main descriptor file for your TestBox module.
It must have three mandatory callbacks:
configure()
- Configures the module for operationonLoad()
- When the module is now activatedonUnload()
- When the module is deactivated
component{
function configure(){
}
function onLoad(){
}
function onUnload(){
}
}
The following are the injected properties:
Property | Description |
---|---|
ModulePath | The module’s absolute path |
ModuleMapping | The module’s invocation path |
TestBox | The testbox reference |
TestBoxVersion | The version of TestBox being used |
The following are injected methods:
Method | Description |
---|---|
getEnv() | Get an environment variable |
getSystemSetting() | Get a Java system setting |
getSystemProperty() | Get a Java system property |
getJavaSystem() | Get the Java system class |
If a module fails to be activated, it will still be in the module registry but marked inactive via the active
boolean key in its registry entry. You will also find the cause of the failure in the console logs and the key activationFailure
of the module's registry entry.
writedump( testbox.getModuleRegistry() )
{% hint style="info" %} Not all ColdBox/CommandBox modules can be TestBox modules. Remember that TestBox modules are extremely lightweight and testing focused. {% endhint %}
This ModuleConfig can also listen to the following test life-cycle events. It will also receive several arguments to the call. Here are the common descriptions of the arguments
target
- The bundle in questiontestResults
- The TestBox results objectsuite
- The suite descriptorsuiteStats
- The stats for the running suiteexception
- A ColdFusion exceptionspec
- The spec descriptorspecStats
- The stats of the running spec
Callback | Arguments |
---|---|
onBundleStart() |
|
onBundleEnd() |
|
onSuiteStart() |
|
onSuiteEnd() |
|
onSuiteError() |
|
onSuiteSkipped() |
|
onSpecStart() |
|
onSpecEnd() |
|
onSpecFailure() |
|
onSpecSkipped() |
|
onSpecError() |
|
You can also manually register and activate modules by using the registerAndActivate( invocationPath )
method of the TestBox object. All you have to do is pass the invocation path to your modules' root folder:
testbox.registerAndActivate( "tests.resources.modules.MyModule" )
That's it! It will register it and activate and be ready to listen.