blob: 2c68c0bc64802ba1a1d232ba3115bf86eeb4824c [file] [log] [blame]
#include "ibm/management_console_rest.hpp"
#include "nlohmann/json.hpp"
#include <string>
#include "gmock/gmock.h"
namespace crow
{
namespace ibm_mc
{
TEST(IsValidConfigFileName, FileNameValidCharReturnsTrue)
{
crow::Response res;
EXPECT_TRUE(isValidConfigFileName("GoodConfigFile", res));
}
TEST(IsValidConfigFileName, FileNameInvalidCharReturnsFalse)
{
crow::Response res;
EXPECT_FALSE(isValidConfigFileName("Bad@file", res));
}
TEST(IsValidConfigFileName, FileNameInvalidPathReturnsFalse)
{
crow::Response res;
EXPECT_FALSE(isValidConfigFileName("/../../../../../etc/badpath", res));
EXPECT_FALSE(isValidConfigFileName("/../../etc/badpath", res));
EXPECT_FALSE(isValidConfigFileName("/mydir/configFile", res));
}
TEST(IsValidConfigFileName, EmptyFileNameReturnsFalse)
{
crow::Response res;
EXPECT_FALSE(isValidConfigFileName("", res));
}
TEST(IsValidConfigFileName, SlashFileNameReturnsFalse)
{
crow::Response res;
EXPECT_FALSE(isValidConfigFileName("/", res));
}
TEST(IsValidConfigFileName, FileNameMoreThan20CharReturnsFalse)
{
crow::Response res;
EXPECT_FALSE(isValidConfigFileName("BadfileBadfileBadfile", res));
}
} // namespace ibm_mc
} // namespace crow