NUT provides several tools for clients and core developers, and QA people.
The dummy-ups driver propose a simulation mode, also known as Dummy Mode. This mode allows to simulate any kind of devices, even non existing ones.
Using this method, you can either replay a real life sequence, recorded from an actual device, or directly interact through upsrw or by editing the device file, to modify the variables values.
Here is an example to setup a device simulation:
configure NUT for simulation (ups.conf(5)):
[dummy] driver = dummy-ups port = evolution500.dev desc = "dummy-ups in dummy mode"
now start NUT, at least dummy-ups and upsd:
$ upsdrvctl start dummy $ upsd
and check the data:
$ upsc dummy ...
you can also use upsrw to modify the data:
$ upsrw -s ups.status="OB LB" -u user -p password dummy
For more information, refer to dummy-ups(8) manual page.
To complete dummy-ups, NUT provides a device recorder script called nut-recorder.sh and located in the tools/ directory of the NUT source tree.
This script uses upsc to record device information, and stores these in a differential fashion every 5 seconds (by default).
Its usage is the following:
Usage: dummy-recorder.sh <device-name> [output-file] [interval]
For example, to record information from the device myups every 10 seconds:
nut-recorder.sh myups@localhost myups.seq 10
During the recording, you will want to generate power events, such as power failure and restoration. These will be tracked in the simulation files, and be eventually be replayed by the dummy-ups driver.