Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(986)

Unified Diff: net/dns/dns_query_unittest.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/dns/dns_query.cc ('k') | net/dns/dns_response.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/dns_query_unittest.cc
diff --git a/net/dns/dns_query_unittest.cc b/net/dns/dns_query_unittest.cc
deleted file mode 100644
index ffe02e70a61c0197f417bda6246bc9ee3bf01156..0000000000000000000000000000000000000000
--- a/net/dns/dns_query_unittest.cc
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/dns/dns_query.h"
-
-#include "base/bind.h"
-#include "net/base/dns_util.h"
-#include "net/base/io_buffer.h"
-#include "net/dns/dns_protocol.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-namespace {
-
-TEST(DnsQueryTest, Constructor) {
- // This includes \0 at the end.
- const char qname_data[] = "\x03""www""\x07""example""\x03""com";
- const uint8 query_data[] = {
- // Header
- 0xbe, 0xef,
- 0x01, 0x00, // Flags -- set RD (recursion desired) bit.
- 0x00, 0x01, // Set QDCOUNT (question count) to 1, all the
- // rest are 0 for a query.
- 0x00, 0x00,
- 0x00, 0x00,
- 0x00, 0x00,
-
- // Question
- 0x03, 'w', 'w', 'w', // QNAME: www.example.com in DNS format.
- 0x07, 'e', 'x', 'a', 'm', 'p', 'l', 'e',
- 0x03, 'c', 'o', 'm',
- 0x00,
-
- 0x00, 0x01, // QTYPE: A query.
- 0x00, 0x01, // QCLASS: IN class.
- };
-
- base::StringPiece qname(qname_data, sizeof(qname_data));
- DnsQuery q1(0xbeef, qname, dns_protocol::kTypeA);
- EXPECT_EQ(dns_protocol::kTypeA, q1.qtype());
-
- ASSERT_EQ(static_cast<int>(sizeof(query_data)), q1.io_buffer()->size());
- EXPECT_EQ(0, memcmp(q1.io_buffer()->data(), query_data, sizeof(query_data)));
- EXPECT_EQ(qname, q1.qname());
-
- base::StringPiece question(reinterpret_cast<const char*>(query_data) + 12,
- 21);
- EXPECT_EQ(question, q1.question());
-}
-
-TEST(DnsQueryTest, Clone) {
- // This includes \0 at the end.
- const char qname_data[] = "\x03""www""\x07""example""\x03""com";
- base::StringPiece qname(qname_data, sizeof(qname_data));
-
- DnsQuery q1(0, qname, dns_protocol::kTypeA);
- EXPECT_EQ(0, q1.id());
- scoped_ptr<DnsQuery> q2(q1.CloneWithNewId(42));
- EXPECT_EQ(42, q2->id());
- EXPECT_EQ(q1.io_buffer()->size(), q2->io_buffer()->size());
- EXPECT_EQ(q1.qtype(), q2->qtype());
- EXPECT_EQ(q1.question(), q2->question());
-}
-
-} // namespace
-
-} // namespace net
« no previous file with comments | « net/dns/dns_query.cc ('k') | net/dns/dns_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698