123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824 |
- /*
- * Copyright (c) 2019 - 2024 Stefan Strobel <stefan.strobel@shimatta.net>
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
- */
- /**
- * @file test_integration_auth.cpp
- * @brief integration test implementation for the authentication functions
- * @author Stefan Strobel <stefan.strobel@shimatta.net>
- */
- #include "test/framework/catch.hpp"
- extern "C" {
- #include "shellmatta.h"
- }
- #include <string.h>
- static uint32_t write_callCnt = 0u;
- static char write_data[1024];
- static uint32_t write_length;
- static uint32_t privateTemp;
- static uint32_t userIdTemp;
- static bool successTemp;
- #define TEST_SHELLMATTA_SETUP shellmatta_retCode_t ret; \
- shellmatta_instance_t inst; \
- shellmatta_handle_t handle; \
- char buffer[1024] = {0}; \
- char historyBuffer[1024] = {0}; \
- \
- shellmatta_doInit( &inst, \
- &handle, \
- buffer, \
- sizeof(buffer), \
- historyBuffer, \
- sizeof(historyBuffer), \
- "shellmatta->", \
- NULL, \
- writeFct); \
- \
- write_callCnt = 0u; \
- memset(write_data, 0, sizeof(write_data)); \
- write_length = 0u; \
- privateTemp = 0u; \
- userIdTemp = 255u; \
- successTemp = false; \
- \
- shellmatta_addCmd(handle, &publicCmd); \
- shellmatta_addCmd(handle, &privateCmd);
- #define TEST_SHELLMATTA_AUTH_SETUP shellmatta_auth_user_t userList[] = { \
- {1, false, "shimatta", "12345678"}, \
- {2, false, "not_shimatta", "87654321"}, \
- {3, true, "root", "rootpw"} \
- }; \
- \
- uint32_t privateCmdPerms[] = {1}; \
- shellmatta_auth_perm_t permList[] = { \
- {"private", privateCmdPerms, sizeof(privateCmdPerms)/sizeof(privateCmdPerms[0])}, \
- {"additional", privateCmdPerms, sizeof(privateCmdPerms)/sizeof(privateCmdPerms[0])} \
- }; \
- \
- shellmatta_auth_init(handle, userList, 3, permList, 2, false, NULL, NULL);
- static shellmatta_retCode_t writeFct(const char* data, uint32_t length)
- {
- write_callCnt ++;
- while((length > 0) && (write_length < sizeof(write_data)))
- {
- write_data[write_length] = *data;
- data ++;
- length --;
- write_length ++;
- }
- return SHELLMATTA_OK;
- }
- static shellmatta_retCode_t publicCmdFct(shellmatta_handle_t handle, const char *arguments, uint32_t length)
- {
- (void) handle;
- (void) arguments;
- (void) length;
- shellmatta_retCode_t ret = SHELLMATTA_OK;
- return ret;
- }
- shellmatta_cmd_t publicCmd = {(char*)"public", (char*)"p", NULL, NULL, publicCmdFct, NULL, NULL};
- static shellmatta_retCode_t privateCmdFct(shellmatta_handle_t handle, const char *arguments, uint32_t length)
- {
- (void) handle;
- (void) arguments;
- (void) length;
- privateTemp ++;
- return SHELLMATTA_OK;
- }
- shellmatta_cmd_t privateCmd = {(char*)"private", (char*)"r", NULL, NULL, privateCmdFct, NULL, NULL};
- static shellmatta_retCode_t additionalCmdFct(shellmatta_handle_t handle, const char *arguments, uint32_t length)
- {
- (void) handle;
- (void) arguments;
- (void) length;
- return SHELLMATTA_OK;
- }
- shellmatta_cmd_t additionalCmd = {(char*)"additional", (char*)"a", NULL, NULL, additionalCmdFct, NULL, NULL};
- SCENARIO("Check help auth uninitialized") {
- GIVEN("An initialized shellmatta instance without initialized auth") {
- TEST_SHELLMATTA_SETUP;
- WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The help command prints all commands.") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "private r\r\n"
- "public p\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(ret == SHELLMATTA_OK);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- }
- SCENARIO("Check auth unauthorized") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The help command prints only public commands.") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "public p\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- WHEN("The a private function is called") {
- ret = shellmatta_processData(handle, (char*)"private\r", 8);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The command is not executed.") {
- char *dummyData = (char*) "private\r\n"
- "\r\n"
- "Command: private not found\r\n"
- "shellmatta->";
- CHECK(privateTemp == 0u);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- }
- SCENARIO("Check authorized") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("The user shellmatta is logged in") {
- ret = shellmatta_auth_login(handle, 1);
- CHECK(ret == SHELLMATTA_OK);
- AND_WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The help command prints all commands.") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "private r\r\n"
- "public p\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(ret == SHELLMATTA_OK);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is logged in") {
- char usernameBuffer[16] = {0};
- uint32_t usernameBufferLength = sizeof(usernameBuffer);
- CHECK(1 == shellmatta_auth_getLoggedInUserId(handle));
- ret = shellmatta_auth_getLoggedInUserName(handle, usernameBuffer, &usernameBufferLength);
- CHECK(ret == SHELLMATTA_OK);
- CHECK(usernameBufferLength == strlen("shimatta"));
- REQUIRE_THAT(usernameBuffer, Catch::Matchers::Equals("shimatta"));
- }
- }
- AND_WHEN("The user is logged out using the logout command") {
- write_length = 0;
- memset(write_data, 0, sizeof(write_data));
- ret = shellmatta_processData(handle, (char*)"logout\r", 7);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The Shellmatta prints the logout message") {
- char *dummyData = (char*) "logout\r\n"
- "good bye\r\n\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- AND_WHEN("The help command is called") {
- write_length = 0;
- memset(write_data, 0, sizeof(write_data));
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The help command prints only public commands.") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "public p\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(ret == SHELLMATTA_OK);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- }
- AND_WHEN("The a private function is called") {
- ret = shellmatta_processData(handle, (char*)"private\r", 8);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The command executed.") {
- char *dummyData = (char*) "private\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(privateTemp == 1u);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- WHEN("The user not_shellmatta is logged in") {
- ret = shellmatta_auth_login(handle, 2);
- CHECK(ret == SHELLMATTA_OK);
- AND_WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The help command prints not all commands.") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "public p\r\n"
- "\r\n"
- "not_shimatta@shellmatta->";
- CHECK(ret == SHELLMATTA_OK);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The not_shimatta user is logged in") {
- char usernameBuffer[16] = {0};
- uint32_t usernameBufferLength = sizeof(usernameBuffer);
- CHECK(2 == shellmatta_auth_getLoggedInUserId(handle));
- ret = shellmatta_auth_getLoggedInUserName(handle, usernameBuffer, &usernameBufferLength);
- CHECK(ret == SHELLMATTA_OK);
- CHECK(usernameBufferLength == strlen("not_shimatta"));
- REQUIRE_THAT(usernameBuffer, Catch::Matchers::Equals("not_shimatta"));
- }
- }
- }
- AND_WHEN("The a private function is called") {
- ret = shellmatta_processData(handle, (char*)"private\r", 8);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The command is not executed.") {
- char *dummyData = (char*) "private\r\n"
- "\r\n"
- "Command: private not found\r\n"
- "not_shimatta@shellmatta->";
- CHECK(privateTemp == 0u);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- WHEN("The user root is logged in") {
- ret = shellmatta_auth_login(handle, 3);
- CHECK(ret == SHELLMATTA_OK);
- AND_WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The help command prints all commands.") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "private r\r\n"
- "public p\r\n"
- "\r\n"
- "root@shellmatta->";
- CHECK(ret == SHELLMATTA_OK);
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- }
- }
- SCENARIO("Check login command with privileged user") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("The user shellmatta logs in interactively using the correct credentials") {
- ret = shellmatta_processData(handle, (char*)"login\r\n"
- "shimatta\r\n"
- "12345678\r", 26);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The login message is printed - password is hidden") {
- char *dummyData = (char*) "login\r\n"
- "enter username:\r\n"
- "shimatta\r\n"
- "enter password:\r\n"
- "\r\n"
- "login successful\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is logged in") {
- REQUIRE(1 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- WHEN("The user shellmatta logs in interactively using wrong credentials") {
- ret = shellmatta_processData(handle, (char*)"login\r\n"
- "shimatta\r\n"
- "11111111\r", 26);
- CHECK(ret == SHELLMATTA_OK);
- THEN("A warning message is printed") {
- char *dummyData = (char*) "login\r\n"
- "enter username:\r\n"
- "shimatta\r\n"
- "enter password:\r\n"
- "\r\n"
- "username or password is wrong\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is not logged in") {
- REQUIRE(0 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- WHEN("The user shellmatta logs in interactively manipulating the input") {
- ret = shellmatta_processData(handle, (char*)"login\r"
- "shimg\batta\r"
- "1h" "\x7f" "2346\033[D5\033[C78\b8\r", 36);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The login message is printed - password is hidden") {
- char *dummyData = (char*) "login\r\n"
- "enter username:\r\n"
- "shimg\033[1D\033[K\033[s\033[uatta\r\n"
- "enter password:\r\n"
- "\r\n"
- "login successful\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is logged in") {
- REQUIRE(1 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- WHEN("The user shellmatta logs in passing the credentials none interactive") {
- ret = shellmatta_processData(handle, (char*)"login -u shimatta -p 12345678\r", 30);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The login message is printed") {
- char *dummyData = (char*) "login -u shimatta -p 12345678\r\n"
- "login successful\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is logged in") {
- REQUIRE(1 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- WHEN("The user shellmatta logs in passing the credentials half interactive") {
- ret = shellmatta_processData(handle, (char*)"login -u shimatta\r12345678\r", 27);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The login message is printed - password is hidden") {
- char *dummyData = (char*) "login -u shimatta\r\n\r\n"
- "enter password:\r\n"
- "\r\n"
- "login successful\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is logged in") {
- REQUIRE(1 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- WHEN("The user shellmatta tries to login non interactive without username") {
- ret = shellmatta_processData(handle, (char*)"login -p 12345678\r", 18);
- CHECK(ret == SHELLMATTA_OK);
- THEN("A warning message is printed") {
- char *dummyData = (char*) "login -p 12345678\r\n"
- "Missing username\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is not logged in") {
- REQUIRE(0 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- WHEN("The user shellmatta tries to login using the wrong options") {
- ret = shellmatta_processData(handle, (char*)"login -o meow\r", 14);
- CHECK(ret == SHELLMATTA_OK);
- THEN("A warning message is printed") {
- char *dummyData = (char*) "login -o meow\r\n"
- "Unknown option\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is not logged in") {
- REQUIRE(0 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- }
- }
- SCENARIO("Check login command with unprivileged user") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("The user not_shimatta logs in interactively using the correct credentials") {
- ret = shellmatta_processData(handle, (char*)"login\r"
- "not_shimatta\r"
- "87654321\r", 28);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The login message is printed - password is hidden") {
- char *dummyData = (char*) "login\r\n"
- "enter username:\r\n"
- "not_shimatta\r\n"
- "enter password:\r\n"
- "\r\n"
- "login successful\r\n"
- "\r\n"
- "not_shimatta@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The not_shimatta user is logged in") {
- REQUIRE(2 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- }
- }
- SCENARIO("Check adding commands after the authentication is initialized") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("A command is added") {
- ret = shellmatta_addCmd(handle, &additionalCmd);
- CHECK(ret == SHELLMATTA_OK);
- AND_WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The additional command is not shown as it requires login") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "public p\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_WHEN("The rot user is logged in") {
- write_length = 0;
- memset(write_data, 0, sizeof(write_data));
- ret = shellmatta_auth_login(handle, 3);
- CHECK(ret == SHELLMATTA_OK);
- AND_WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("all commands are shown") {
- char *dummyData = (char*) "help\r\n"
- "additional a\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "login li Login command\r\n"
- "logout lo Logout command\r\n"
- "private r\r\n"
- "public p\r\n"
- "\r\n"
- "root@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- }
- }
- }
- }
- }
- shellmatta_retCode_t customLogin(const uint32_t userId, const char *password)
- {
- if ((userId == 1) && (0 == strcmp(password, "12345678")))
- {
- return SHELLMATTA_OK;
- }
- else if ((userId == 2) && (0 == strcmp(password, "87654321")))
- {
- return SHELLMATTA_OK;
- }
- return SHELLMATTA_ERROR;
- }
- void logFct(const uint32_t userId, bool success)
- {
- userIdTemp = userId;
- successTemp = success;
- }
- SCENARIO("Check custom login") {
- GIVEN("An initialized shellmatta instance with initialized auth with custom login and log") {
- TEST_SHELLMATTA_SETUP;
- shellmatta_auth_user_t userList[] = {
- {1, false, "shimatta", "12345678"},
- {2, false, "not_shimatta", "87654321"}
- };
- uint32_t privateCmdPerms[] = {1};
- shellmatta_auth_perm_t permList[] = {
- {"private", privateCmdPerms, sizeof(privateCmdPerms)/sizeof(privateCmdPerms[0])}
- };
- shellmatta_auth_init(handle, userList, 2, permList, 1, false, customLogin, logFct);
- WHEN("The user shimatta logs in interactively using the correct credentials") {
- ret = shellmatta_processData(handle, (char*)"login\r"
- "shimatta\r"
- "12345678\r", 24);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The login message is printed - password is hidden") {
- char *dummyData = (char*) "login\r\n"
- "enter username:\r\n"
- "shimatta\r\n"
- "enter password:\r\n"
- "\r\n"
- "login successful\r\n"
- "\r\n"
- "shimatta@shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is logged in") {
- REQUIRE(1 == shellmatta_auth_getLoggedInUserId(handle));
- }
- AND_THEN("The login event is logged") {
- CHECK(1 == userIdTemp);
- REQUIRE(true == successTemp);
- }
- }
- }
- WHEN("The user not_shimatta logs in interactively using the wrong credentials") {
- ret = shellmatta_processData(handle, (char*)"login\r"
- "shimatta\r"
- "12345679\r", 24);
- CHECK(ret == SHELLMATTA_OK);
- THEN("Login error message is printed") {
- char *dummyData = (char*) "login\r\n"
- "enter username:\r\n"
- "shimatta\r\n"
- "enter password:\r\n"
- "\r\n"
- "username or password is wrong\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- AND_THEN("The shimatta user is not logged in") {
- REQUIRE(0 == shellmatta_auth_getLoggedInUserId(handle));
- }
- AND_THEN("The failed login event is logged") {
- CHECK(1 == userIdTemp);
- REQUIRE(false == successTemp);
- }
- }
- }
- }
- }
- SCENARIO("Check custom login with custom login function") {
- GIVEN("An initialized shellmatta instance with initialized auth with custom login and log") {
- TEST_SHELLMATTA_SETUP;
- shellmatta_auth_user_t userList[] = {
- {1, false, "shimatta", "12345678"},
- {2, false, "not_shimatta", "87654321"}
- };
- uint32_t privateCmdPerms[] = {1};
- shellmatta_auth_perm_t permList[] = {
- {"private", privateCmdPerms, sizeof(privateCmdPerms)/sizeof(privateCmdPerms[0])}
- };
- shellmatta_auth_init(handle, userList, 2, permList, 1, true, customLogin, logFct);
- WHEN("The help command is called") {
- ret = shellmatta_processData(handle, (char*)"help\r", 5);
- CHECK(ret == SHELLMATTA_OK);
- THEN("There is no login command") {
- char *dummyData = (char*) "help\r\n"
- "help ? help [command] - print help or usage information\r\n"
- "logout lo Logout command\r\n"
- "public p\r\n"
- "\r\n"
- "shellmatta->";
- CHECK(write_length == strlen(dummyData));
- REQUIRE_THAT(write_data, Catch::Matchers::Equals(dummyData));
- }
- }
- }
- }
- SCENARIO("Check if passwords can be changed") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("The password of the shellmatta user is changed") {
- ret = shellmatta_auth_chpasswd(handle, "shimatta", "new_password");
- CHECK(ret == SHELLMATTA_OK);
- AND_WHEN("The user shellmatta logs in passing the new credentials") {
- ret = shellmatta_processData(handle, (char*)"login -u shimatta -p new_password\r", 34);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The shimatta user is logged in") {
- REQUIRE(1 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- AND_WHEN("The user shellmatta logs in passing the old credentials") {
- ret = shellmatta_processData(handle, (char*)"login -u shimatta -p 12345678\r", 30);
- CHECK(ret == SHELLMATTA_OK);
- THEN("The shimatta user is not logged in") {
- REQUIRE(0 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- }
- }
- SCENARIO("User functions with wrong parameters") {
- GIVEN("An initialized shellmatta instance with initialized auth") {
- TEST_SHELLMATTA_SETUP;
- TEST_SHELLMATTA_AUTH_SETUP;
- WHEN("Trying to log in user 0") {
- ret = shellmatta_auth_login(handle, 0);
- THEN("Shellmatta returns SHELLMATTA_ERROR") {
- CHECK(ret == SHELLMATTA_ERROR);
- AND_THEN("No user is logged in") {
- REQUIRE(0 == shellmatta_auth_getLoggedInUserId(handle));
- }
- }
- }
- }
- }
|