summaryrefslogtreecommitdiffstats
path: root/chromecast/base/path_utils_unittest.cc
blob: 618bb0f3e4b2141a0addd5f2fffd4db6c236c566 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/files/file_path.h"
#include "base/path_service.h"
#include "chromecast/base/path_utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace chromecast {
namespace {
const char kTestRelPath[] = "rel/path";
const char kTestAbsPath[] = "/abs/path/to/dir";

std::string GetTestString(int base_dir_key) {
  base::FilePath basedir;
  EXPECT_TRUE(PathService::Get(base_dir_key, &basedir));
  return basedir.value() + "/" + kTestRelPath;
}

}  // namespace

TEST(PathUtilsTest, GetHomePath) {
  // Test with relative path.
  std::string expected = GetTestString(base::DIR_HOME);
  base::FilePath actual = GetHomePath(base::FilePath(kTestRelPath));
  EXPECT_EQ(expected, actual.value());

  // Test with absolute path.
  actual = GetHomePath(base::FilePath(kTestAbsPath));
  EXPECT_EQ(kTestAbsPath, actual.value());
}

TEST(PathUtilsTest, GetBinPath) {
  // Test with relative path.
  std::string expected = GetTestString(base::DIR_EXE);
  base::FilePath actual = GetBinPath(base::FilePath(kTestRelPath));
  EXPECT_EQ(expected, actual.value());

  // Test with absolute path.
  actual = GetBinPath(base::FilePath(kTestAbsPath));
  EXPECT_EQ(kTestAbsPath, actual.value());
}

TEST(PathUtilsTest, GetTmpPath) {
  // Test with relative path.
  std::string expected = GetTestString(base::DIR_TEMP);
  base::FilePath actual = GetTmpPath(base::FilePath(kTestRelPath));
  EXPECT_EQ(expected, actual.value());

  // Test with absolute path.
  actual = GetTmpPath(base::FilePath(kTestAbsPath));
  EXPECT_EQ(kTestAbsPath, actual.value());
}

}  // chromecast