#ifndef NET_BASE_LISTEN_SOCKET_UNITTEST_H_
#define NET_BASE_LISTEN_SOCKET_UNITTEST_H_
#include "build/build_config.h"
#if defined(OS_WIN)
#include <winsock2.h>
#elif defined(OS_POSIX)
#include <arpa/inet.h>
#include <errno.h>
#include <sys/socket.h>
#endif
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/string_util.h"
#include "base/synchronization/condition_variable.h"
#include "base/synchronization/lock.h"
#include "base/threading/thread.h"
#include "net/base/net_util.h"
#include "net/base/winsock_init.h"
#include "net/socket/tcp_listen_socket.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
enum ActionType {
ACTION_NONE = 0,
ACTION_LISTEN = 1,
ACTION_ACCEPT = 2,
ACTION_READ = 3,
ACTION_SEND = 4,
ACTION_CLOSE = 5,
ACTION_SHUTDOWN = 6
};
class TCPListenSocketTestAction {
public:
TCPListenSocketTestAction() : action_(ACTION_NONE) {}
explicit TCPListenSocketTestAction(ActionType action) : action_(action) {}
TCPListenSocketTestAction(ActionType action, std::string data)
: action_(action),
data_(data) {}
const std::string data() const { return data_; }
ActionType type() const { return action_; }
private:
ActionType action_;
std::string data_;
};
class TCPListenSocketTester :
public StreamListenSocket::Delegate,
public base::RefCountedThreadSafe<TCPListenSocketTester> {
public:
TCPListenSocketTester();
void SetUp();
void TearDown();
void ReportAction(const TCPListenSocketTestAction& action);
void NextAction();
int ClearTestSocket();
void Shutdown();
void Listen();
void SendFromTester();
void TestClientSend();
void TestClientSendLong();
void TestServerSend();
void TestServerSendMultiple();
virtual bool Send(SocketDescriptor sock, const std::string& str);
virtual void DidAccept(StreamListenSocket* server,
scoped_ptr<StreamListenSocket> connection) OVERRIDE;
virtual void DidRead(StreamListenSocket* connection, const char* data,
int len) OVERRIDE;
virtual void DidClose(StreamListenSocket* sock) OVERRIDE;
scoped_ptr<base::Thread> thread_;
base::MessageLoopForIO* loop_;
scoped_ptr<TCPListenSocket> server_;
scoped_ptr<StreamListenSocket> connection_;
TCPListenSocketTestAction last_action_;
SocketDescriptor test_socket_;
base::Lock lock_;
base::ConditionVariable cv_;
std::deque<TCPListenSocketTestAction> queue_;
private:
friend class base::RefCountedThreadSafe<TCPListenSocketTester>;
virtual ~TCPListenSocketTester();
virtual scoped_ptr<TCPListenSocket> DoListen();
int GetServerPort();
void SetServerPort(int server_port);
int server_port_;
};
}
#endif