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
|
// Copyright (C) 2009-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/.
#ifndef UNITTEST_UTIL_H
#define UNITTEST_UTIL_H 1
#include <vector>
#include <string>
#include <dns/name.h>
#include <dns/message.h>
#include <gtest/gtest.h>
namespace isc {
class UnitTestUtil {
public:
///
/// read text format wire data from a file and put it to the given vector.
///
static void readWireData(const char* datafile,
std::vector<unsigned char>& data);
///
/// add a path that \c readWireData() will search for test data files.
///
static void addDataPath(const std::string& directory);
///
/// convert a sequence of hex strings into the corresponding list of
/// 8-bit integers, and append them to the vector.
///
static void readWireData(const std::string& datastr,
std::vector<unsigned char>& data);
///
/// Compare two names.
///
/// This check method uses \c Name::compare() for comparison, which performs
/// deeper checks including the equality of offsets, and should be better
/// than EXPECT_EQ, which uses operator==. Like the \c matchWireData()
/// method, the usage is a bit awkward; the caller should use
/// \c EXPECT_PRED_FORMAT2.
///
static ::testing::AssertionResult
matchName(const char* nameexp1, const char* nameexp2,
const isc::dns::Name& name1, const isc::dns::Name& name2);
///
/// Populate a request message
///
/// Create a request message in 'request_message' using the
/// opcode 'opcode' and the name/class/type query tuple specified in
/// 'name', 'rrclass' and 'rrtype.
static void
createRequestMessage(isc::dns::Message& request_message,
const isc::dns::Opcode& opcode,
const uint16_t qid,
const isc::dns::Name& name,
const isc::dns::RRClass& rrclass,
const isc::dns::RRType& rrtype);
///
/// Populate a DNSSEC request message
///
/// Create a request message in 'request_message' using the
/// opcode 'opcode' and the name/class/type query tuple specified in
/// 'name', 'rrclass' and 'rrtype.
/// EDNS will be added with DO=1 and bufsize 4096
static void
createDNSSECRequestMessage(isc::dns::Message& request_message,
const isc::dns::Opcode& opcode,
const uint16_t qid,
const isc::dns::Name& name,
const isc::dns::RRClass& rrclass,
const isc::dns::RRType& rrtype);
};
}
#endif // UNITTEST_UTIL_H
// Local Variables:
// mode: c++
// End:
|