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

Unified Diff: sync/test/fake_server/fake_sync_server_http_handler.cc

Issue 264773007: Remove Sync FakeServer standalone executable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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
Index: sync/test/fake_server/fake_sync_server_http_handler.cc
diff --git a/sync/test/fake_server/fake_sync_server_http_handler.cc b/sync/test/fake_server/fake_sync_server_http_handler.cc
deleted file mode 100644
index 4438e4dba2b26d30ca5e60d390f1ba5a0b346a1b..0000000000000000000000000000000000000000
--- a/sync/test/fake_server/fake_sync_server_http_handler.cc
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright 2014 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 <iostream>
-
-#include "base/strings/string_util.h"
-#include "base/strings/stringprintf.h"
-#include "net/base/ip_endpoint.h"
-#include "net/base/net_errors.h"
-#include "net/server/http_server_request_info.h"
-#include "net/server/http_server_response_info.h"
-#include "net/socket/tcp_listen_socket.h"
-#include "sync/test/fake_server/fake_sync_server_http_handler.h"
-
-namespace fake_server {
-
-FakeSyncServerHttpHandler::FakeSyncServerHttpHandler() : requested_port_(0) {}
-
-FakeSyncServerHttpHandler::FakeSyncServerHttpHandler(int port)
- : requested_port_(port) {}
-
-FakeSyncServerHttpHandler::~FakeSyncServerHttpHandler() {}
-
-// Note that this must be called from within an IO MessageLoop because it
-// initializes a net::HttpServer.
-void FakeSyncServerHttpHandler::Start() {
- VLOG(1) << "Starting web server";
- net::TCPListenSocketFactory factory("0.0.0.0", requested_port_);
- server_ = new net::HttpServer(factory, this);
- net::IPEndPoint address;
- int error = server_->GetLocalAddress(&address);
- CHECK_EQ(net::OK, error) << base::StringPrintf(
- "Error %d while trying to choose a port: %s",
- error,
- net::ErrorToString(error));
-
- LOG(INFO) << base::StringPrintf("Listening on port %d", address.port());
-}
-
-void FakeSyncServerHttpHandler::OnHttpRequest(
- int connection_id,
- const net::HttpServerRequestInfo& info) {
-
- // Hand http requests over to the sync FakeServer implementation to process
- VLOG(1) << "Request path: " << info.path;
- int response_code = -1;
- std::string response;
- int server_return_value = fake_sync_server_.HandleCommand(info.data,
- &response_code,
- &response);
- if (server_return_value == 0) {
- // A '0' error code indicates a successful request to FakeServer
- server_->Send(connection_id, net::HttpStatusCode(response_code),
- response, "text/html");
- VLOG(1) << "Sync response sent: " << response;
- } else {
- // The FakeServer returned a non-0 error code.
- std::string error_message = base::StringPrintf(
- "Error processing sync request: error code %d. (%s)",
- server_return_value,
- net::ErrorToString(server_return_value));
- server_->Send500(connection_id, error_message);
- LOG(ERROR) << error_message;
- }
-}
-
-void FakeSyncServerHttpHandler::OnWebSocketRequest(
- int connection_id,
- const net::HttpServerRequestInfo& info) {}
-
-void FakeSyncServerHttpHandler::OnWebSocketMessage(int connection_id,
- const std::string& data) {}
-
-void FakeSyncServerHttpHandler::OnClose(int connection_id) {}
-
-} // namespace fake_server
« no previous file with comments | « sync/test/fake_server/fake_sync_server_http_handler.h ('k') | sync/test/fake_server/run_sync_fake_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698