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

Unified Diff: net/http/http_basic_state_unittest.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_basic_state.cc ('k') | net/http/http_basic_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_basic_state_unittest.cc
diff --git a/net/http/http_basic_state_unittest.cc b/net/http/http_basic_state_unittest.cc
deleted file mode 100644
index e95cfd26b598f998bef2af640094f1f5253f8985..0000000000000000000000000000000000000000
--- a/net/http/http_basic_state_unittest.cc
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/http/http_basic_state.h"
-
-#include "net/base/completion_callback.h"
-#include "net/base/request_priority.h"
-#include "net/http/http_request_info.h"
-#include "net/socket/client_socket_handle.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-namespace {
-
-TEST(HttpBasicStateTest, ConstructsProperly) {
- ClientSocketHandle* const handle = new ClientSocketHandle;
- // Ownership of handle is passed to |state|.
- const HttpBasicState state(handle, true);
- EXPECT_EQ(handle, state.connection());
- EXPECT_TRUE(state.using_proxy());
-}
-
-TEST(HttpBasicStateTest, UsingProxyCanBeFalse) {
- const HttpBasicState state(new ClientSocketHandle(), false);
- EXPECT_FALSE(state.using_proxy());
-}
-
-TEST(HttpBasicStateTest, ReleaseConnectionWorks) {
- ClientSocketHandle* const handle = new ClientSocketHandle;
- HttpBasicState state(handle, false);
- const scoped_ptr<ClientSocketHandle> released_connection(
- state.ReleaseConnection());
- EXPECT_EQ(NULL, state.connection());
- EXPECT_EQ(handle, released_connection.get());
-}
-
-TEST(HttpBasicStateTest, InitializeWorks) {
- HttpBasicState state(new ClientSocketHandle(), false);
- const HttpRequestInfo request_info;
- EXPECT_EQ(OK,
- state.Initialize(
- &request_info, LOW, BoundNetLog(), CompletionCallback()));
- EXPECT_TRUE(state.parser());
-}
-
-TEST(HttpBasicStateTest, DeleteParser) {
- HttpBasicState state(new ClientSocketHandle(), false);
- const HttpRequestInfo request_info;
- state.Initialize(&request_info, LOW, BoundNetLog(), CompletionCallback());
- EXPECT_TRUE(state.parser());
- state.DeleteParser();
- EXPECT_EQ(NULL, state.parser());
-}
-
-TEST(HttpBasicStateTest, GenerateRequestLineNoProxy) {
- const bool use_proxy = false;
- HttpBasicState state(new ClientSocketHandle(), use_proxy);
- HttpRequestInfo request_info;
- request_info.url = GURL("http://www.example.com/path?foo=bar#hoge");
- request_info.method = "PUT";
- state.Initialize(&request_info, LOW, BoundNetLog(), CompletionCallback());
- EXPECT_EQ("PUT /path?foo=bar HTTP/1.1\r\n", state.GenerateRequestLine());
-}
-
-TEST(HttpBasicStateTest, GenerateRequestLineWithProxy) {
- const bool use_proxy = true;
- HttpBasicState state(new ClientSocketHandle(), use_proxy);
- HttpRequestInfo request_info;
- request_info.url = GURL("http://www.example.com/path?foo=bar#hoge");
- request_info.method = "PUT";
- state.Initialize(&request_info, LOW, BoundNetLog(), CompletionCallback());
- EXPECT_EQ("PUT http://www.example.com/path?foo=bar HTTP/1.1\r\n",
- state.GenerateRequestLine());
-}
-
-} // namespace
-} // namespace net
« no previous file with comments | « net/http/http_basic_state.cc ('k') | net/http/http_basic_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698