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

Unified Diff: net/spdy/spdy_pinnable_buffer_piece_test.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/spdy/spdy_pinnable_buffer_piece.cc ('k') | net/spdy/spdy_prefixed_buffer_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_pinnable_buffer_piece_test.cc
diff --git a/net/spdy/spdy_pinnable_buffer_piece_test.cc b/net/spdy/spdy_pinnable_buffer_piece_test.cc
deleted file mode 100644
index 456e4a86defe745a7ee3471b97c4c90a48b0ab7a..0000000000000000000000000000000000000000
--- a/net/spdy/spdy_pinnable_buffer_piece_test.cc
+++ /dev/null
@@ -1,79 +0,0 @@
-// Copyright 2014 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/spdy/spdy_pinnable_buffer_piece.h"
-
-#include "net/spdy/spdy_prefixed_buffer_reader.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-namespace test {
-
-using base::StringPiece;
-
-class SpdyPinnableBufferPieceTest : public ::testing::Test {
- protected:
- SpdyPrefixedBufferReader Build(std::string prefix, std::string suffix) {
- prefix_ = prefix;
- suffix_ = suffix;
- return SpdyPrefixedBufferReader(prefix_.data(), prefix_.length(),
- suffix_.data(), suffix_.length());
- }
- std::string prefix_, suffix_;
-};
-
-TEST_F(SpdyPinnableBufferPieceTest, Pin) {
- SpdyPrefixedBufferReader reader = Build("foobar", "");
- SpdyPinnableBufferPiece piece;
- EXPECT_TRUE(reader.ReadN(6, &piece));
-
- // Piece points to underlying prefix storage.
- EXPECT_EQ(StringPiece("foobar"), piece);
- EXPECT_FALSE(piece.IsPinned());
- EXPECT_EQ(prefix_.data(), piece.buffer());
-
- piece.Pin();
-
- // Piece now points to allocated storage.
- EXPECT_EQ(StringPiece("foobar"), piece);
- EXPECT_TRUE(piece.IsPinned());
- EXPECT_NE(prefix_.data(), piece.buffer());
-
- // Pinning again has no effect.
- const char* buffer = piece.buffer();
- piece.Pin();
- EXPECT_EQ(buffer, piece.buffer());
-}
-
-TEST_F(SpdyPinnableBufferPieceTest, Swap) {
- SpdyPrefixedBufferReader reader = Build("foobar", "");
- SpdyPinnableBufferPiece piece1, piece2;
- EXPECT_TRUE(reader.ReadN(4, &piece1));
- EXPECT_TRUE(reader.ReadN(2, &piece2));
-
- piece1.Pin();
-
- EXPECT_EQ(StringPiece("foob"), piece1);
- EXPECT_TRUE(piece1.IsPinned());
- EXPECT_EQ(StringPiece("ar"), piece2);
- EXPECT_FALSE(piece2.IsPinned());
-
- piece1.Swap(&piece2);
-
- EXPECT_EQ(StringPiece("ar"), piece1);
- EXPECT_FALSE(piece1.IsPinned());
- EXPECT_EQ(StringPiece("foob"), piece2);
- EXPECT_TRUE(piece2.IsPinned());
-
- SpdyPinnableBufferPiece empty;
- piece2.Swap(&empty);
-
- EXPECT_EQ(StringPiece(""), piece2);
- EXPECT_FALSE(piece2.IsPinned());
-}
-
-} // namespace test
-
-} // namespace net
« no previous file with comments | « net/spdy/spdy_pinnable_buffer_piece.cc ('k') | net/spdy/spdy_prefixed_buffer_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698