mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed in accordance with the terms specified in
|
|
* the LICENSE file found in the root directory of this source tree.
|
|
*/
|
|
|
|
// Sanity check integration test for system_controls
|
|
// Spec file: specs/posix/system_controls.table
|
|
|
|
#include <osquery/tests/integration/tables/helper.h>
|
|
|
|
namespace osquery {
|
|
namespace table_tests {
|
|
namespace {
|
|
|
|
class SystemControlsTest : public testing::Test {
|
|
protected:
|
|
void SetUp() override {
|
|
setUpEnvironment();
|
|
}
|
|
};
|
|
|
|
TEST_F(SystemControlsTest, test_sanity) {
|
|
auto const rows = execute_query("select * from system_controls");
|
|
auto const row_map = ValidationMap{
|
|
{"name", NonEmptyString},
|
|
{"oid", NormalType},
|
|
{"subsystem",
|
|
SpecificValuesCheck{"",
|
|
"abi",
|
|
"debug",
|
|
"dev",
|
|
"fs",
|
|
"fscache",
|
|
"hw",
|
|
"kern",
|
|
"kernel",
|
|
"machdep",
|
|
"net",
|
|
"user",
|
|
"vfs",
|
|
"vm"}},
|
|
{"current_value", NormalType},
|
|
{"config_value", NormalType},
|
|
{"type",
|
|
SpecificValuesCheck{
|
|
"", "node", "int", "string", "quad", "opaque", "struct"}},
|
|
#ifdef __APPLE__
|
|
{"field_name", NormalType},
|
|
#endif
|
|
};
|
|
validate_rows(rows, row_map);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace table_tests
|
|
} // namespace osquery
|