blob: 57bf016c426a9bead835c5ec33d691429a74e7de [file] [log] [blame]
Alex Vakulenko9cd5e272014-04-25 17:26:11 -07001// 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 Vakulenkoaf23b322014-05-08 16:25:45 -070017namespace buffet {
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070018namespace http {
19namespace fake {
20
21// This is a fake implementation of http::Connection for unit testing.
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070022class Connection : public http::Connection {
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070023 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 Vakulenkob3aac252014-05-07 17:35:24 -070030 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 Vakulenko9cd5e272014-04-25 17:26:11 -070034
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 Vakulenkob3aac252014-05-07 17:35:24 -070042 size_t* size_read, ErrorPtr* error) override;
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070043
44 private:
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070045 // 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 Vakulenkob3aac252014-05-07 17:35:24 -070054
55 DISALLOW_COPY_AND_ASSIGN(Connection);
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070056};
57
58} // namespace fake
59} // namespace http
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070060} // namespace buffet
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070061
Alex Vakulenkob3aac252014-05-07 17:35:24 -070062#endif // BUFFET_HTTP_CONNECTION_FAKE_H_