OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 : ui_thread_(content::BrowserThread::UI, &message_loop_), | 24 : ui_thread_(content::BrowserThread::UI, &message_loop_), |
25 file_thread_(content::BrowserThread::FILE, &message_loop_) { | 25 file_thread_(content::BrowserThread::FILE, &message_loop_) { |
26 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); | 26 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); |
27 test_data_dir_ = test_data_dir_.AppendASCII("extensions"); | 27 test_data_dir_ = test_data_dir_.AppendASCII("extensions"); |
28 } | 28 } |
29 | 29 |
30 protected: | 30 protected: |
31 bool TestPackExtension(const base::FilePath& path) { | 31 bool TestPackExtension(const base::FilePath& path) { |
32 base::ScopedTempDir temp_dir; | 32 base::ScopedTempDir temp_dir; |
33 EXPECT_TRUE(temp_dir.CreateUniqueTempDir()); | 33 EXPECT_TRUE(temp_dir.CreateUniqueTempDir()); |
34 EXPECT_TRUE(file_util::CopyDirectory(path, temp_dir.path(), true)); | 34 EXPECT_TRUE(base::CopyDirectory(path, temp_dir.path(), true)); |
35 CommandLine command_line(CommandLine::NO_PROGRAM); | 35 CommandLine command_line(CommandLine::NO_PROGRAM); |
36 command_line.AppendSwitchPath(switches::kPackExtension, | 36 command_line.AppendSwitchPath(switches::kPackExtension, |
37 temp_dir.path().Append(path.BaseName())); | 37 temp_dir.path().Append(path.BaseName())); |
38 return startup_helper_.PackExtension(command_line); | 38 return startup_helper_.PackExtension(command_line); |
39 } | 39 } |
40 | 40 |
41 base::MessageLoop message_loop_; | 41 base::MessageLoop message_loop_; |
42 content::TestBrowserThread ui_thread_; | 42 content::TestBrowserThread ui_thread_; |
43 content::TestBrowserThread file_thread_; | 43 content::TestBrowserThread file_thread_; |
44 | 44 |
(...skipping 10 matching lines...) Expand all Loading... |
55 TEST_F(PackExtensionTest, PackagedApp) { | 55 TEST_F(PackExtensionTest, PackagedApp) { |
56 ASSERT_TRUE(TestPackExtension(test_data_dir_.AppendASCII("packaged_app"))); | 56 ASSERT_TRUE(TestPackExtension(test_data_dir_.AppendASCII("packaged_app"))); |
57 } | 57 } |
58 | 58 |
59 TEST_F(PackExtensionTest, PlatformApp) { | 59 TEST_F(PackExtensionTest, PlatformApp) { |
60 ASSERT_TRUE(TestPackExtension(test_data_dir_.AppendASCII("platform_apps") | 60 ASSERT_TRUE(TestPackExtension(test_data_dir_.AppendASCII("platform_apps") |
61 .AppendASCII("minimal"))); | 61 .AppendASCII("minimal"))); |
62 } | 62 } |
63 | 63 |
64 } // namespace extensions | 64 } // namespace extensions |
OLD | NEW |