mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
84 lines
3.0 KiB
C++
84 lines
3.0 KiB
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <glog/logging.h>
|
|
|
|
#include "osquery/core/test_util.h"
|
|
#include "osquery/database.h"
|
|
#include "osquery/filesystem.h"
|
|
|
|
using namespace osquery::core;
|
|
using namespace osquery::db;
|
|
namespace pt = boost::property_tree;
|
|
|
|
namespace osquery {
|
|
namespace tables {
|
|
|
|
std::vector<std::string> getAppInfoPlistPaths();
|
|
std::string getNameFromInfoPlistPath(const std::string& path);
|
|
std::string getPathFromInfoPlistPath(const std::string& path);
|
|
Row parseInfoPlist(const std::string& path, const pt::ptree& tree);
|
|
|
|
class AppsTests : public testing::Test {};
|
|
|
|
TEST_F(AppsTests, get_name_from_info_plist_path) {
|
|
EXPECT_EQ(
|
|
"Foo.app",
|
|
getNameFromInfoPlistPath("/Applications/Foo.app/Contents/Info.plist"));
|
|
EXPECT_EQ("Foo Bar.app",
|
|
getNameFromInfoPlistPath(
|
|
"/Applications/Foo Bar.app/Contents/Info.plist"));
|
|
EXPECT_EQ("Foo.app",
|
|
getNameFromInfoPlistPath(
|
|
"/Users/marpaia/Applications/Foo.app/Contents/Info.plist"));
|
|
EXPECT_EQ("Foo Bar.app",
|
|
getNameFromInfoPlistPath(
|
|
"/Users/marpaia/Applications/Foo Bar.app/Contents/Info.plist"));
|
|
}
|
|
|
|
TEST_F(AppsTests, get_path_from_info_plist_path) {
|
|
EXPECT_EQ(
|
|
"/Applications/Foo.app",
|
|
getPathFromInfoPlistPath("/Applications/Foo.app/Contents/Info.plist"));
|
|
EXPECT_EQ("/Applications/Foo Bar.app",
|
|
getPathFromInfoPlistPath(
|
|
"/Applications/Foo Bar.app/Contents/Info.plist"));
|
|
EXPECT_EQ("/Users/marpaia/Applications/Foo.app",
|
|
getPathFromInfoPlistPath(
|
|
"/Users/marpaia/Applications/Foo.app/Contents/Info.plist"));
|
|
EXPECT_EQ("/Users/marpaia/Applications/Foo Bar.app",
|
|
getPathFromInfoPlistPath(
|
|
"/Users/marpaia/Applications/Foo Bar.app/Contents/Info.plist"));
|
|
}
|
|
|
|
TEST_F(AppsTests, test_parse_info_plist) {
|
|
auto tree = getInfoPlistTree();
|
|
Row expected = {{"name", "Foobar.app"},
|
|
{"path", "/Applications/Foobar.app"},
|
|
{"bundle_executable", "Photo Booth"},
|
|
{"bundle_identifier", "com.apple.PhotoBooth"},
|
|
{"bundle_name", ""},
|
|
{"bundle_short_version", "6.0"},
|
|
{"bundle_version", "517"},
|
|
{"bundle_package_type", "APPL"},
|
|
{"compiler", "com.apple.compilers.llvm.clang.1_0"},
|
|
{"development_region", "English"},
|
|
{"display_name", ""},
|
|
{"info_string", ""},
|
|
{"minimum_system_version", "10.7.0"},
|
|
{"category", "public.app-category.entertainment"},
|
|
{"applescript_enabled", ""},
|
|
{"copyright", ""}, };
|
|
EXPECT_EQ(
|
|
parseInfoPlist("/Applications/Foobar.app/Contents/Info.plist", tree),
|
|
expected);
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
google::InitGoogleLogging(argv[0]);
|
|
return RUN_ALL_TESTS();
|
|
}
|