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

Unified Diff: net/disk_cache/flash/log_store_entry_unittest.cc

Issue 182093002: Remove the flash specific disk cache backend. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/disk_cache/flash/log_store_entry.cc ('k') | net/disk_cache/flash/log_store_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/flash/log_store_entry_unittest.cc
diff --git a/net/disk_cache/flash/log_store_entry_unittest.cc b/net/disk_cache/flash/log_store_entry_unittest.cc
deleted file mode 100644
index 100c9a83ea0cb9149a263dc14c262f2338cb6bd9..0000000000000000000000000000000000000000
--- a/net/disk_cache/flash/log_store_entry_unittest.cc
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright (c) 2012 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 "base/memory/scoped_ptr.h"
-#include "net/base/io_buffer.h"
-#include "net/disk_cache/disk_cache_test_util.h"
-#include "net/disk_cache/flash/flash_cache_test_base.h"
-#include "net/disk_cache/flash/format.h"
-#include "net/disk_cache/flash/log_store.h"
-#include "net/disk_cache/flash/log_store_entry.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-using disk_cache::LogStoreEntry;
-
-// Tests the behavior of a LogStoreEntry with empty streams.
-TEST_F(FlashCacheTest, LogStoreEntryEmpty) {
- disk_cache::LogStore log_store(path_, kStorageSize);
- ASSERT_TRUE(log_store.Init());
-
- scoped_ptr<LogStoreEntry> entry(new LogStoreEntry(&log_store));
- EXPECT_TRUE(entry->Init());
- EXPECT_TRUE(entry->Close());
-
- entry.reset(new LogStoreEntry(&log_store, entry->id()));
- EXPECT_TRUE(entry->Init());
-
- for (int i = 0; i < disk_cache::kFlashLogStoreEntryNumStreams; ++i) {
- const int kSize = 1024;
- scoped_refptr<net::IOBuffer> buf(new net::IOBuffer(kSize));
- EXPECT_EQ(0, entry->GetDataSize(i));
- EXPECT_EQ(0, entry->ReadData(i, 0, buf.get(), kSize));
- }
- EXPECT_TRUE(entry->Close());
- ASSERT_TRUE(log_store.Close());
-}
-
-TEST_F(FlashCacheTest, LogStoreEntryWriteRead) {
- disk_cache::LogStore log_store(path_, kStorageSize);
- ASSERT_TRUE(log_store.Init());
-
- scoped_ptr<LogStoreEntry> entry(new LogStoreEntry(&log_store));
- EXPECT_TRUE(entry->Init());
-
- int sizes[disk_cache::kFlashLogStoreEntryNumStreams] = {333, 444, 555, 666};
- scoped_refptr<net::IOBuffer> buffers[
- disk_cache::kFlashLogStoreEntryNumStreams];
-
- for (int i = 0; i < disk_cache::kFlashLogStoreEntryNumStreams; ++i) {
- buffers[i] = new net::IOBuffer(sizes[i]);
- CacheTestFillBuffer(buffers[i]->data(), sizes[i], false);
- EXPECT_EQ(sizes[i], entry->WriteData(i, 0, buffers[i].get(), sizes[i]));
- }
- EXPECT_TRUE(entry->Close());
-
- int32 id = entry->id();
- entry.reset(new LogStoreEntry(&log_store, id));
- EXPECT_TRUE(entry->Init());
-
- for (int i = 0; i < disk_cache::kFlashLogStoreEntryNumStreams; ++i) {
- EXPECT_EQ(sizes[i], entry->GetDataSize(i));
- scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(sizes[i]));
- EXPECT_EQ(sizes[i], entry->ReadData(i, 0, buffer.get(), sizes[i]));
- EXPECT_EQ(0, memcmp(buffers[i]->data(), buffer->data(), sizes[i]));
- }
- EXPECT_TRUE(entry->Close());
- EXPECT_EQ(id, entry->id());
- ASSERT_TRUE(log_store.Close());
-}
« no previous file with comments | « net/disk_cache/flash/log_store_entry.cc ('k') | net/disk_cache/flash/log_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698