folly copyright 2015 -> copyright 2016
[folly.git] / folly / io / async / test / MockAsyncSocket.h
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17
18 #include <gmock/gmock.h>
19
20 #include <folly/io/async/AsyncSocket.h>
21 #include <folly/io/async/EventBase.h>
22
23 namespace folly {
24
25 namespace test {
26
27 class MockAsyncSocket : public AsyncSocket {
28  public:
29   typedef std::unique_ptr<MockAsyncSocket, Destructor> UniquePtr;
30
31   explicit MockAsyncSocket(EventBase* base) : AsyncSocket(base) {
32   }
33
34   GMOCK_METHOD5_(, noexcept, , connect,
35       void(AsyncSocket::ConnectCallback*,
36            const folly::SocketAddress&,
37            int,
38            const OptionMap&,
39            const folly::SocketAddress&));
40
41   MOCK_CONST_METHOD1(getPeerAddress,
42                      void(folly::SocketAddress*));
43   MOCK_METHOD0(detachFd, int());
44   MOCK_CONST_METHOD0(getFd, int());
45   MOCK_METHOD0(closeNow, void());
46   MOCK_CONST_METHOD0(good, bool());
47   MOCK_CONST_METHOD0(readable, bool());
48   MOCK_CONST_METHOD0(hangup, bool());
49 };
50
51 }}