1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright 2011-2018 Dominik Charousset *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE io_http_broker
#include "caf/test/unit_test.hpp"
#include <algorithm>
#include <cassert>
#include "caf/all.hpp"
#include "caf/io/all.hpp"
using std::cerr;
using std::cout;
using std::endl;
using namespace caf;
using namespace caf::io;
namespace {
constexpr char http_valid_get[] = "GET / HTTP/1.1";
constexpr char http_get[] = "GET / HTTP/1.1\r\n"
"Host: localhost\r\n"
"Connection: close\r\n"
"Accept: text/plain\r\n"
"User-Agent: CAF/0.14\r\n"
"Accept-Language: en-US\r\n"
"\r\n";
constexpr char http_ok[] = "HTTP/1.1 200 OK\r\n"
"Content-Type: text/plain\r\n"
"Connection: close\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"d\r\n"
"Hi there! :)\r\n"
"\r\n"
"0\r\n"
"\r\n"
"\r\n";
constexpr char http_error[] = "HTTP/1.1 404 Not Found\r\n"
"Connection: close\r\n"
"\r\n";
constexpr char newline[2] = {'\r', '\n'};
enum parser_state {
receive_new_line,
receive_continued_line,
receive_second_newline_half
};
struct http_state {
http_state(abstract_broker* self) : self_(self) {
// nop
}
~http_state() {
aout(self_) << "http worker is destroyed";
}
std::vector<std::string> lines;
parser_state ps = receive_new_line;
abstract_broker* self_;
};
using http_broker = caf::stateful_actor<http_state, broker>;
behavior http_worker(http_broker* self, connection_handle hdl) {
// tell network backend to receive any number of bytes between 1 and 1024
self->configure_read(hdl, receive_policy::at_most(1024));
return {
[=](const new_data_msg& msg) {
assert(!msg.buf.empty());
assert(msg.handle == hdl);
// extract lines from received buffer
auto& lines = self->state.lines;
auto i = msg.buf.begin();
auto e = msg.buf.end();
// search position of first newline in data chunk
auto nl = std::search(i, e, std::begin(newline), std::end(newline));
// store whether we are continuing a previously started line
auto append_to_last_line = self->state.ps == receive_continued_line;
// check whether our last chunk ended between \r and \n
if (self->state.ps == receive_second_newline_half) {
if (msg.buf.front() == '\n') {
// simply skip this character
++i;
}
}
// read line by line from our data chunk
do {
if (append_to_last_line) {
append_to_last_line = false;
auto& back = lines.back();
back.insert(back.end(), i, nl);
} else {
lines.emplace_back(i, nl);
}
// if our last search didn't found a newline, we're done
if (nl != e) {
// skip newline and seek the next one
i = nl + sizeof(newline);
nl = std::search(i, e, std::begin(newline), std::end(newline));
}
} while (nl != e);
// store current state of our parser
if (msg.buf.back() == '\r') {
self->state.ps = receive_second_newline_half;
self->state.lines.pop_back(); // drop '\r' from our last read line
} else if (msg.buf.back() == '\n') {
self->state.ps = receive_new_line; // we've got a clean cut
} else {
self->state.ps = receive_continued_line; // interrupted in the
// middle
}
// we don't need to check for completion in any intermediate state
if (self->state.ps != receive_new_line)
return;
// we have received the HTTP header if we have an empty line at the
// end
if (lines.size() > 1 && lines.back().empty()) {
auto& out = self->wr_buf(hdl);
// we only look at the first line in our example and reply with
// our OK message if we receive exactly "GET / HTTP/1.1",
// otherwise we send a 404 HTTP response
if (lines.front() == http_valid_get)
out.insert(out.end(), std::begin(http_ok), std::end(http_ok));
else
out.insert(out.end(), std::begin(http_error), std::end(http_error));
// write data and close connection
self->flush(hdl);
self->quit();
}
},
[=](const connection_closed_msg&) { self->quit(); },
};
}
behavior server(broker* self) {
CAF_MESSAGE("server up and running");
return {
[=](const new_connection_msg& ncm) {
CAF_MESSAGE("fork on new connection");
self->fork(http_worker, ncm.handle);
},
};
}
class fixture {
public:
using multiplexer_type = network::test_multiplexer;
fixture() : system(cfg.load<io::middleman, network::test_multiplexer>()) {
mpx_ = dynamic_cast<multiplexer_type*>(&system.middleman().backend());
CAF_REQUIRE(mpx_ != nullptr);
// spawn the actor-under-test
aut_ = system.middleman().spawn_broker(server);
// assign the acceptor handle to the AUT
aut_ptr_ = static_cast<abstract_broker*>(actor_cast<abstract_actor*>(aut_));
aut_ptr_->add_doorman(mpx_->new_doorman(acceptor_, 1u));
// "open" a new connection to our server
mpx_->add_pending_connect(acceptor_, connection_);
mpx_->accept_connection(acceptor_);
}
~fixture() {
anon_send_exit(aut_, exit_reason::kill);
// run the exit message and other pending messages explicitly,
// since we do not invoke any "I/O" from this point on that would
// trigger the exit message implicitly
mpx_->flush_runnables();
}
// helper class for a nice-and-easy "mock(...).expect(...)" syntax
class mock_t {
public:
mock_t(fixture* thisptr) : this_(thisptr) {
// nop
}
mock_t(const mock_t&) = default;
mock_t& expect(const std::string& x) {
auto& buf = this_->mpx_->output_buffer(this_->connection_);
CAF_REQUIRE(buf.size() >= x.size());
CAF_REQUIRE(std::equal(buf.begin(),
buf.begin() + static_cast<ptrdiff_t>(x.size()),
x.begin()));
buf.erase(buf.begin(), buf.begin() + static_cast<ptrdiff_t>(x.size()));
return *this;
}
fixture* this_;
};
// mocks some input for our AUT and allows to
// check the output for this operation
mock_t mock(const char* what) {
std::vector<char> buf;
for (char c = *what++; c != '\0'; c = *what++)
buf.push_back(c);
mpx_->virtual_send(connection_, std::move(buf));
return {this};
}
actor_system_config cfg;
actor_system system;
actor aut_;
abstract_broker* aut_ptr_;
network::test_multiplexer* mpx_;
accept_handle acceptor_ = accept_handle::from_int(1);
connection_handle connection_ = connection_handle::from_int(1);
};
} // namespace
CAF_TEST_FIXTURE_SCOPE(http_tests, fixture)
CAF_TEST(valid_response) {
// write a GET message and expect an OK message as result
mock(http_get).expect(http_ok);
}
CAF_TEST(invalid_response) {
// write a GET with invalid path and expect a 404 message as result
mock("GET /kitten.gif HTTP/1.1\r\n\r\n").expect(http_error);
}
CAF_TEST_FIXTURE_SCOPE_END()
|