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
// Copyright (C) 2021-2024 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 <config/http_command_response_creator_factory.h>
#include <boost/pointer_cast.hpp><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace isc::config;
using namespace isc::data;
using namespace std;

namespace {

// This test verifies the default factory constructor and
// the create() method.
TEST(HttpCommandResponseCreatorFactory, create) {
    // Configure the HTTP control socket.
    string config = R"(
        {
            "socket-type": "http",
            "socket-address": "127.0.0.1",
            "socket-port": 8000
        }
    )";
    ElementPtr json;
    ASSERT_NO_THROW(json = Element::fromJSON(config));
    HttpCommandConfigPtr http_config;
    ASSERT_NO_THROW(http_config.reset(new HttpCommandConfig(json)));

    // Create the factory.
    HttpCommandResponseCreatorFactory factory(http_config);

    // Create a response creator.
    HttpCommandResponseCreatorPtr rcf;
    ASSERT_NO_THROW(rcf = boost::dynamic_pointer_cast<
                    HttpCommandResponseCreator>(factory.create()));
    ASSERT_TRUE(rcf);

    // Get back the HTTP control socket config.
    HttpCommandConfigPtr got = rcf->getHttpCommandConfig();
    ASSERT_TRUE(got);

    // Expect equality.
    EXPECT_EQ(http_config->toElement()->str(), got->toElement()->str());

    // The emulation flag is hidden so check it too.
    EXPECT_EQ(http_config->getEmulateAgentResponse(),
              got->getEmulateAgentResponse());

    // Get again a response creator.
    HttpCommandResponseCreatorPtr rcf2;
    ASSERT_NO_THROW(rcf2 = boost::dynamic_pointer_cast<
                    HttpCommandResponseCreator>(factory.create()));
    ASSERT_TRUE(rcf2);

    // And it must always return the same object.
    EXPECT_TRUE(rcf == rcf2);
}

} // end of anonymous namespace