This source file includes following definitions.
- GetTestDataPath
#include "chromeos/chromeos_test_utils.h"
#include "base/file_util.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
namespace chromeos {
namespace test_utils {
bool GetTestDataPath(const std::string& component,
const std::string& filename,
base::FilePath* data_dir) {
base::FilePath path;
if (!PathService::Get(base::DIR_SOURCE_ROOT, &path))
return false;
path = path.Append(FILE_PATH_LITERAL("chromeos"));
path = path.Append(FILE_PATH_LITERAL("test"));
path = path.Append(FILE_PATH_LITERAL("data"));
if (!base::PathExists(path))
return false;
DCHECK(data_dir);
path = path.Append(component);
*data_dir = path.Append(filename);
return true;
}
}
}