summaryrefslogtreecommitdiffstats
path: root/src/bin/perfdhcp/tests/localized_option_unittest.cc
blob: 6b849bdb40254031dedfe30ac59f90733bc44189 (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
// Copyright (C) 2012-2015 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 <gtest/gtest.h>

#include <dhcp/option.h>
#include <dhcp/dhcp6.h>

#include <boost/scoped_ptr.hpp>

#include "../localized_option.h"

using namespace std;
using namespace isc;
using namespace isc::dhcp;
using namespace isc::perfdhcp;

namespace {

TEST(LocalizedOptionTest, Constructor) {
    OptionBuffer opt_buf;
    // Create option with default offset.
    boost::scoped_ptr<LocalizedOption> opt1(new LocalizedOption(Option::V6,
                                                                D6O_CLIENTID,
                                                                opt_buf));
    EXPECT_EQ(Option::V6, opt1->getUniverse());
    EXPECT_EQ(D6O_CLIENTID, opt1->getType());
    EXPECT_EQ(0, opt1->getOffset());

    // Create option with non-default offset.
    boost::scoped_ptr<LocalizedOption> opt2(new LocalizedOption(Option::V6,
                                                                D6O_CLIENTID,
                                                                opt_buf,
                                                                40));
    EXPECT_EQ(40, opt2->getOffset());
}

}