mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
6fab8b6083
When setting up alerts for differential logs data you might want to skip the initial added records. counter can be used to identify if the added records are all records from initial query of if they are new records. For initial query results that includes all records counter will be "0". For subsequent query executions counter will be incremented by 1. When epoch changes, counter will be reset back to "0".
143 lines
4.6 KiB
C++
143 lines
4.6 KiB
C++
/*
|
|
* Copyright (c) 2014-present, 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 <algorithm>
|
|
#include <ctime>
|
|
#include <deque>
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <osquery/query.h>
|
|
|
|
#include "osquery/tests/test_util.h"
|
|
|
|
namespace osquery {
|
|
|
|
class QueryTests : public testing::Test {};
|
|
|
|
TEST_F(QueryTests, test_private_members) {
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto cf = Query("foobar", query);
|
|
EXPECT_EQ(cf.query_, query);
|
|
}
|
|
|
|
TEST_F(QueryTests, test_add_and_get_current_results) {
|
|
// Test adding a "current" set of results to a scheduled query instance.
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto cf = Query("foobar", query);
|
|
uint64_t counter = 128;
|
|
auto status = cf.addNewResults(getTestDBExpectedResults(), 0, counter);
|
|
EXPECT_TRUE(status.ok());
|
|
EXPECT_EQ(status.toString(), "OK");
|
|
EXPECT_EQ(counter, 0UL);
|
|
|
|
// Simulate results from several schedule runs, calculate differentials.
|
|
uint64_t expected_counter = counter + 1;
|
|
for (auto result : getTestDBResultStream()) {
|
|
// Get the results from the previous query execution (from the DB).
|
|
QueryData previous_qd;
|
|
status = cf.getPreviousQueryResults(previous_qd);
|
|
EXPECT_TRUE(status.ok());
|
|
EXPECT_EQ(status.toString(), "OK");
|
|
|
|
// Add the "current" results and output the differentials.
|
|
DiffResults dr;
|
|
counter = 128;
|
|
auto s = cf.addNewResults(result.second, 0, counter, dr, true);
|
|
EXPECT_TRUE(s.ok());
|
|
EXPECT_EQ(counter, expected_counter++);
|
|
|
|
// Call the diffing utility directly.
|
|
DiffResults expected = diff(previous_qd, result.second);
|
|
EXPECT_EQ(dr, expected);
|
|
|
|
// After Query::addNewResults the previous results are now current.
|
|
QueryData qd;
|
|
cf.getPreviousQueryResults(qd);
|
|
EXPECT_EQ(qd, result.second);
|
|
}
|
|
}
|
|
|
|
TEST_F(QueryTests, test_get_query_results) {
|
|
// Grab an expected set of query data and add it as the previous result.
|
|
auto encoded_qd = getSerializedQueryDataJSON();
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto status = setDatabaseValue(kQueries, "foobar", encoded_qd.first);
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
// Use the Query retrieval API to check the now "previous" result.
|
|
QueryData previous_qd;
|
|
auto cf = Query("foobar", query);
|
|
status = cf.getPreviousQueryResults(previous_qd);
|
|
EXPECT_TRUE(status.ok());
|
|
}
|
|
|
|
TEST_F(QueryTests, test_query_name_not_found_in_db) {
|
|
// Try to retrieve results from a query that has not executed.
|
|
QueryData previous_qd;
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto cf = Query("not_a_real_query", query);
|
|
auto status = cf.getPreviousQueryResults(previous_qd);
|
|
EXPECT_FALSE(status.ok());
|
|
EXPECT_TRUE(previous_qd.empty());
|
|
}
|
|
|
|
TEST_F(QueryTests, test_is_query_name_in_database) {
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto cf = Query("foobar", query);
|
|
auto encoded_qd = getSerializedQueryDataJSON();
|
|
auto status = setDatabaseValue(kQueries, "foobar", encoded_qd.first);
|
|
EXPECT_TRUE(status.ok());
|
|
// Now test that the query name exists.
|
|
EXPECT_TRUE(cf.isQueryNameInDatabase());
|
|
}
|
|
|
|
TEST_F(QueryTests, test_query_name_updated) {
|
|
// Try to retrieve results from a query that has not executed.
|
|
QueryData previous_qd;
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto cf = Query("will_update_query", query);
|
|
EXPECT_TRUE(cf.isNewQuery());
|
|
EXPECT_TRUE(cf.isNewQuery());
|
|
|
|
DiffResults dr;
|
|
uint64_t counter = 128;
|
|
auto results = getTestDBExpectedResults();
|
|
cf.addNewResults(results, 0, counter, dr);
|
|
EXPECT_FALSE(cf.isNewQuery());
|
|
EXPECT_EQ(counter, 0UL);
|
|
|
|
query.query += " LIMIT 1";
|
|
counter = 128;
|
|
auto cf2 = Query("will_update_query", query);
|
|
EXPECT_TRUE(cf2.isQueryNameInDatabase());
|
|
EXPECT_TRUE(cf2.isNewQuery());
|
|
cf2.addNewResults(results, 0, counter, dr);
|
|
EXPECT_FALSE(cf2.isNewQuery());
|
|
EXPECT_EQ(counter, 0UL);
|
|
}
|
|
|
|
TEST_F(QueryTests, test_get_stored_query_names) {
|
|
auto query = getOsqueryScheduledQuery();
|
|
auto cf = Query("foobar", query);
|
|
auto encoded_qd = getSerializedQueryDataJSON();
|
|
auto status = setDatabaseValue(kQueries, "foobar", encoded_qd.first);
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
// Stored query names is a factory method included alongside every query.
|
|
// It will include the set of query names with existing "previous" results.
|
|
auto names = cf.getStoredQueryNames();
|
|
auto in_vector = std::find(names.begin(), names.end(), "foobar");
|
|
EXPECT_NE(in_vector, names.end());
|
|
}
|
|
}
|