aboutsummaryrefslogtreecommitdiff
path: root/unittest/test.cc
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2018-04-19 11:59:12 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2018-04-19 12:11:09 +0200
commitbc4e9c7bcfd7d7b3f62b23e583ef216a05975e80 (patch)
tree6fdeea27d6b55e713554216b00b6922d3451a504 /unittest/test.cc
parent5b36f06f49c88fb1921da18f54524081729cb4d5 (diff)
downloadlibnitrokey-bc4e9c7bcfd7d7b3f62b23e583ef216a05975e80.tar.gz
libnitrokey-bc4e9c7bcfd7d7b3f62b23e583ef216a05975e80.tar.bz2
Fix compilation warnings for tests
Cleanup CMakeList a bit as well. Fixes #97 Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'unittest/test.cc')
-rw-r--r--unittest/test.cc104
1 files changed, 0 insertions, 104 deletions
diff --git a/unittest/test.cc b/unittest/test.cc
deleted file mode 100644
index 51a2ef6..0000000
--- a/unittest/test.cc
+++ /dev/null
@@ -1,104 +0,0 @@
-/*
- * Copyright (c) 2015-2018 Nitrokey UG
- *
- * This file is part of libnitrokey.
- *
- * libnitrokey is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * any later version.
- *
- * libnitrokey is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with libnitrokey. If not, see <http://www.gnu.org/licenses/>.
- *
- * SPDX-License-Identifier: LGPL-3.0
- */
-
-#include "catch.hpp"
-
-#include <iostream>
-#include <string.h>
-#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;
-using namespace nitrokey::misc;
-
-using Dev10 = std::shared_ptr<Stick10>;
-
-std::string getSlotName(Dev10 stick, int slotNo) {
- auto slot_req = get_payload<ReadSlot>();
- slot_req.slot_number = slotNo;
- auto slot = ReadSlot::CommandTransaction::run(stick, slot_req);
- std::string sName(reinterpret_cast<char *>(slot.data().slot_name));
- return sName;
-}
-
-TEST_CASE("Slot names are correct", "[slotNames]") {
- auto stick = make_shared<Stick10>();
- bool connected = stick->connect();
- REQUIRE(connected == true);
-
- Log::instance().set_loglevel(Loglevel::DEBUG);
-
- auto resp = GetStatus::CommandTransaction::run(stick);
-
- auto authreq = get_payload<FirstAuthenticate>();
- strcpy((char *)(authreq.card_password), "12345678");
- FirstAuthenticate::CommandTransaction::run(stick, authreq);
-
- {
- auto authreq = get_payload<EnablePasswordSafe>();
- strcpy((char *)(authreq.user_password), "123456");
- EnablePasswordSafe::CommandTransaction::run(stick, authreq);
- }
-
- //assuming these values were set earlier, thus failing on normal use
- REQUIRE(getSlotName(stick, 0x20) == std::string("1"));
- REQUIRE(getSlotName(stick, 0x21) == std::string("slot2"));
-
- {
- auto resp = GetPasswordRetryCount::CommandTransaction::run(stick);
- REQUIRE(resp.data().password_retry_count == 3);
- }
- {
- auto resp = GetUserPasswordRetryCount::CommandTransaction::run(stick);
- REQUIRE(resp.data().password_retry_count == 3);
- }
-
- {
- auto slot = get_payload<GetPasswordSafeSlotName>();
- slot.slot_number = 0;
- auto resp2 = GetPasswordSafeSlotName::CommandTransaction::run(stick, slot);
- std::string sName(reinterpret_cast<char *>(resp2.data().slot_name));
- REQUIRE(sName == std::string("web1"));
- }
-
- {
- auto slot = get_payload<GetPasswordSafeSlotPassword>();
- slot.slot_number = 0;
- auto resp2 =
- GetPasswordSafeSlotPassword::CommandTransaction::run(stick, slot);
- std::string sName(reinterpret_cast<char *>(resp2.data().slot_password));
- REQUIRE(sName == std::string("pass1"));
- }
-
- {
- auto slot = get_payload<GetPasswordSafeSlotLogin>();
- slot.slot_number = 0;
- auto resp2 = GetPasswordSafeSlotLogin::CommandTransaction::run(stick, slot);
- std::string sName(reinterpret_cast<char *>(resp2.data().slot_login));
- REQUIRE(sName == std::string("login1"));
- }
-
- stick->disconnect();
-}