ElkTest 1.0.6
dotnet add package ElkTest --version 1.0.6
NuGet\Install-Package ElkTest -Version 1.0.6
<PackageReference Include="ElkTest" Version="1.0.6" />
paket add ElkTest --version 1.0.6
#r "nuget: ElkTest, 1.0.6"
// Install ElkTest as a Cake Addin #addin nuget:?package=ElkTest&version=1.0.6 // Install ElkTest as a Cake Tool #tool nuget:?package=ElkTest&version=1.0.6
Elk Test
ElkTest enables users to debug & test embedded systems using xunit integration tests and a Raspberry Pi Pico.
Benefits
- Test production code on the physical device
- No need to write any abstractions around device specific libraries
- Simulating hardware inputs enables you to reliably test your code without physically recreating scenarios
- Easily test networking / http requests
- Device / Platform agnostic
Setup:
- clone the repo
git clone https://github.com/Timmoth/ElkTester.git
- Add Arduino pico to your board manager (file->preferences->additional board manager urls) paste the following url
https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
- Open the Elk test firmware in Arduino IDE
ElkTester/ElkTest/ElkFirmware/ElkFirmware.ino
- Plug in the Pico
- Select the device + port
- Flash the firmware
- Add appsettings.json to test project
- Fill out appsettings.json (ElkSUTDevice is optional)
{
"ElkTestDevice": {
"Port": "COM12",
"BaudRate": 9600
},
"ElkSUTDevice": {
"Port": "COM11",
"BaudRate": 9600
}
}
- Set appsettings 'copy to output directory' property to 'copy if newer'
How does it work?
There are two main components to the Elk Test framework:
The ElkTestDevice is a Raspberry Pi Pico flashed with the ElkTest firmware, each of its GPIO pins can be used to read / write data to / from the system under test. One pin of which is used to reset the SUT at the start of each test. The ElkTestDevice recieves requests from the test runner over a serial connection, these requests allow the tests to set inputs & assert on outputs.
The ElkApi is a dotnet minimal API configured at the start of each test that allows the SUT connected to the same local network to connect & make requests, the tests can then assert on the requests made.
Tests are written in dotnet using xunit, examples can be seen below.
Examples:
Echo
The echo example sets analog pin 28 and asserts that the SUT in turn echos the same value to pin 27, the same logic is tested for digital pins 21 & 20
Flash the firmware to the SUT
ElkTester/Example/Sketches/echo/echo.ino
Connect the following pins:
28 → 28 : analog input pin
27 → 27 : analog output pin
21 → 21 : digial input pin
20 → 20 : digital output pin
The SUT reset is implemented in hardware by connecting an npn transistor collector to the SUT run pin, emitter to ground & base to ElkTestDevice pin 22.
Ensure both devices are plugged in and configure the ElkTestDevice port in the test projects appsettings.json
ElkTester/Example/appsettings.json
//Arrange
var device = await _fixture.Setup(_output); // Connect to the ElkTestDevice & reset the SUT
//Act
await device.SendAndWait(Device.Pins.Set(21, input)); // Set pin 21 high on the ElkTestDevice
await Task.Delay(1000); // Arbitrary wait to ensure sut loop has executed
//Assert
var pinResponse = await device.SendAndWait(Device.Pins.Get(20)); // Read value from pin 20
var actualValue = int.Parse(pinResponse.Arguments[0]);
Assert.Equal(expectedOutput, actualValue);
Network
The network example makes a sequence of POST, GET, PUT, DELETE requests.
This example uses HttpRequester to make HttpRequests on the SUT. See project readme for instructions on installing the library.
Copy + Rename arduino_secrets_example.h
⇒ arduino_secrets.h
Update the three arduino_secrets values. ELKAPI_IP is the local IP address of the machine that runs the tests.
Flash the firmware to the SUT
ElkTest/Example/Sketches/network/network.ino
Then run the tests!
External examples
Upcoming
- More complex examples
- Improve documentation
- Test PWM
- Test I2C
- Test Serial
- Hardware pass / fail buttons
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Swashbuckle.AspNetCore (>= 6.4.0)
- System.IO.Ports (>= 6.0.0)
- xunit (>= 2.4.1)
- xunit.abstractions (>= 2.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.