Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 1 | // Copyright 2014 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef BUFFET_HTTP_CONNECTION_FAKE_H_ |
| 6 | #define BUFFET_HTTP_CONNECTION_FAKE_H_ |
| 7 | |
| 8 | #include <map> |
| 9 | #include <string> |
| 10 | #include <vector> |
| 11 | |
| 12 | #include <base/basictypes.h> |
| 13 | |
| 14 | #include "buffet/http_connection.h" |
| 15 | #include "buffet/http_transport_fake.h" |
| 16 | |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 17 | namespace buffet { |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 18 | namespace http { |
| 19 | namespace fake { |
| 20 | |
| 21 | // This is a fake implementation of http::Connection for unit testing. |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 22 | class Connection : public http::Connection { |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 23 | public: |
| 24 | Connection(const std::string& url, const std::string& method, |
| 25 | std::shared_ptr<http::Transport> transport); |
| 26 | virtual ~Connection(); |
| 27 | |
| 28 | // Overrides from http::Connection. |
| 29 | // See http_connection.h for description of these methods. |
Alex Vakulenko | b3aac25 | 2014-05-07 17:35:24 -0700 | [diff] [blame] | 30 | virtual bool SendHeaders(const HeaderList& headers, ErrorPtr* error) override; |
| 31 | virtual bool WriteRequestData(const void* data, size_t size, |
| 32 | ErrorPtr* error) override; |
| 33 | virtual bool FinishRequest(ErrorPtr* error) override; |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 34 | |
| 35 | virtual int GetResponseStatusCode() const override; |
| 36 | virtual std::string GetResponseStatusText() const override; |
| 37 | virtual std::string GetProtocolVersion() const override; |
| 38 | virtual std::string GetResponseHeader( |
| 39 | const std::string& header_name) const override; |
| 40 | virtual uint64_t GetResponseDataSize() const override; |
| 41 | virtual bool ReadResponseData(void* data, size_t buffer_size, |
Alex Vakulenko | b3aac25 | 2014-05-07 17:35:24 -0700 | [diff] [blame] | 42 | size_t* size_read, ErrorPtr* error) override; |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 43 | |
| 44 | private: |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 45 | // Request and response objects passed to the user-provided request handler |
| 46 | // callback. The request object contains all the request information. |
| 47 | // The response object is the server response that is created by |
| 48 | // the handler in response to the request. |
| 49 | ServerRequest request_; |
| 50 | ServerResponse response_; |
| 51 | |
| 52 | // Internal read data pointer needed for ReadResponseData() implementation. |
| 53 | size_t response_data_ptr_ = 0; |
Alex Vakulenko | b3aac25 | 2014-05-07 17:35:24 -0700 | [diff] [blame] | 54 | |
| 55 | DISALLOW_COPY_AND_ASSIGN(Connection); |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | } // namespace fake |
| 59 | } // namespace http |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 60 | } // namespace buffet |
Alex Vakulenko | 9cd5e27 | 2014-04-25 17:26:11 -0700 | [diff] [blame] | 61 | |
Alex Vakulenko | b3aac25 | 2014-05-07 17:35:24 -0700 | [diff] [blame] | 62 | #endif // BUFFET_HTTP_CONNECTION_FAKE_H_ |