aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/unittests/barrier/DeprecatedArgsParsingTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/unittests/barrier/DeprecatedArgsParsingTests.cpp')
-rw-r--r--src/test/unittests/barrier/DeprecatedArgsParsingTests.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/test/unittests/barrier/DeprecatedArgsParsingTests.cpp b/src/test/unittests/barrier/DeprecatedArgsParsingTests.cpp
new file mode 100644
index 0000000..2856166
--- /dev/null
+++ b/src/test/unittests/barrier/DeprecatedArgsParsingTests.cpp
@@ -0,0 +1,50 @@
+/*
+ * barrier -- mouse and keyboard sharing utility
+ * Copyright (C) 2015-2016 Symless Ltd.
+ *
+ * This package is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * found in the file LICENSE that should have accompanied this file.
+ *
+ * This package 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "barrier/ArgParser.h"
+
+#include "test/global/gtest.h"
+
+using namespace barrier;
+
+TEST(DeprecatedArgsParsingTests, parseDeprecatedArgs_cryptoPass_returnTrue)
+{
+ int i = 1;
+ const int argc = 3;
+ const char* kCryptoPassCmd[argc] = { "stub", "--crypto-pass", "mock_pass" };
+
+ ArgParser argParser(NULL);
+
+ bool result = argParser.parseDeprecatedArgs(argc, kCryptoPassCmd, i);
+
+ EXPECT_EQ(true, result);
+ EXPECT_EQ(2, i);
+}
+
+TEST(DeprecatedArgsParsingTests, parseDeprecatedArgs_cryptoPass_returnFalse)
+{
+ int i = 1;
+ const int argc = 3;
+ const char* kCryptoPassCmd[argc] = { "stub", "--mock-arg", "mock_value" };
+
+ ArgParser argParser(NULL);
+
+ bool result = argParser.parseDeprecatedArgs(argc, kCryptoPassCmd, i);
+
+ EXPECT_FALSE(result);
+ EXPECT_EQ(1, i);
+}