blob: b5e1bdcffdae1031f4fc33ed8b84abab1c5351c0 [file] [log] [blame]
Ed Tanous9140a672017-04-24 17:01:32 -07001#include <iostream>
2#include <sstream>
3#include <vector>
Ed Tanous911ac312017-08-15 09:37:42 -07004#include "gzip_helper.hpp"
Ed Tanous9140a672017-04-24 17:01:32 -07005#include "web_kvm.hpp"
6#include "crow.h"
7#include <gmock/gmock.h>
8#include <gtest/gtest.h>
9
10using namespace crow;
11using namespace testing;
12
13// Tests static files are loaded correctly
14TEST(Kvm, BasicRfb) {
Ed Tanous911ac312017-08-15 09:37:42 -070015 return; // TODO(ed) Make hte code below work again
Ed Tanous9140a672017-04-24 17:01:32 -070016 SimpleApp app;
17
Ed Tanous55c7b7a2018-05-22 15:27:24 -070018 crow::kvm::requestRoutes(app);
Ed Tanous9140a672017-04-24 17:01:32 -070019 app.bindaddr("127.0.0.1").port(45451);
Ed Tanous55c7b7a2018-05-22 15:27:24 -070020 BMCWEB_ROUTE(app, "/")([]() { return boost::beast::http::status::ok; });
Ed Tanous9140a672017-04-24 17:01:32 -070021 auto _ = async(std::launch::async, [&] { app.run(); });
Ed Tanous55c7b7a2018-05-22 15:27:24 -070022 auto routes = app.getRoutes();
Ed Tanous9140a672017-04-24 17:01:32 -070023 asio::io_service is;
24
25 {
26 // Retry a couple of times waiting for the server to come up
27 // TODO(ed) This is really unfortunate, and should use some form of mock
28 asio::ip::tcp::socket c(is);
29 for (int i = 0; i < 200; i++) {
30 try {
31 c.connect(asio::ip::tcp::endpoint(
32 asio::ip::address::from_string("127.0.0.1"), 45451));
33 c.close();
34 break;
35 } catch (std::exception e) {
36 // do nothing. We expect this to fail while the server is starting up
37 }
38 }
39 }
40
41 // Get the websocket
42 std::string sendmsg =
43 ("GET /kvmws HTTP/1.1\r\n"
44 "Host: localhost:45451\r\n"
45 "Connection: Upgrade\r\n"
46 "Upgrade: websocket\r\n"
47 "Sec-WebSocket-Version: 13\r\n"
48 "Sec-WebSocket-Key: aLeGkmLPZmdv5tTyEpJ3jQ==\r\n"
49 "Sec-WebSocket-Extensions: permessage-deflate; "
50 "client_max_window_bits\r\n"
51 "Sec-WebSocket-Protocol: binary\r\n"
52 "\r\n");
53
54 asio::ip::tcp::socket socket(is);
55 socket.connect(asio::ip::tcp::endpoint(
56 asio::ip::address::from_string("127.0.0.1"), 45451));
57 socket.send(asio::buffer(sendmsg));
58
Ed Tanous55c7b7a2018-05-22 15:27:24 -070059 // Read the Response status line. The Response streambuf will automatically
Ed Tanous9140a672017-04-24 17:01:32 -070060 // grow to accommodate the entire line. The growth may be limited by passing
61 // a maximum size to the streambuf constructor.
62 boost::asio::streambuf response;
63 boost::asio::read_until(socket, response, "\r\n");
64
Ed Tanous55c7b7a2018-05-22 15:27:24 -070065 // Check that Response is OK.
Ed Tanous9140a672017-04-24 17:01:32 -070066 std::istream response_stream(&response);
67 std::string http_response;
68 std::getline(response_stream, http_response);
69
70 EXPECT_EQ(http_response, "HTTP/1.1 101 Switching Protocols\r");
71
Ed Tanous55c7b7a2018-05-22 15:27:24 -070072 // Read the Response headers, which are terminated by a blank line.
Ed Tanous9140a672017-04-24 17:01:32 -070073 boost::asio::read_until(socket, response, "\r\n\r\n");
74
Ed Tanous55c7b7a2018-05-22 15:27:24 -070075 // Process the Response headers.
Ed Tanous9140a672017-04-24 17:01:32 -070076 std::string header;
77 std::vector<std::string> headers;
78 while (std::getline(response_stream, header) && header != "\r") {
79 headers.push_back(header);
80 }
81
82 EXPECT_THAT(headers, Contains("Upgrade: websocket\r"));
83 EXPECT_THAT(headers, Contains("Connection: Upgrade\r"));
84 EXPECT_THAT(headers, Contains("Sec-WebSocket-Protocol: binary\r"));
85 // TODO(ed) This is the result that it gives today. Need to check websocket
86 // docs and make
87 // sure that this calclution is actually being done to spec
88 EXPECT_THAT(headers,
89 Contains("Sec-WebSocket-Accept: /CnDM3l79rIxniLNyxMryXbtLEU=\r"));
90 std::array<char, 13> rfb_open_string;
91
92 //
93 // socket.receive(rfb_open_string.data(), rfb_open_string.size());
94 boost::asio::read(socket, boost::asio::buffer(rfb_open_string));
95 auto open_string =
96 std::string(std::begin(rfb_open_string), std::end(rfb_open_string));
97 // Todo(ed) find out what the two characters at the end of the websocket
98 // stream are
99 open_string = open_string.substr(2);
100 EXPECT_EQ(open_string, "RFB 003.008");
101
102 app.stop();
103}