mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
45 lines
1.1 KiB
C++
45 lines
1.1 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 mdfind
|
|
// Spec file: specs/darwin/mdfind.table
|
|
|
|
#include <osquery/tests/integration/tables/helper.h>
|
|
|
|
namespace osquery {
|
|
namespace table_tests {
|
|
|
|
class Mdfind : public testing::Test {
|
|
protected:
|
|
void SetUp() override {
|
|
setUpEnvironment();
|
|
}
|
|
};
|
|
|
|
TEST_F(Mdfind, test_sanity) {
|
|
QueryData rows = execute_query(
|
|
"select * from mdfind where query = 'kMDItemFSName = \"hosts.equiv\"';");
|
|
if (rows.empty()) {
|
|
// Spotlight may be disabled.
|
|
QueryData sl_check = execute_query(
|
|
"select pid from processes where path = "
|
|
"'/System/Library/CoreServices/Spotlight.app/Contents/MacOS/"
|
|
"Spotlight'");
|
|
ASSERT_TRUE(sl_check.empty());
|
|
}
|
|
|
|
ValidationMap row_map = {
|
|
{"path", NonEmptyString},
|
|
{"query", NonEmptyString},
|
|
};
|
|
validate_rows(rows, row_map);
|
|
}
|
|
|
|
} // namespace table_tests
|
|
} // namespace osquery
|