summaryrefslogtreecommitdiffstats
path: root/src/lib/http/tests/post_request_unittests.cc
blob: a72d7a376441a997d63b4a92bf0cb755ce1dbe61 (plain)
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
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <config.h>

#include <http/post_request.h>
#include <http/tests/request_test.h>
#include <gtest/gtest.h>

using namespace isc::http;
using namespace isc::http::test;

namespace {

/// @brief Test fixture class for @ref PostHttpRequest.
typedef HttpRequestTestBase<PostHttpRequest> PostHttpRequestTest;

// This test verifies that PostHttpRequest class only accepts POST
// messages.
TEST_F(PostHttpRequestTest, requirePost) {
    // Use a GET method that is not supported.
    setContextBasics("GET", "/isc/org", std::make_pair(1, 0));
    addHeaderToContext("Content-Length", json_body_.length());
    addHeaderToContext("Content-Type", "application/json");

    ASSERT_THROW(request_.create(), HttpRequestError);

    // Now use POST. It should be accepted.
    setContextBasics("POST", "/isc/org", std::make_pair(1, 0));
    addHeaderToContext("Content-Length", json_body_.length());
    addHeaderToContext("Content-Type", "application/json");

    EXPECT_NO_THROW(request_.create());
}

// This test verifies that PostHttpRequest requires "Content-Length"
// header.
TEST_F(PostHttpRequestTest, requireContentType) {
    // No "Content-Type". It should fail.
    setContextBasics("POST", "/isc/org", std::make_pair(1, 0));
    addHeaderToContext("Content-Length", json_body_.length());

    ASSERT_THROW(request_.create(), HttpRequestError);

    // There is "Content-Type". It should pass.
    setContextBasics("POST", "/isc/org", std::make_pair(1, 0));
    addHeaderToContext("Content-Length", json_body_.length());
    addHeaderToContext("Content-Type", "text/html");

    EXPECT_NO_THROW(request_.create());

}

// This test verifies that PostHttpRequest requires "Content-Type"
// header.
TEST_F(PostHttpRequestTest, requireContentLength) {
    // No "Content-Length". It should fail.
    setContextBasics("POST", "/isc/org", std::make_pair(1, 0));
    addHeaderToContext("Content-Type", "text/html");

    ASSERT_THROW(request_.create(), HttpRequestError);

    // There is "Content-Length". It should pass.
    setContextBasics("POST", "/isc/org", std::make_pair(1, 0));
    addHeaderToContext("Content-Length", json_body_.length());
    addHeaderToContext("Content-Type", "application/json");
}

}