ElkTest 1.0.6

dotnet add package ElkTest --version 1.0.6
NuGet\Install-Package ElkTest -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ElkTest" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ElkTest --version 1.0.6
#r "nuget: ElkTest, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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.

image

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.harduino_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

Outdoor Lights

Upcoming
  • More complex examples
  • Improve documentation
  • Test PWM
  • Test I2C
  • Test Serial
  • Hardware pass / fail buttons
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6 339 11/12/2022
1.0.5 303 11/11/2022
1.0.4 325 11/11/2022
1.0.3 332 11/11/2022
1.0.2 340 11/9/2022
1.0.1 323 11/9/2022