1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/dns/dns_query.h"
7 #include "net/base/io_buffer.h"
8 #include "net/dns/dns_protocol.h"
9 #include "testing/gtest/include/gtest/gtest.h"
15 TEST(DnsQueryTest
, Constructor
) {
16 // This includes \0 at the end.
17 const char qname_data
[] = "\x03""www""\x07""example""\x03""com";
18 const uint8 query_data
[] = {
21 0x01, 0x00, // Flags -- set RD (recursion desired) bit.
22 0x00, 0x01, // Set QDCOUNT (question count) to 1, all the
23 // rest are 0 for a query.
29 0x03, 'w', 'w', 'w', // QNAME: www.example.com in DNS format.
30 0x07, 'e', 'x', 'a', 'm', 'p', 'l', 'e',
34 0x00, 0x01, // QTYPE: A query.
35 0x00, 0x01, // QCLASS: IN class.
38 base::StringPiece
qname(qname_data
, sizeof(qname_data
));
39 DnsQuery
q1(0xbeef, qname
, dns_protocol::kTypeA
);
40 EXPECT_EQ(dns_protocol::kTypeA
, q1
.qtype());
42 ASSERT_EQ(static_cast<int>(sizeof(query_data
)), q1
.io_buffer()->size());
43 EXPECT_EQ(0, memcmp(q1
.io_buffer()->data(), query_data
, sizeof(query_data
)));
44 EXPECT_EQ(qname
, q1
.qname());
46 base::StringPiece
question(reinterpret_cast<const char*>(query_data
) + 12,
48 EXPECT_EQ(question
, q1
.question());
51 TEST(DnsQueryTest
, Clone
) {
52 // This includes \0 at the end.
53 const char qname_data
[] = "\x03""www""\x07""example""\x03""com";
54 base::StringPiece
qname(qname_data
, sizeof(qname_data
));
56 DnsQuery
q1(0, qname
, dns_protocol::kTypeA
);
57 EXPECT_EQ(0, q1
.id());
58 scoped_ptr
<DnsQuery
> q2(q1
.CloneWithNewId(42));
59 EXPECT_EQ(42, q2
->id());
60 EXPECT_EQ(q1
.io_buffer()->size(), q2
->io_buffer()->size());
61 EXPECT_EQ(q1
.qtype(), q2
->qtype());
62 EXPECT_EQ(q1
.question(), q2
->question());