summaryrefslogtreecommitdiffstats
path: root/base/android/path_utils_unittest.cc
blob: faa00b5e495d37aa3eb129414bbcdce01e58e4b6 (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
// Copyright (c) 2012 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/android/path_utils.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace base {
namespace android {

typedef testing::Test PathUtilsTest;

TEST_F(PathUtilsTest, TestGetDataDirectory) {
  // The string comes from the Java side and depends on the APK
  // we are running in. Assumes that we are packaged in
  // org.chromium.native_test
  EXPECT_STREQ("/data/data/org.chromium.native_test/app_chrome",
               GetDataDirectory().c_str());
}

TEST_F(PathUtilsTest, TestGetCacheDirectory) {
  // The string comes from the Java side and depends on the APK
  // we are running in. Assumes that we are packaged in
  // org.chromium.native_test
  EXPECT_STREQ("/data/data/org.chromium.native_test/cache",
               GetCacheDirectory().c_str());
}

TEST_F(PathUtilsTest, TestGetNativeLibraryDirectory) {
  // The string comes from the Java side and depends on the APK
  // we are running in. Assumes that we are packaged in
  // org.chromium.native_test
  EXPECT_STREQ("/data/data/org.chromium.native_test/lib",
               GetNativeLibraryDirectory().c_str());
}

}  // namespace android
}  // namespace base