aboutsummaryrefslogtreecommitdiff
path: root/unittest
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan.zalega@gmail.com>2016-04-19 13:00:45 +0200
committerSzczepan Zalega <szczepan.zalega@gmail.com>2016-04-19 13:00:45 +0200
commit38a0d7247842ee9c2dc1ec70b3cd50111b15d814 (patch)
tree6ea7d96063a1cc93434b0d6c8af366d9646b24ca /unittest
parent1778e7de61db4ac75b07b998e625197a40986ca2 (diff)
downloadlibnitrokey-38a0d7247842ee9c2dc1ec70b3cd50111b15d814.tar.gz
libnitrokey-38a0d7247842ee9c2dc1ec70b3cd50111b15d814.tar.bz2
Revert "Minor fixes, working version"
This reverts commit 3bb6c38ed17c2cf0d2f68bb64fbd24737c4a6677.
Diffstat (limited to 'unittest')
-rw-r--r--unittest/Makefile28
-rw-r--r--unittest/test.cc35
2 files changed, 0 insertions, 63 deletions
diff --git a/unittest/Makefile b/unittest/Makefile
deleted file mode 100644
index 6e504e8..0000000
--- a/unittest/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-CC = $(PREFIX)-gcc
-CXX = $(PREFIX)-g++
-LD = $(CXX)
-
-INCLUDE = -I../include
-LIB = -L../build
-LDLIBS = -lhidapi-libusb -lnitrokey
-BUILD = build
-
-CXXFLAGS = -std=c++14 -fPIC
-
-CXXSOURCES = $(wildcard *.cc)
-TARGETS = $(CXXSOURCES:%.cc=$(BUILD)/%)
-
-$(BUILD)/%: %.cc
- $(CXX) $< -o $@ $(INCLUDE) $(LIB) $(CXXFLAGS) $(LDLIBS)
-
-all: $(TARGETS)
-
-clean:
- rm -f $(TARGETS)
-
-mrproper: clean
- rm -f $(BUILD)/*.d
-
-.PHONY: all clean mrproper
-
-include $(wildcard build/*.d)
diff --git a/unittest/test.cc b/unittest/test.cc
deleted file mode 100644
index 652d909..0000000
--- a/unittest/test.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-#include <iostream>
-#include <string.h>
-#include "device_proto.h"
-#include "device.h"
-
-using namespace std;
-
-using namespace device;
-using namespace proto;
-using namespace proto::stick10::command;
-
-int main() {
- Stick20 stick;
- cout << stick.connect() << endl;
-
- {
- auto resp = GetStatus::CommandTransaction::run(stick);
- cout << resp.firmware_version << endl;
- }
-
- {
- FirstAuthenticate::CommandTransaction::CommandPayload authreq;
- strcpy((char *)(authreq.card_password), "12345678");
- FirstAuthenticate::CommandTransaction::run(stick, authreq);
- }
-
- {
- for (int i=0; i<32; i++) {
- GetSlotName::CommandTransaction::CommandPayload slotname_req;
- slotname_req.slot_number=i;
- auto slot_resp = GetSlotName::CommandTransaction::run(stick);
- cout << slot_resp.slot_name << endl;
- }
- }
-}