123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314 |
- #include <gmock/gmock.h>
- #include <gtest/gtest.h>
- #include "../include/JsonCommander.h"
- #include "../include/Notifications.h"
- #include "FileManagerMock.h"
- namespace {
- /* Version tests */
- TEST(testVersion, PositiveAllEqual) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- Json::Value message;
- message["major"] = 0;
- message["minor"] = 1;
- JsonCommander::Response response = jsonCommander.testVersion(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["major"].asInt(), jsonCommander.protocolMajorVersion);
- EXPECT_EQ(response.json["minor"].asInt(), jsonCommander.protocolMinorVersion);
- }
- TEST(testVersion, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- Json::Value message;
- message["major"] = jsonCommander.protocolMajorVersion;
- message["minor"] = jsonCommander.protocolMinorVersion - 1;
- JsonCommander::Response response = jsonCommander.testVersion(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["major"].asInt(), jsonCommander.protocolMajorVersion);
- EXPECT_EQ(response.json["minor"].asInt(), jsonCommander.protocolMinorVersion);
- }
- TEST(testVersion, InvalidRequest) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- Json::Value message;
- message["major"] = "def";
- message["minor"] = "abc";
- JsonCommander::Response response = jsonCommander.testVersion(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["major"].asInt(), jsonCommander.protocolMajorVersion);
- EXPECT_EQ(response.json["minor"].asInt(), jsonCommander.protocolMinorVersion);
- }
- TEST(testVersion, NotEqualMajorNumber) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- Json::Value message;
- message["major"] = jsonCommander.protocolMajorVersion + 1;
- message["minor"] = jsonCommander.protocolMinorVersion;
- JsonCommander::Response response = jsonCommander.testVersion(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["major"].asInt(), jsonCommander.protocolMajorVersion);
- EXPECT_EQ(response.json["minor"].asInt(), jsonCommander.protocolMinorVersion);
- }
- TEST(testVersion, BiggerMinorNumber) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- Json::Value message;
- message["major"] = jsonCommander.protocolMajorVersion;
- message["minor"] = jsonCommander.protocolMinorVersion + 1;
- JsonCommander::Response response = jsonCommander.testVersion(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["major"].asInt(), jsonCommander.protocolMajorVersion);
- EXPECT_EQ(response.json["minor"].asInt(), jsonCommander.protocolMinorVersion);
- }
- /* Status tests */
- TEST(Status, Ok) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "status";
- Json::Value message;
- message["command"] = command;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["response"].asString(), "ok");
- }
- TEST(Status, Downloading) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "status";
- Json::Value message;
- message["command"] = command;
- ON_CALL(fileManager, isDownloading()).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["response"].asString(), "download running");
- }
- TEST(Status, Uploading) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "status";
- Json::Value message;
- message["command"] = command;
- ON_CALL(fileManager, isUploading()).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["response"].asString(), "upload running");
- }
- TEST(Status, UploadingAndDownloading) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "status";
- Json::Value message;
- message["command"] = command;
- ON_CALL(fileManager, isDownloading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, isUploading()).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["response"].asString(), "download and upload running");
- }
- /* Close tests */
- TEST(Close, Close) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "close";
- Json::Value message;
- message["command"] = command;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["response"].asString(), "bye");
- }
- /* Put tests */
- TEST(Put, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "put";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- message["size"] = 1337;
- message["chunks"] = 1;
- ON_CALL(fileManager, openPutFile(testing::_)).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Put, Negative) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "put";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- message["size"] = 1337;
- message["chunks"] = 1;
- ON_CALL(fileManager, openPutFile(testing::_)).WillByDefault(testing::Return(false));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_TRUE(response.json["error"].asString().length() > 0);
- }
- /* Putdata tests */
- TEST(Putdata, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- /* start with put */
- std::string command = "put";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- message["size"] = 1337;
- const int chunks = 3;
- message["chunks"] = chunks;
- ON_CALL(fileManager, openPutFile(testing::_)).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- /* putdata */
- command = "putdata";
- ON_CALL(fileManager, isUploading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, getPutBaseFileName()).WillByDefault(testing::Return(filename));
- for (int remaining = chunks - 1; remaining >= 0; remaining--) {
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["data"] = "MTMzNw==";
- message["remaining"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["received"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- }
- TEST(Putdata, Cancel) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- /* start with put */
- std::string command = "put";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- message["size"] = 1337;
- const int chunks = 3;
- message["chunks"] = chunks;
- ON_CALL(fileManager, openPutFile(testing::_)).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- /* putdata */
- command = "putdata";
- ON_CALL(fileManager, isUploading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, getPutBaseFileName()).WillByDefault(testing::Return(filename));
- int remaining = chunks - 1;
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["data"] = "MTMzNw==";
- message["remaining"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["received"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- // cancel transfer
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["data"] = "MTMzNw==";
- message["remaining"] = --remaining;
- message["cancel"] = true;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["received"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Putdata, WrongRemaining) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- /* start with put */
- std::string command = "put";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- message["size"] = 1337;
- const int chunks = 3;
- message["chunks"] = chunks;
- ON_CALL(fileManager, openPutFile(testing::_)).WillByDefault(testing::Return(true));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- /* putdata */
- command = "putdata";
- ON_CALL(fileManager, isUploading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, getPutBaseFileName()).WillByDefault(testing::Return(filename));
- int remaining = chunks - 1;
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["data"] = "MTMzNw==";
- message["remaining"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["received"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["error"].asString(), "");
- message = Json::Value();
- // skip remaining=1 and provoke an error
- remaining = 0;
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["data"] = "MTMzNw==";
- message["remaining"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["received"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_TRUE(response.json["error"].asString().length() > 0);
- }
- /* Get tests */
- TEST(Get, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "get";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- const int chunks = 3;
- EXPECT_CALL(fileManager, openGetFile(testing::_)).WillOnce(testing::Return(std::pair<bool, int>(true, chunks)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Get, Negative) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "get";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- EXPECT_CALL(fileManager, openGetFile(testing::_)).WillOnce(testing::Return(std::pair<bool, int>(false, -1)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["chunks"].asInt(), -1);
- EXPECT_TRUE(response.json["error"].asString().length() > 0);
- }
- /* Getdata tests */
- TEST(Getdata, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- std::string command = "get";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- const int chunks = 3;
- EXPECT_CALL(fileManager, openGetFile(testing::_)).WillOnce(testing::Return(std::pair<bool, int>(true, chunks)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
- /* getdata */
- command = "getdata";
- ON_CALL(fileManager, isDownloading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, getGetBaseFileName()).WillByDefault(testing::Return(filename));
- std::vector<char> data;
- data.push_back('1');
- data.push_back('3');
- data.push_back('3');
- data.push_back('7');
- ON_CALL(fileManager, readGet()).WillByDefault(testing::Return(data));
- for (int remaining = chunks - 1; remaining >= 0; remaining--) {
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["chunk"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["data"].asString(), "MTMzNw==");
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- }
- TEST(Getdata, Cancle) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- std::string command = "get";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- const int chunks = 3;
- EXPECT_CALL(fileManager, openGetFile(testing::_)).WillOnce(testing::Return(std::pair<bool, int>(true, chunks)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
- /* getdata */
- command = "getdata";
- ON_CALL(fileManager, isDownloading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, getGetBaseFileName()).WillByDefault(testing::Return(filename));
- std::vector<char> data;
- data.push_back('1');
- data.push_back('3');
- data.push_back('3');
- data.push_back('7');
- ON_CALL(fileManager, readGet()).WillByDefault(testing::Return(data));
- int remaining = chunks - 1;
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["chunk"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["data"].asString(), "MTMzNw==");
- EXPECT_EQ(response.json["error"].asString(), "");
- // set cancel to true
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["chunk"] = --remaining;
- message["cancel"] = true;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["data"].asString(), "");
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Getdata, WrongChunk) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- std::string command = "get";
- const std::string filename = "cool.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = filename;
- const int chunks = 3;
- EXPECT_CALL(fileManager, openGetFile(testing::_)).WillOnce(testing::Return(std::pair<bool, int>(true, chunks)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
- /* getdata */
- command = "getdata";
- ON_CALL(fileManager, isDownloading()).WillByDefault(testing::Return(true));
- ON_CALL(fileManager, getGetBaseFileName()).WillByDefault(testing::Return(filename));
- std::vector<char> data;
- data.push_back('1');
- data.push_back('3');
- data.push_back('3');
- data.push_back('7');
- ON_CALL(fileManager, readGet()).WillByDefault(testing::Return(data));
- int remaining = chunks - 1;
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["chunk"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["data"].asString(), "MTMzNw==");
- EXPECT_EQ(response.json["error"].asString(), "");
- // skip chunk=0
- remaining = 0;
- message = Json::Value();
- message["command"] = command;
- message["file"] = filename;
- message["chunk"] = remaining;
- message["cancel"] = false;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining);
- EXPECT_EQ(response.json["file"].asString(), filename);
- EXPECT_EQ(response.json["data"].asString(), "");
- EXPECT_TRUE(response.json["error"].asString().length() > 0);
- }
- /* List tests */
- TEST(List, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "list";
- Json::Value message;
- message["command"] = command;
- EXPECT_CALL(fileManager, openList()).WillOnce(testing::Return(1));
- EXPECT_CALL(fileManager, getListSize()).WillOnce(testing::Return(5));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["chunks"].asInt(), 1);
- EXPECT_EQ(response.json["items"].asInt(), 5);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(List, Negative) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "list";
- Json::Value message;
- message["command"] = command;
- EXPECT_CALL(fileManager, openList()).WillOnce(testing::Return(-1));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["chunks"].asInt(), -1);
- EXPECT_EQ(response.json["items"].asInt(), -1);
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(List, EmptyList) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "list";
- Json::Value message;
- message["command"] = command;
- EXPECT_CALL(fileManager, openList()).WillOnce(testing::Return(0));
- EXPECT_CALL(fileManager, getListSize()).WillOnce(testing::Return(0));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["chunks"].asInt(), 0);
- EXPECT_EQ(response.json["items"].asInt(), 0);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- /* Listdata tests */
- void fillExampleFileList(std::vector<std::string> (&chunk)[3]) {
- chunk[0].push_back("file01.txt");
- chunk[0].push_back("bumdibumps");
- chunk[0].push_back("1");
- chunk[0].push_back("Ich habe Hunger.txt");
- chunk[0].push_back("answerIs42");
- chunk[0].push_back("123456789456115811");
- chunk[0].push_back("kek");
- chunk[1].push_back("1337");
- chunk[1].push_back("cats.png");
- chunk[1].push_back("more_cats.png");
- chunk[1].push_back("ugly dog.tiff");
- chunk[1].push_back("hello.txt");
- chunk[1].push_back("bye.exe");
- chunk[1].push_back("poster.pdf");
- chunk[2].push_back("headbang.gif");
- chunk[2].push_back("feelsbad.jpg");
- chunk[2].push_back("hack.s");
- chunk[2].push_back("SodiumChloride");
- chunk[2].push_back("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrst"
- "uvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMN"
- "OPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
- }
- TEST(Listdata, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "listdata";
- const int chunks = 3;
- std::vector<std::string> chunk[chunks];
- fillExampleFileList(chunk);
- int remaining = chunks - 1;
- for (int k = 0; k < chunks; k++) {
- Json::Value message;
- message["command"] = command;
- message["chunk"] = remaining;
- message["cancel"] = false;
- EXPECT_CALL(fileManager, getRemainingListChunks()).WillOnce(testing::Return(remaining + 1));
- EXPECT_CALL(fileManager, getNextChunkFromList()).WillOnce(testing::Return(chunk[k]));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining--);
- EXPECT_TRUE(response.json["names"].isArray());
- Json::Value array = response.json["names"];
- EXPECT_EQ(array.size(), chunk[k].size());
- for (int i = 0; i < 3; i++) {
- EXPECT_EQ(array[i].asString(), chunk[k][i]);
- }
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- }
- TEST(Listdata, Cancel) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "listdata";
- const int chunks = 3;
- std::vector<std::string> chunk[chunks];
- fillExampleFileList(chunk);
- int remaining = chunks - 1;
- Json::Value message;
- message["command"] = command;
- message["chunk"] = remaining;
- message["cancel"] = false;
- EXPECT_CALL(fileManager, getRemainingListChunks()).WillOnce(testing::Return(remaining + 1));
- EXPECT_CALL(fileManager, getNextChunkFromList()).WillOnce(testing::Return(chunk[0]));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining--);
- EXPECT_TRUE(response.json["names"].isArray());
- Json::Value array = response.json["names"];
- EXPECT_EQ(array.size(), chunk[0].size());
- for (int i = 0; i < 3; i++) {
- EXPECT_EQ(array[i].asString(), chunk[0][i]);
- }
- EXPECT_EQ(response.json["error"].asString(), "");
- message = Json::Value();
- message["command"] = command;
- message["chunk"] = remaining;
- message["cancel"] = true;
- EXPECT_CALL(fileManager, getRemainingListChunks()).WillOnce(testing::Return(remaining + 1));
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), remaining--);
- EXPECT_TRUE(response.json["names"].isArray());
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Listdata, WrongChunkNumber) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "listdata";
- const int chunks = 3;
- int remaining = chunks - 1;
- Json::Value message;
- message["command"] = command;
- message["chunk"] = remaining;
- message["cancel"] = false;
- // return smaller remaining
- EXPECT_CALL(fileManager, getRemainingListChunks()).WillOnce(testing::Return(remaining));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), -1);
- EXPECT_TRUE(response.json["names"].isArray());
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(Listdata, NoChunksToBeSend) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "listdata";
- const int chunks = 0;
- Json::Value message;
- message["command"] = command;
- message["chunk"] = 1;
- message["cancel"] = false;
- // return smaller remaining
- EXPECT_CALL(fileManager, getRemainingListChunks()).WillOnce(testing::Return(chunks));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), -1);
- EXPECT_TRUE(response.json["names"].isArray());
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(Listdata, InvalidRequest) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "listdata";
- const int chunks = 3;
- Json::Value message;
- message["command"] = command;
- message["chunk"] = 1;
- // return smaller remaining
- EXPECT_CALL(fileManager, getRemainingListChunks()).WillOnce(testing::Return(chunks));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["cancel"].asBool());
- EXPECT_EQ(response.json["remaining"].asInt(), -1);
- EXPECT_TRUE(response.json["names"].isArray());
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(Head, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "head";
- const std::string file = "asdf.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- std::vector<char> bytes = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'};
- const std::string bytesAsString = "YWJjZGVmZ2g=";
- EXPECT_CALL(fileManager, getBytesFromFile(testing::_, testing::_)).WillOnce(testing::Return(std::make_pair(bytes, FileManager::Error::no_error)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), file);
- EXPECT_EQ(response.json["data"].asString(), bytesAsString);
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Head, InvalidRequest) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "head";
- const int file = 3641;
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), "");
- EXPECT_EQ(response.json["data"].asString(), "");
- EXPECT_NE(response.json["error"].asString(), "");
- }
- TEST(Head, NoSuchFile) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "head";
- const std::string file = "asdf.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- std::vector<char> bytes;
- EXPECT_CALL(fileManager, getBytesFromFile(testing::_, testing::_)).WillOnce(testing::Return(std::make_pair(bytes, FileManager::Error::no_such_file)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), file);
- EXPECT_EQ(response.json["data"].asString(), "");
- EXPECT_NE(response.json["error"].asString(), "");
- }
- TEST(Head, FileTooSmall) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "head";
- const std::string file = "asdf.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- std::vector<char> bytes;
- EXPECT_CALL(fileManager, getBytesFromFile(testing::_, testing::_)).WillOnce(testing::Return(std::make_pair(bytes, FileManager::Error::file_too_small)));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["file"].asString(), file);
- EXPECT_EQ(response.json["data"].asString(), "");
- EXPECT_NE(response.json["error"].asString(), "");
- }
- TEST(Deleteme, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- // need to set currentUser in jsonCommander via calling checkLogin
- Json::Value login;
- login["login"] = true;
- login["user"] = "positive";
- login["pass"] = "positive";
- login["cancel"] = false;
- JsonCommander::Response loginRes = jsonCommander.checkLogin(login);
- EXPECT_TRUE(loginRes.json["accept"].asBool());
- EXPECT_EQ(loginRes.json["error"].asString(), "");
- // now the actual test
- const std::string command = "deleteme";
- Json::Value message;
- message["command"] = command;
- message["pass"] = "positive";
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_EQ(response.action, JsonCommander::Action::closeAndSend);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(Deleteme, Negative) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- // need to set currentUser in jsonCommander via calling checkLogin
- Json::Value login;
- login["login"] = true;
- login["user"] = "positive";
- login["pass"] = "positive";
- login["cancel"] = false;
- JsonCommander::Response loginRes = jsonCommander.checkLogin(login);
- EXPECT_TRUE(loginRes.json["accept"].asBool());
- EXPECT_EQ(loginRes.json["error"].asString(), "");
- // now the actual test
- const std::string command = "deleteme";
- Json::Value message;
- message["command"] = command;
- message["pass"] = "negative";
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_EQ(response.action, JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_NE(response.json["error"].asString(), "");
- }
- TEST(Deleteme, InvalidRequest) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- // need to set currentUser in jsonCommander via calling checkLogin
- Json::Value login;
- login["login"] = true;
- login["user"] = "positive";
- login["pass"] = "positive";
- login["cancel"] = false;
- JsonCommander::Response loginRes = jsonCommander.checkLogin(login);
- EXPECT_TRUE(loginRes.json["accept"].asBool());
- EXPECT_EQ(loginRes.json["error"].asString(), "");
- // now the actual test
- const std::string command = "deleteme";
- Json::Value message;
- message["command"] = command;
- message["pass"] = 123;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_EQ(response.action, JsonCommander::Action::closeAndSend);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_NE(response.json["error"].asString(), "");
- }
- TEST(DeleteFile, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "deletefile";
- const std::string file = "asdf.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- EXPECT_CALL(fileManager, deleteFile(file)).WillOnce(testing::Return(FileManager::Error::no_error));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["file"].asString(), file);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- }
- TEST(DeleteFile, InvalidRequest) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "deletefile";
- const int file = 3641;
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["file"].asString(), "");
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(DeleteFile, FileDoesNotExist) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "deletefile";
- const std::string file = "asdf.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- EXPECT_CALL(fileManager, deleteFile(file)).WillOnce(testing::Return(FileManager::Error::no_such_file));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["file"].asString(), file);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(DeleteFile, DisabledInConfig) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "deletefile";
- const std::string file = "asdf.txt";
- Json::Value message;
- message["command"] = command;
- message["file"] = file;
- EXPECT_CALL(fileManager, deleteFile(file)).WillOnce(testing::Return(FileManager::Error::not_allowed));
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_EQ(response.json["file"].asString(), file);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_TRUE(response.json["error"].asString().compare("") != 0);
- }
- TEST(Notifications, NoMessage) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "notifications";
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- Json::Value message;
- message["command"] = command;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- EXPECT_TRUE(response.json["messages"].isNull());
- }
- TEST(Notifications, OneMessage) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "notifications";
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- Notifications::newNotification("asdf");
- Json::Value message;
- message["command"] = command;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- EXPECT_TRUE(response.json["messages"].isArray());
- EXPECT_EQ(response.json["messages"][0], "asdf");
- // cleaning up
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- }
- TEST(Notifications, OneMessageMultipleTimesCalled) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "notifications";
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- Notifications::newNotification("asdf");
- Json::Value message;
- message["command"] = command;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- EXPECT_TRUE(response.json["messages"].isArray());
- EXPECT_EQ(response.json["messages"][0], "asdf");
- // make suhre that timestamp from message is older
- Notifications::messages.at(0).first--;
- response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- EXPECT_TRUE(response.json["messages"].isNull());
- // cleaning up
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- }
- TEST(Notifications, TwoMessages) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string command = "notifications";
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- Notifications::newNotification("asdf");
- Notifications::newNotification("qwer");
- Json::Value message;
- message["command"] = command;
- JsonCommander::Response response = jsonCommander.execute(message);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_EQ(response.json["command"].asString(), command);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["error"].asString(), "");
- EXPECT_TRUE(response.json["messages"].isArray());
- EXPECT_EQ(response.json["messages"][0], "asdf");
- EXPECT_EQ(response.json["messages"][1], "qwer");
- // cleaning up
- Notifications::messages.clear();
- Notifications::userTimeStamps.clear();
- }
- } // namespace
|