Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Side by Side Diff: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc

Issue 10386216: Disable RemoteFileSystemExtensionApiTest.RemoteMountPoint. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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/bind.h" 5 #include "base/bind.h"
6 #include "base/file_path.h" 6 #include "base/file_path.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/json/json_file_value_serializer.h" 8 #include "base/json/json_file_value_serializer.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop_proxy.h" 10 #include "base/message_loop_proxy.h"
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 IN_PROC_BROWSER_TEST_F(FileSystemExtensionApiTest, 246 IN_PROC_BROWSER_TEST_F(FileSystemExtensionApiTest,
247 FileBrowserTestWriteComponent) { 247 FileBrowserTestWriteComponent) {
248 AddTmpMountPoint(); 248 AddTmpMountPoint();
249 ASSERT_TRUE(RunComponentExtensionTest("filesystem_handler_write")) 249 ASSERT_TRUE(RunComponentExtensionTest("filesystem_handler_write"))
250 << message_; 250 << message_;
251 ASSERT_TRUE(RunExtensionSubtest( 251 ASSERT_TRUE(RunExtensionSubtest(
252 "filebrowser_component", "write.html", kComponentFlags)) << message_; 252 "filebrowser_component", "write.html", kComponentFlags)) << message_;
253 } 253 }
254 254
255 IN_PROC_BROWSER_TEST_F(RemoteFileSystemExtensionApiTest, RemoteMountPoint) { 255 // Failing on Linux ChromeOS builds.
256 // http://crbug.com/128757
257 IN_PROC_BROWSER_TEST_F(RemoteFileSystemExtensionApiTest,
258 DISABLED_RemoteMountPoint) {
256 SetupGDataFileSystemForTest(); 259 SetupGDataFileSystemForTest();
257 260
258 EXPECT_CALL(*mock_documents_service_, GetAccountMetadata(_)).Times(1); 261 EXPECT_CALL(*mock_documents_service_, GetAccountMetadata(_)).Times(1);
259 262
260 // First, file browser will try to create new directory. 263 // First, file browser will try to create new directory.
261 scoped_ptr<base::Value> dir_value(LoadJSONFile(kTestDirectory)); 264 scoped_ptr<base::Value> dir_value(LoadJSONFile(kTestDirectory));
262 EXPECT_CALL(*mock_documents_service_, 265 EXPECT_CALL(*mock_documents_service_,
263 CreateDirectory(_, _, _)) 266 CreateDirectory(_, _, _))
264 .WillOnce(MockCreateDirectoryCallback(gdata::HTTP_SUCCESS, &dir_value)); 267 .WillOnce(MockCreateDirectoryCallback(gdata::HTTP_SUCCESS, &dir_value));
265 268
(...skipping 21 matching lines...) Expand all
287 // This one is called on exit, but we don't care much about it, as long as it 290 // This one is called on exit, but we don't care much about it, as long as it
288 // retunrs something valid (i.e. not NULL). 291 // retunrs something valid (i.e. not NULL).
289 EXPECT_CALL(*mock_documents_service_, operation_registry()). 292 EXPECT_CALL(*mock_documents_service_, operation_registry()).
290 WillOnce(Return(operation_registry_.get())); 293 WillOnce(Return(operation_registry_.get()));
291 294
292 // All is set... RUN THE TEST. 295 // All is set... RUN THE TEST.
293 EXPECT_TRUE(RunExtensionTest("filesystem_handler")) << message_; 296 EXPECT_TRUE(RunExtensionTest("filesystem_handler")) << message_;
294 EXPECT_TRUE(RunExtensionSubtest("filebrowser_component", "remote.html", 297 EXPECT_TRUE(RunExtensionSubtest("filebrowser_component", "remote.html",
295 kComponentFlags)) << message_; 298 kComponentFlags)) << message_;
296 } 299 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698