summaryrefslogtreecommitdiff
path: root/brillo/test_helpers.h
blob: f035b6684bcb2de0a21d526a6123517a3627e849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef LIBCHROMEOS_BRILLO_TEST_HELPERS_H_
#define LIBCHROMEOS_BRILLO_TEST_HELPERS_H_

#include "gtest/gtest.h"

#include <string>

#include <base/command_line.h>
#include <base/files/file_path.h>
#include <base/files/file_util.h>
#include <base/logging.h>

#include "brillo/syslog_logging.h"

inline void ExpectFileEquals(const char* golden, const char* file_path) {
  std::string contents;
  EXPECT_TRUE(base::ReadFileToString(base::FilePath(file_path), &contents));
  EXPECT_EQ(golden, contents);
}

inline void SetUpTests(int* argc, char** argv, bool log_to_stderr) {
  base::CommandLine::Init(*argc, argv);
  ::brillo::InitLog(log_to_stderr ? brillo::kLogToStderr : 0);
  ::brillo::LogToString(true);
  ::testing::InitGoogleTest(argc, argv);
}

#endif  // LIBCHROMEOS_BRILLO_TEST_HELPERS_H_