2020-02-19 21:44:56 +00:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <gmock/gmock.h>
|
|
|
|
|
|
|
|
#include <webfuse/provider/client_protocol.h>
|
|
|
|
#include <webfuse/provider/client_config.h>
|
2020-02-22 15:46:21 +00:00
|
|
|
#include "webfuse/utils/ws_server.hpp"
|
2020-02-23 22:20:26 +00:00
|
|
|
#include "webfuse/mocks/mock_provider_client.hpp"
|
2020-02-19 21:44:56 +00:00
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
#include <thread>
|
|
|
|
#include <atomic>
|
|
|
|
|
2020-02-22 15:46:21 +00:00
|
|
|
using webfuse_test::WebsocketServer;
|
2020-02-23 22:20:26 +00:00
|
|
|
using webfuse_test::MockProviderClient;
|
2020-02-19 21:44:56 +00:00
|
|
|
using testing::_;
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2020-02-23 22:20:26 +00:00
|
|
|
// ToDo: Refactor Me
|
2020-02-20 19:13:39 +00:00
|
|
|
class ClientProtocolTest: public ::testing::Test
|
2020-02-19 21:44:56 +00:00
|
|
|
{
|
2020-02-22 15:49:56 +00:00
|
|
|
public:
|
|
|
|
ClientProtocolTest()
|
|
|
|
: server(nullptr)
|
|
|
|
, config(nullptr)
|
|
|
|
, protocol(nullptr)
|
|
|
|
{
|
|
|
|
// empty
|
|
|
|
}
|
|
|
|
|
2020-02-20 19:13:39 +00:00
|
|
|
protected:
|
|
|
|
void SetUp()
|
2020-02-19 21:44:56 +00:00
|
|
|
{
|
2020-02-20 19:13:39 +00:00
|
|
|
config = wfp_client_config_create();
|
2020-02-23 22:20:26 +00:00
|
|
|
|
|
|
|
server = nullptr;
|
|
|
|
protocol = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TearDown()
|
|
|
|
{
|
|
|
|
if (nullptr != server)
|
|
|
|
{
|
|
|
|
StopServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void StartServer()
|
|
|
|
{
|
2020-02-20 19:13:39 +00:00
|
|
|
protocol = wfp_client_protocol_create(config);
|
|
|
|
|
2020-02-23 20:02:01 +00:00
|
|
|
struct lws_protocols client_protocol;
|
|
|
|
memset(&client_protocol, 0, sizeof(struct lws_protocols));
|
|
|
|
wfp_client_protocol_init_lws(protocol, &client_protocol);
|
2020-02-20 19:13:39 +00:00
|
|
|
|
2020-02-23 20:02:01 +00:00
|
|
|
server = new WebsocketServer(54321, &client_protocol, 1);
|
2020-02-19 21:44:56 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 22:20:26 +00:00
|
|
|
void StopServer()
|
2020-02-20 19:13:39 +00:00
|
|
|
{
|
2020-02-23 20:02:01 +00:00
|
|
|
delete server;
|
2020-02-20 19:13:39 +00:00
|
|
|
wfp_client_protocol_dispose(protocol);
|
|
|
|
wfp_client_config_dispose(config);
|
2020-02-19 21:44:56 +00:00
|
|
|
|
2020-02-23 22:20:26 +00:00
|
|
|
server = nullptr;
|
|
|
|
protocol = nullptr;
|
|
|
|
config = nullptr;
|
2020-02-23 20:02:01 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 22:20:26 +00:00
|
|
|
wfp_client_config * GetClientConfig()
|
|
|
|
{
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Connect()
|
2020-02-23 20:02:01 +00:00
|
|
|
{
|
|
|
|
wfp_client_protocol_connect(protocol, server->getContext(), "ws://localhost:54321/");
|
|
|
|
server->waitForConnection();
|
2020-02-20 19:13:39 +00:00
|
|
|
}
|
2020-02-19 21:44:56 +00:00
|
|
|
|
2020-02-23 22:20:26 +00:00
|
|
|
void AwaitAddFilesystem(std::string& filesystemName)
|
2020-02-22 15:46:21 +00:00
|
|
|
{
|
|
|
|
json_t * addFilesystemRequest = server->receiveMessage();
|
|
|
|
ASSERT_NE(nullptr, addFilesystemRequest);
|
|
|
|
ASSERT_TRUE(json_is_object(addFilesystemRequest));
|
|
|
|
|
|
|
|
json_t * method = json_object_get(addFilesystemRequest, "method");
|
|
|
|
ASSERT_TRUE(json_is_string(method));
|
|
|
|
ASSERT_STREQ("add_filesystem", json_string_value(method));
|
|
|
|
|
|
|
|
json_t * params = json_object_get(addFilesystemRequest, "params");
|
|
|
|
ASSERT_TRUE(json_is_array(params));
|
|
|
|
ASSERT_EQ(1, json_array_size(params));
|
|
|
|
|
|
|
|
json_t * filesystem = json_array_get(params, 0);
|
|
|
|
ASSERT_TRUE(json_is_string(filesystem));
|
|
|
|
filesystemName = json_string_value(filesystem);
|
|
|
|
|
|
|
|
json_t * id = json_object_get(addFilesystemRequest, "id");
|
|
|
|
ASSERT_TRUE(json_is_integer(id));
|
|
|
|
|
|
|
|
json_t * response = json_object();
|
|
|
|
json_t * result = json_object();
|
|
|
|
json_object_set(result, "id", filesystem);
|
|
|
|
json_object_set_new(response, "result", result);
|
|
|
|
json_object_set(response, "id", id);
|
|
|
|
|
|
|
|
server->sendMessage(response);
|
|
|
|
|
|
|
|
json_decref(addFilesystemRequest);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WebsocketServer * server;
|
2020-02-19 21:44:56 +00:00
|
|
|
|
2020-02-20 19:13:39 +00:00
|
|
|
private:
|
|
|
|
wfp_client_config * config;
|
|
|
|
wfp_client_protocol * protocol;
|
|
|
|
};
|
2020-02-19 21:44:56 +00:00
|
|
|
|
2020-02-20 19:13:39 +00:00
|
|
|
}
|
2020-02-19 21:44:56 +00:00
|
|
|
|
|
|
|
|
2020-02-20 19:13:39 +00:00
|
|
|
TEST_F(ClientProtocolTest, connect)
|
|
|
|
{
|
2020-02-23 22:20:26 +00:00
|
|
|
StartServer();
|
|
|
|
Connect();
|
2020-02-23 20:02:01 +00:00
|
|
|
if (HasFatalFailure()) { return; }
|
2020-02-23 22:20:26 +00:00
|
|
|
|
|
|
|
StopServer();
|
2020-02-22 15:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClientProtocolTest, getattr)
|
|
|
|
{
|
2020-02-23 22:20:26 +00:00
|
|
|
MockProviderClient client;
|
|
|
|
client.AttachTo(GetClientConfig());
|
|
|
|
|
|
|
|
EXPECT_CALL(client, OnConnected()).Times(1);
|
|
|
|
EXPECT_CALL(client, OnDisconnected()).Times(1);
|
|
|
|
EXPECT_CALL(client, GetAttr(1, _)).Times(1);
|
|
|
|
|
|
|
|
StartServer();
|
|
|
|
Connect();
|
2020-02-23 20:02:01 +00:00
|
|
|
if (HasFatalFailure()) { return; }
|
2020-02-22 15:46:21 +00:00
|
|
|
|
|
|
|
std::string filesystem;
|
2020-02-23 22:20:26 +00:00
|
|
|
AwaitAddFilesystem(filesystem);
|
2020-02-22 15:46:21 +00:00
|
|
|
if (HasFatalFailure()) { return; }
|
|
|
|
|
|
|
|
json_t * params = json_array();
|
|
|
|
json_array_append_new(params, json_string(filesystem.c_str()));
|
|
|
|
json_array_append_new(params, json_integer(1));
|
|
|
|
json_t * request = json_object();
|
|
|
|
json_object_set_new(request, "method", json_string("getattr"));
|
|
|
|
json_object_set_new(request, "params", params);
|
|
|
|
json_object_set_new(request, "id", json_integer(42));
|
|
|
|
|
|
|
|
server->sendMessage(request);
|
|
|
|
json_t * response = server->receiveMessage();
|
|
|
|
ASSERT_TRUE(json_is_object(response));
|
|
|
|
|
|
|
|
json_decref(response);
|
2020-02-23 22:20:26 +00:00
|
|
|
|
|
|
|
StopServer();
|
2020-02-19 21:44:56 +00:00
|
|
|
}
|