OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #import "chrome/common/mac/app_mode_chrome_locator.h" | |
6 | |
7 #include <CoreFoundation/CoreFoundation.h> | |
8 | |
9 #include "base/files/file_path.h" | |
10 #include "base/files/file_util.h" | |
11 #include "base/files/scoped_temp_dir.h" | |
12 #include "base/path_service.h" | |
13 #include "chrome/common/chrome_constants.h" | |
14 #include "testing/gtest/include/gtest/gtest.h" | |
15 | |
16 namespace { | |
17 | |
18 // Return the path to the Chrome/Chromium app bundle compiled along with the | |
19 // test executable. | |
20 void GetChromeBundlePath(base::FilePath* chrome_bundle) { | |
21 base::FilePath path; | |
22 PathService::Get(base::DIR_EXE, &path); | |
23 path = path.Append(chrome::kBrowserProcessExecutableNameChromium); | |
24 path = path.ReplaceExtension(base::FilePath::StringType("app")); | |
25 *chrome_bundle = path; | |
26 } | |
27 | |
28 } // namespace | |
29 | |
30 TEST(ChromeLocatorTest, FindBundle) { | |
31 base::FilePath finder_bundle_path; | |
32 EXPECT_TRUE( | |
33 app_mode::FindBundleById(@"com.apple.finder", &finder_bundle_path)); | |
34 EXPECT_TRUE(base::DirectoryExists(finder_bundle_path)); | |
35 } | |
36 | |
37 TEST(ChromeLocatorTest, FindNonExistentBundle) { | |
38 base::FilePath dummy; | |
39 EXPECT_FALSE(app_mode::FindBundleById(@"this.doesnt.exist", &dummy)); | |
40 } | |
41 | |
42 TEST(ChromeLocatorTest, GetNonExistentBundleInfo) { | |
43 base::ScopedTempDir temp_dir; | |
44 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); | |
45 | |
46 base::FilePath executable_path; | |
47 base::string16 raw_version; | |
48 base::FilePath version_path; | |
49 base::FilePath framework_path; | |
50 EXPECT_FALSE(app_mode::GetChromeBundleInfo(temp_dir.path(), | |
51 &executable_path, &raw_version, &version_path, &framework_path)); | |
52 } | |
53 | |
54 TEST(ChromeLocatorTest, GetChromeBundleInfo) { | |
55 using app_mode::GetChromeBundleInfo; | |
56 | |
57 base::FilePath chrome_bundle_path; | |
58 GetChromeBundlePath(&chrome_bundle_path); | |
59 ASSERT_TRUE(base::DirectoryExists(chrome_bundle_path)); | |
60 | |
61 base::FilePath executable_path; | |
62 base::string16 raw_version; | |
63 base::FilePath version_path; | |
64 base::FilePath framework_path; | |
65 EXPECT_TRUE(GetChromeBundleInfo(chrome_bundle_path, | |
66 &executable_path, &raw_version, &version_path, &framework_path)); | |
67 EXPECT_TRUE(base::PathExists(executable_path)); | |
68 EXPECT_GT(raw_version.size(), 0U); | |
69 EXPECT_TRUE(base::DirectoryExists(version_path)); | |
70 EXPECT_TRUE(base::PathExists(framework_path)); | |
71 } | |
OLD | NEW |