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

Unified Diff: net/server/http_server_response_info_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/server/http_server_response_info.cc ('k') | net/server/http_server_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/http_server_response_info_unittest.cc
diff --git a/net/server/http_server_response_info_unittest.cc b/net/server/http_server_response_info_unittest.cc
deleted file mode 100644
index f7b8e251d3413601d05601bafc9c0bd317ea2ce8..0000000000000000000000000000000000000000
--- a/net/server/http_server_response_info_unittest.cc
+++ /dev/null
@@ -1,51 +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_status_code.h"
-#include "net/server/http_server_response_info.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-TEST(HttpServerResponseInfoTest, StatusLine) {
- HttpServerResponseInfo response;
- ASSERT_EQ(HTTP_OK, response.status_code());
- ASSERT_EQ("HTTP/1.1 200 OK\r\n\r\n", response.Serialize());
-}
-
-TEST(HttpServerResponseInfoTest, Headers) {
- HttpServerResponseInfo response;
- response.AddHeader("A", "1");
- response.AddHeader("A", "2");
- ASSERT_EQ("HTTP/1.1 200 OK\r\nA:1\r\nA:2\r\n\r\n", response.Serialize());
-}
-
-TEST(HttpServerResponseInfoTest, Body) {
- HttpServerResponseInfo response;
- ASSERT_EQ(std::string(), response.body());
- response.SetBody("body", "type");
- ASSERT_EQ("body", response.body());
- ASSERT_EQ(
- "HTTP/1.1 200 OK\r\nContent-Length:4\r\nContent-Type:type\r\n\r\nbody",
- response.Serialize());
-}
-
-TEST(HttpServerResponseInfoTest, CreateFor404) {
- HttpServerResponseInfo response = HttpServerResponseInfo::CreateFor404();
- ASSERT_EQ(
- "HTTP/1.1 404 Not Found\r\n"
- "Content-Length:0\r\nContent-Type:text/html\r\n\r\n",
- response.Serialize());
-}
-
-TEST(HttpServerResponseInfoTest, CreateFor500) {
- HttpServerResponseInfo response =
- HttpServerResponseInfo::CreateFor500("mess");
- ASSERT_EQ(
- "HTTP/1.1 500 Internal Server Error\r\n"
- "Content-Length:4\r\nContent-Type:text/html\r\n\r\nmess",
- response.Serialize());
-}
-
-} // namespace net
« no previous file with comments | « net/server/http_server_response_info.cc ('k') | net/server/http_server_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698