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

Side by Side Diff: chrome/browser/net/ftp_browsertest.cc

Issue 12210088: Make the TestServer use an absolute document root path. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: testserver uses absolute docroot path Created 7 years, 10 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
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 "chrome/test/base/in_process_browser_test.h" 5 #include "chrome/test/base/in_process_browser_test.h"
6 #include "chrome/test/base/ui_test_utils.h" 6 #include "chrome/test/base/ui_test_utils.h"
7 #include "googleurl/src/gurl.h" 7 #include "googleurl/src/gurl.h"
8 #include "net/test/test_server.h" 8 #include "net/test/test_server.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 class FtpBrowserTest : public InProcessBrowserTest { 11 class FtpBrowserTest : public InProcessBrowserTest {
12 public: 12 public:
13 FtpBrowserTest() 13 FtpBrowserTest()
14 : ftp_server_(net::TestServer::TYPE_FTP, 14 : ftp_server_(net::TestServer::TYPE_FTP,
15 net::TestServer::kLocalhost, 15 net::TestServer::kLocalhost,
16 base::FilePath()) { 16 net::TestServer::GetSourcePath()) {
17 } 17 }
18 18
19 protected: 19 protected:
20 net::TestServer ftp_server_; 20 net::TestServer ftp_server_;
21 }; 21 };
22 22
23 IN_PROC_BROWSER_TEST_F(FtpBrowserTest, DirectoryListing) { 23 IN_PROC_BROWSER_TEST_F(FtpBrowserTest, DirectoryListing) {
24 ASSERT_TRUE(ftp_server_.Start()); 24 ASSERT_TRUE(ftp_server_.Start());
25 ui_test_utils::NavigateToURL(browser(), ftp_server_.GetURL("/")); 25 ui_test_utils::NavigateToURL(browser(), ftp_server_.GetURL("/"));
26 // TODO(phajdan.jr): test more things. 26 // TODO(phajdan.jr): test more things.
27 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698