123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631 |
- #include <gmock/gmock.h>
- #include <gtest/gtest.h>
- #include "../include/JsonCommander.h"
- #include "FileManagerMock.h"
- namespace {
- TEST(testVersion, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string versionString = "0.2";
- Json::Value version;
- version["version"] = versionString;
- JsonCommander::Response response = jsonCommander.testVersion(version);
- EXPECT_TRUE(response.action == JsonCommander::Action::send);
- EXPECT_TRUE(response.json["accept"].asBool());
- EXPECT_EQ(response.json["version"].asString(), versionString);
- }
- TEST(testVersion, Negative) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
- const std::string versionString = "0.1";
- Json::Value version;
- version["version"] = versionString;
- JsonCommander::Response response = jsonCommander.testVersion(version);
- EXPECT_TRUE(response.action == JsonCommander::Action::closeAndSend);
- EXPECT_FALSE(response.json["accept"].asBool());
- EXPECT_FALSE(response.json["version"].asString().compare(versionString) == 0);
- }
- 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");
- }
- 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");
- }
- 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);
- }
- TEST(Putdata, Positive) {
- FileManagerMock fileManager;
- JsonCommander jsonCommander(fileManager);
-
- 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(), "");
-
- 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);
-
- 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(), "");
-
- 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();
- 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);
-
- 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(), "");
-
- 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();
-
- 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);
- }
- 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;
- EXPECT_CALL(fileManager, openGetFile(testing::_, testing::_))
- .WillOnce(testing::DoAll(testing::SetArgReferee<1, int>(3),
- 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_TRUE(response.json["chunks"].asInt() > 0);
- 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::_, testing::_))
- .WillOnce(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_EQ(response.json["chunks"].asInt(), -1);
- EXPECT_TRUE(response.json["error"].asString().length() > 0);
- }
- 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::_, testing::_))
- .WillOnce(testing::DoAll(testing::SetArgReferee<1, int>(chunks),
- 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["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
-
- 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::_, testing::_))
- .WillOnce(testing::DoAll(testing::SetArgReferee<1, int>(chunks),
- 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["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
-
- 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(), "");
-
- 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::_, testing::_))
- .WillOnce(testing::DoAll(testing::SetArgReferee<1, int>(chunks),
- 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["chunks"].asInt(), chunks);
- EXPECT_EQ(response.json["error"].asString(), "");
-
- 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(), "");
-
- 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);
- }
- }
|