| Index: chrome/browser/debugger/devtools_remote_listen_socket_unittest.h
|
| diff --git a/chrome/browser/debugger/devtools_remote_listen_socket_unittest.h b/chrome/browser/debugger/devtools_remote_listen_socket_unittest.h
|
| deleted file mode 100644
|
| index cb796502019566e6ed5ebc5dbc65dbde2969f81f..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/debugger/devtools_remote_listen_socket_unittest.h
|
| +++ /dev/null
|
| @@ -1,129 +0,0 @@
|
| -// Copyright (c) 2011 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.
|
| -
|
| -#ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_REMOTE_LISTEN_SOCKET_UNITTEST_H_
|
| -#define CHROME_BROWSER_DEBUGGER_DEVTOOLS_REMOTE_LISTEN_SOCKET_UNITTEST_H_
|
| -#pragma once
|
| -
|
| -#include "build/build_config.h"
|
| -
|
| -#include <deque>
|
| -#include <string>
|
| -
|
| -#if defined(OS_WIN)
|
| -#include <winsock2.h>
|
| -#elif defined(OS_POSIX)
|
| -#include <sys/socket.h>
|
| -#include <errno.h>
|
| -#include <semaphore.h>
|
| -#include <arpa/inet.h>
|
| -#endif
|
| -
|
| -#include "base/threading/thread.h"
|
| -#include "base/basictypes.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| -#include "base/message_loop.h"
|
| -#include "base/string_util.h"
|
| -#include "base/threading/thread.h"
|
| -#include "chrome/browser/debugger/devtools_remote.h"
|
| -#include "chrome/browser/debugger/devtools_remote_listen_socket.h"
|
| -#include "chrome/browser/debugger/devtools_remote_message.h"
|
| -#include "net/base/net_util.h"
|
| -#include "net/base/listen_socket.h"
|
| -#include "net/base/winsock_init.h"
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -
|
| -#if defined(OS_POSIX)
|
| -// Used same name as in Windows to avoid #ifdef where refrenced
|
| -#define SOCKET int
|
| -const int INVALID_SOCKET = -1;
|
| -const int SOCKET_ERROR = -1;
|
| -#endif
|
| -
|
| -enum ActionType {
|
| - ACTION_NONE = 0,
|
| - ACTION_LISTEN = 1,
|
| - ACTION_ACCEPT = 2,
|
| - ACTION_READ = 3,
|
| - ACTION_READ_MESSAGE = 4,
|
| - ACTION_SEND = 5,
|
| - ACTION_CLOSE = 6,
|
| - ACTION_SHUTDOWN = 7
|
| -};
|
| -
|
| -class ListenSocketTestAction {
|
| - public:
|
| - ListenSocketTestAction();
|
| - explicit ListenSocketTestAction(ActionType action);
|
| - ListenSocketTestAction(ActionType action, std::string data);
|
| - ListenSocketTestAction(ActionType action,
|
| - const DevToolsRemoteMessage& message);
|
| - ~ListenSocketTestAction();
|
| -
|
| - const std::string data() const { return data_; }
|
| - const DevToolsRemoteMessage message() { return message_; }
|
| - ActionType type() const { return action_; }
|
| -
|
| - private:
|
| - ActionType action_;
|
| - std::string data_;
|
| - DevToolsRemoteMessage message_;
|
| -};
|
| -
|
| -
|
| -// This had to be split out into a separate class because I couldn't
|
| -// make a the testing::Test class refcounted.
|
| -class DevToolsRemoteListenSocketTester :
|
| - public DevToolsRemoteListener {
|
| - public:
|
| - DevToolsRemoteListenSocketTester();
|
| -
|
| - virtual void SetUp();
|
| - virtual void TearDown();
|
| -
|
| - void ReportAction(const ListenSocketTestAction& action);
|
| - bool NextAction(int timeout);
|
| -
|
| - // DevToolsRemoteMessageHandler interface
|
| - virtual void HandleMessage(const DevToolsRemoteMessage& message) OVERRIDE;
|
| - virtual void OnAcceptConnection(net::ListenSocket* connection) OVERRIDE;
|
| - virtual void OnConnectionLost() OVERRIDE;
|
| -
|
| - // read all pending data from the test socket
|
| - int ClearTestSocket();
|
| - // Release the connection and server sockets
|
| - void Shutdown();
|
| - void Listen();
|
| - void SendFromTester();
|
| - virtual bool Send(SOCKET sock, const std::string& str);
|
| - // verify the send/read from client to server
|
| - void TestClientSend();
|
| - // verify a send/read from server to client
|
| - void TestServerSend();
|
| -
|
| -#if defined(OS_WIN)
|
| - CRITICAL_SECTION lock_;
|
| - HANDLE semaphore_;
|
| -#elif defined(OS_POSIX)
|
| - pthread_mutex_t lock_;
|
| - sem_t* semaphore_;
|
| -#endif
|
| -
|
| - scoped_ptr<base::Thread> thread_;
|
| - MessageLoopForIO* loop_;
|
| - net::ListenSocket* server_;
|
| - net::ListenSocket* connection_;
|
| - ListenSocketTestAction last_action_;
|
| - std::deque<ListenSocketTestAction> queue_;
|
| - SOCKET test_socket_;
|
| - static const int kTestPort;
|
| -
|
| - protected:
|
| - virtual net::ListenSocket* DoListen();
|
| -
|
| - private:
|
| - virtual ~DevToolsRemoteListenSocketTester();
|
| -};
|
| -
|
| -#endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_REMOTE_LISTEN_SOCKET_UNITTEST_H_
|
|
|