OLD | NEW |
1 // Copyright 2008, Google Inc. | 1 // Copyright 2008, Google Inc. |
2 // All rights reserved. | 2 // All rights reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 7 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
8 // Use of this source code is governed by a BSD-style license that can be | 8 // Use of this source code is governed by a BSD-style license that can be |
9 // found in the LICENSE file. | 9 // found in the LICENSE file. |
10 | 10 |
(...skipping 27 matching lines...) Expand all Loading... |
38 // We need to copy our test-plugin into the plugins directory so that | 38 // We need to copy our test-plugin into the plugins directory so that |
39 // the browser can load it. | 39 // the browser can load it. |
40 // TODO(tc): We should copy the plugins as a build step, not during | 40 // TODO(tc): We should copy the plugins as a build step, not during |
41 // the tests. Then we don't have to clean up after the copy in the test. | 41 // the tests. Then we don't have to clean up after the copy in the test. |
42 FilePath plugins_directory = GetPluginsDirectory(); | 42 FilePath plugins_directory = GetPluginsDirectory(); |
43 FilePath plugin_src = browser_directory_.AppendASCII(test_plugin_name_); | 43 FilePath plugin_src = browser_directory_.AppendASCII(test_plugin_name_); |
44 ASSERT_TRUE(file_util::PathExists(plugin_src)); | 44 ASSERT_TRUE(file_util::PathExists(plugin_src)); |
45 test_plugin_path_ = plugins_directory.AppendASCII(test_plugin_name_); | 45 test_plugin_path_ = plugins_directory.AppendASCII(test_plugin_name_); |
46 | 46 |
47 file_util::CreateDirectory(plugins_directory); | 47 file_util::CreateDirectory(plugins_directory); |
48 ASSERT_TRUE(file_util::CopyDirectory(plugin_src, test_plugin_path_, true)) | 48 if (!file_util::PathExists(test_plugin_path_)) { |
49 << "Copy failed from " << plugin_src.value() | 49 ASSERT_TRUE(file_util::CopyDirectory(plugin_src, test_plugin_path_, true)) |
50 << " to " << test_plugin_path_.value(); | 50 << "Copy failed from " << plugin_src.value() |
| 51 << " to " << test_plugin_path_.value(); |
| 52 } |
51 #if defined(OS_MACOSX) | 53 #if defined(OS_MACOSX) |
52 // The plugins directory isn't read by default on the Mac, so it needs to be | 54 // The plugins directory isn't read by default on the Mac, so it needs to be |
53 // explicitly registered. | 55 // explicitly registered. |
54 launch_arguments_.AppendSwitchPath(switches::kExtraPluginDir, | 56 launch_arguments_.AppendSwitchPath(switches::kExtraPluginDir, |
55 plugins_directory); | 57 plugins_directory); |
56 #endif | 58 #endif |
57 | 59 |
58 UITest::SetUp(); | 60 UITest::SetUp(); |
59 } | 61 } |
60 | 62 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 void NPAPIVisiblePluginTester::SetUp() { | 100 void NPAPIVisiblePluginTester::SetUp() { |
99 show_window_ = true; | 101 show_window_ = true; |
100 NPAPITester::SetUp(); | 102 NPAPITester::SetUp(); |
101 } | 103 } |
102 | 104 |
103 // NPAPIIncognitoTester members. | 105 // NPAPIIncognitoTester members. |
104 void NPAPIIncognitoTester::SetUp() { | 106 void NPAPIIncognitoTester::SetUp() { |
105 launch_arguments_.AppendSwitch(switches::kIncognito); | 107 launch_arguments_.AppendSwitch(switches::kIncognito); |
106 NPAPITester::SetUp(); | 108 NPAPITester::SetUp(); |
107 } | 109 } |
OLD | NEW |