From 9b8ebc6ed1a1fdc15c404774bf102c883a34d990 Mon Sep 17 00:00:00 2001 From: Mateusz Zalega Date: Thu, 22 Oct 2015 23:07:23 +0200 Subject: Minor fixes, working version --- unittest/test.cc | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 unittest/test.cc (limited to 'unittest/test.cc') diff --git a/unittest/test.cc b/unittest/test.cc new file mode 100644 index 0000000..c0762a5 --- /dev/null +++ b/unittest/test.cc @@ -0,0 +1,34 @@ +#include +#include +#include "device_proto.h" +#include "log.h" +#include "stick10_commands.h" + +using namespace std; +using namespace nitrokey::device; +using namespace nitrokey::proto::stick10; +using namespace nitrokey::log; + +int main() { + Stick20 stick; + + Log::instance().set_loglevel(Loglevel::DEBUG); + + { + auto resp = GetStatus::CommandTransaction::run(stick); + } + + { + FirstAuthenticate::CommandTransaction::CommandPayload authreq; + strcpy((char *)(authreq.card_password), "12345678"); + FirstAuthenticate::CommandTransaction::run(stick, authreq); + } + + { + for (int i=0; i<10; i++) { + ReadSlot::CommandTransaction::CommandPayload slot_req; + slot_req.slot_number = i; + auto slot = ReadSlot::CommandTransaction::run(stick, slot_req); + } + } +} -- cgit v1.2.1