| 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 20 matching lines...) Expand all Loading... |
| 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(file_util::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 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 |
| 45 base::FilePath test_data_dir_; | 45 base::FilePath test_data_dir_; |
| 46 StartupHelper startup_helper_; | 46 StartupHelper startup_helper_; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 TEST_F(PackExtensionTest, Extension) { | 49 TEST_F(PackExtensionTest, Extension) { |
| 50 ASSERT_TRUE(TestPackExtension(test_data_dir_.AppendASCII("api_test") | 50 ASSERT_TRUE(TestPackExtension(test_data_dir_.AppendASCII("api_test") |
| 51 .AppendASCII("tabs") | 51 .AppendASCII("tabs") |
| 52 .AppendASCII("basics"))); | 52 .AppendASCII("basics"))); |
| 53 } | 53 } |
| 54 | 54 |
| 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 |