osquery-1/osquery/core/test_util.h

101 lines
3.6 KiB
C
Raw Normal View History

2014-07-31 00:35:19 +00:00
// Copyright 2004-present Facebook. All Rights Reserved.
#pragma once
2014-07-31 00:35:19 +00:00
#include <string>
#include <utility>
#include <vector>
#include <boost/property_tree/ptree.hpp>
2014-08-12 00:37:49 +00:00
#include <sqlite3.h>
2014-07-31 00:35:19 +00:00
#include "osquery/config.h"
#include "osquery/core.h"
#include "osquery/database.h"
2014-09-05 14:54:41 +00:00
#include "osquery/filesystem.h"
2014-07-31 00:35:19 +00:00
2014-08-15 07:25:30 +00:00
namespace osquery {
namespace core {
2014-07-31 00:35:19 +00:00
// kTestQuery is a test query that can be executed against the database
// returned from createTestDB() to result in the dataset returned from
// getTestDBExpectedResults()
extern const std::string kTestQuery;
// createTestDB instantiates a sqlite3 struct and populates it with some test
// data
sqlite3* createTestDB();
// getTestDBExpectedResults returns the results of kTestQuery of the table that
// initially gets returned from createTestDB()
osquery::db::QueryData getTestDBExpectedResults();
// Starting with the dataset returned by createTestDB(), getTestDBResultStream
// returns a vector of std::pair's where pair.first is the query that would
// need to be performed on the dataset to make the results be pair.second
std::vector<std::pair<std::string, osquery::db::QueryData>>
getTestDBResultStream();
// getOsqueryScheduledQuery returns a test scheduled query which would normally
// be returned via the config
2014-09-15 18:09:33 +00:00
osquery::OsqueryScheduledQuery getOsqueryScheduledQuery();
2014-07-31 00:35:19 +00:00
// getSerializedRow() return an std::pair where pair->first is a string which
// should serialize to pair->second. Obviously, pair->second should deserialize
// to pair->first
std::pair<boost::property_tree::ptree, osquery::db::Row> getSerializedRow();
// getSerializedQueryData() return an std::pair where pair->first is a string
// which should serialize to pair->second. Obviously, pair->second should
// deserialize to pair->first
std::pair<boost::property_tree::ptree, osquery::db::QueryData>
getSerializedQueryData();
// getSerializedDiffResults() return an std::pair where pair->first is a string
// which should serialize to pair->second. Obviously, pair->second should
// deserialize to pair->first
std::pair<boost::property_tree::ptree, osquery::db::DiffResults>
getSerializedDiffResults();
2014-08-15 07:25:30 +00:00
std::pair<std::string, osquery::db::DiffResults> getSerializedDiffResultsJSON();
2014-07-31 00:35:19 +00:00
// getSerializedHistoricalQueryResults() return an std::pair where pair->first
// is a string which should serialize to pair->second. Obviously, pair->second
// should deserialize to pair->first
std::pair<boost::property_tree::ptree, osquery::db::HistoricalQueryResults>
getSerializedHistoricalQueryResults();
std::pair<std::string, osquery::db::HistoricalQueryResults>
getSerializedHistoricalQueryResultsJSON();
// getSerializedScheduledQueryLogItem() return an std::pair where pair->first
// is a string which should serialize to pair->second. Obviously, pair->second
// should deserialize to pair->first
std::pair<boost::property_tree::ptree, osquery::db::ScheduledQueryLogItem>
getSerializedScheduledQueryLogItem();
std::pair<std::string, osquery::db::ScheduledQueryLogItem>
getSerializedScheduledQueryLogItemJSON();
// generate content for a PEM-encoded certificate
std::string getCACertificateContent();
// generate the content that would be found in an /etc/hosts file
std::string getEtcHostsContent();
// generate the expected data that getEtcHostsContent() should parse into
osquery::db::QueryData getEtcHostsExpectedResults();
2014-08-04 21:12:06 +00:00
// the three items that you need to test osquery::core::splitString
struct SplitStringTestData {
std::string test_string;
2014-08-04 23:08:49 +00:00
std::string delim;
2014-08-04 21:12:06 +00:00
std::vector<std::string> test_vector;
};
// generate a set of test data to test osquery::core::splitString
std::vector<SplitStringTestData> generateSplitStringTestData();
2014-08-15 07:25:30 +00:00
}
}