osquery-1/osquery/database/tests/results_tests.cpp
2015-10-17 00:18:35 +00:00

299 lines
8.5 KiB
C++

/*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include <sstream>
#include <string>
#include <vector>
#include <gtest/gtest.h>
#include <osquery/database.h>
#include <osquery/logger.h>
#include "osquery/core/test_util.h"
namespace pt = boost::property_tree;
namespace osquery {
class ResultsTests : public testing::Test {};
std::string escapeNonPrintableBytes(const std::string& data);
TEST_F(ResultsTests, test_simple_diff) {
QueryData o;
QueryData n;
Row r1;
r1["foo"] = "bar";
n.push_back(r1);
auto results = diff(o, n);
EXPECT_EQ(results.added, n);
EXPECT_EQ(results.removed, o);
}
TEST_F(ResultsTests, test_serialize_row) {
auto results = getSerializedRow();
pt::ptree tree;
auto s = serializeRow(results.second, tree);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, tree);
}
TEST_F(ResultsTests, test_deserialize_row_json) {
auto results = getSerializedRow();
std::string input;
serializeRowJSON(results.second, input);
// Pull the serialized JSON back into a Row output container.
Row output;
auto s = deserializeRowJSON(input, output);
EXPECT_TRUE(s.ok());
// The output container should match the input row.
EXPECT_EQ(output, results.second);
}
TEST_F(ResultsTests, test_serialize_query_data) {
auto results = getSerializedQueryData();
pt::ptree tree;
auto s = serializeQueryData(results.second, tree);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, tree);
}
TEST_F(ResultsTests, test_serialize_query_data_json) {
auto results = getSerializedQueryDataJSON();
std::string json;
auto s = serializeQueryDataJSON(results.second, json);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, json);
}
TEST_F(ResultsTests, test_deserialize_query_data_json) {
auto results = getSerializedQueryDataJSON();
// Pull the serialized JSON back into a QueryData output container.
QueryData output;
auto s = deserializeQueryDataJSON(results.first, output);
EXPECT_TRUE(s.ok());
// The output container should match the input query data.
EXPECT_EQ(output, results.second);
}
TEST_F(ResultsTests, test_serialize_diff_results) {
auto results = getSerializedDiffResults();
pt::ptree tree;
auto s = serializeDiffResults(results.second, tree);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, tree);
}
TEST_F(ResultsTests, test_serialize_diff_results_json) {
auto results = getSerializedDiffResultsJSON();
std::string json;
auto s = serializeDiffResultsJSON(results.second, json);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, json);
}
TEST_F(ResultsTests, test_serialize_query_log_item) {
auto results = getSerializedQueryLogItem();
pt::ptree tree;
auto s = serializeQueryLogItem(results.second, tree);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, tree);
}
TEST_F(ResultsTests, test_serialize_query_log_item_json) {
auto results = getSerializedQueryLogItemJSON();
std::string json;
auto s = serializeQueryLogItemJSON(results.second, json);
EXPECT_TRUE(s.ok());
EXPECT_EQ(s.toString(), "OK");
EXPECT_EQ(results.first, json);
}
TEST_F(ResultsTests, test_deserialize_query_log_item_json) {
auto results = getSerializedQueryLogItemJSON();
// Pull the serialized JSON back into a QueryLogItem output container.
QueryLogItem output;
auto s = deserializeQueryLogItemJSON(results.first, output);
EXPECT_TRUE(s.ok());
// The output container should match the input query data.
EXPECT_EQ(output, results.second);
}
TEST_F(ResultsTests, test_serialize_distributed_query_request) {
DistributedQueryRequest r;
r.query = "foo";
r.id = "bar";
pt::ptree tree;
auto s = serializeDistributedQueryRequest(r, tree);
EXPECT_TRUE(s.ok());
EXPECT_EQ(tree.get<std::string>("query"), "foo");
EXPECT_EQ(tree.get<std::string>("id"), "bar");
}
TEST_F(ResultsTests, test_deserialize_distributed_query_request) {
pt::ptree tree;
tree.put<std::string>("query", "foo");
tree.put<std::string>("id", "bar");
DistributedQueryRequest r;
auto s = deserializeDistributedQueryRequest(tree, r);
EXPECT_TRUE(s.ok());
EXPECT_EQ(r.query, "foo");
EXPECT_EQ(r.id, "bar");
}
TEST_F(ResultsTests, test_deserialize_distributed_query_request_json) {
auto json =
"{"
" \"query\": \"foo\","
" \"id\": \"bar\""
"}";
DistributedQueryRequest r;
auto s = deserializeDistributedQueryRequestJSON(json, r);
EXPECT_TRUE(s.ok());
EXPECT_EQ(r.query, "foo");
EXPECT_EQ(r.id, "bar");
}
TEST_F(ResultsTests, test_serialize_distributed_query_result) {
DistributedQueryResult r;
r.request.query = "foo";
r.request.id = "bar";
Row r1;
r1["foo"] = "bar";
r.results = {r1};
pt::ptree tree;
auto s = serializeDistributedQueryResult(r, tree);
EXPECT_TRUE(s.ok());
EXPECT_EQ(tree.get<std::string>("request.query"), "foo");
EXPECT_EQ(tree.get<std::string>("request.id"), "bar");
auto& results = tree.get_child("results");
for (const auto& q : results) {
for (const auto& row : q.second) {
EXPECT_EQ(row.first, "foo");
EXPECT_EQ(q.second.get<std::string>(row.first), "bar");
}
}
}
TEST_F(ResultsTests, test_deserialize_distributed_query_result) {
pt::ptree request;
request.put<std::string>("id", "foo");
request.put<std::string>("query", "bar");
pt::ptree row;
row.put<std::string>("foo", "bar");
pt::ptree results;
results.push_back(std::make_pair("", row));
pt::ptree query_result;
query_result.put_child("request", request);
query_result.put_child("results", results);
DistributedQueryResult r;
auto s = deserializeDistributedQueryResult(query_result, r);
EXPECT_TRUE(s.ok());
EXPECT_EQ(r.request.id, "foo");
EXPECT_EQ(r.request.query, "bar");
EXPECT_EQ(r.results[0]["foo"], "bar");
}
TEST_F(ResultsTests, test_deserialize_distributed_query_result_json) {
auto json =
"{"
" \"request\": {"
" \"id\": \"foo\","
" \"query\": \"bar\""
" },"
" \"results\": ["
" {"
" \"foo\": \"bar\""
" }"
" ]"
"}";
DistributedQueryResult r;
auto s = deserializeDistributedQueryResultJSON(json, r);
EXPECT_TRUE(s.ok());
EXPECT_EQ(r.request.id, "foo");
EXPECT_EQ(r.request.query, "bar");
EXPECT_EQ(r.results[0]["foo"], "bar");
}
TEST_F(ResultsTests, test_unicode_to_ascii_conversion) {
EXPECT_EQ(escapeNonPrintableBytes("しかたがない"),
"\\xE3\\x81\\x97\\xE3\\x81\\x8B\\xE3\\x81\\x9F\\xE3\\x81\\x8C\\xE3"
"\\x81\\xAA\\xE3\\x81\\x84");
EXPECT_EQ(escapeNonPrintableBytes("悪因悪果"),
"\\xE6\\x82\\xAA\\xE5\\x9B\\xA0\\xE6\\x82\\xAA\\xE6\\x9E\\x9C");
EXPECT_EQ(escapeNonPrintableBytes("モンスターハンター"),
"\\xE3\\x83\\xA2\\xE3\\x83\\xB3\\xE3\\x82\\xB9\\xE3\\x82\\xBF\\xE3"
"\\x83\\xBC\\xE3\\x83\\x8F\\xE3\\x83\\xB3\\xE3\\x82\\xBF\\xE3\\x83"
"\\xBC");
EXPECT_EQ(
escapeNonPrintableBytes(
"съешь же ещё этих мягких французских булок, да выпей чаю"),
"\\xD1\\x81\\xD1\\x8A\\xD0\\xB5\\xD1\\x88\\xD1\\x8C \\xD0\\xB6\\xD0\\xB5 "
"\\xD0\\xB5\\xD1\\x89\\xD1\\x91 \\xD1\\x8D\\xD1\\x82\\xD0\\xB8\\xD1\\x85 "
"\\xD0\\xBC\\xD1\\x8F\\xD0\\xB3\\xD0\\xBA\\xD0\\xB8\\xD1\\x85 "
"\\xD1\\x84\\xD1\\x80\\xD0\\xB0\\xD0\\xBD\\xD1\\x86\\xD1\\x83\\xD0\\xB7\\"
"xD1\\x81\\xD0\\xBA\\xD0\\xB8\\xD1\\x85 "
"\\xD0\\xB1\\xD1\\x83\\xD0\\xBB\\xD0\\xBE\\xD0\\xBA, "
"\\xD0\\xB4\\xD0\\xB0 \\xD0\\xB2\\xD1\\x8B\\xD0\\xBF\\xD0\\xB5\\xD0\\xB9 "
"\\xD1\\x87\\xD0\\xB0\\xD1\\x8E");
EXPECT_EQ(
escapeNonPrintableBytes("The quick brown fox jumps over the lazy dog."),
"The quick brown fox jumps over the lazy dog.");
}
TEST_F(ResultsTests, test_adding_duplicate_rows_to_query_data) {
Row r1, r2, r3;
r1["foo"] = "bar";
r1["baz"] = "boo";
r2["foo"] = "baz";
r2["baz"] = "bop";
r3["foo"] = "baz";
r3["baz"] = "bop";
QueryData q;
bool s;
s = addUniqueRowToQueryData(q, r1);
EXPECT_TRUE(s);
EXPECT_EQ(q.size(), 1U);
s = addUniqueRowToQueryData(q, r2);
EXPECT_TRUE(s);
EXPECT_EQ(q.size(), 2U);
s = addUniqueRowToQueryData(q, r3);
EXPECT_FALSE(s);
EXPECT_EQ(q.size(), 2U);
}
}