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

Side by Side Diff: chrome/browser/sessions/session_backend_unittest.cc

Issue 11359217: Move scoped_temp_dir from base to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/file_util.h" 5 #include "base/file_util.h"
6 #include "base/scoped_temp_dir.h" 6 #include "base/files/scoped_temp_dir.h"
7 #include "base/stl_util.h" 7 #include "base/stl_util.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "chrome/browser/sessions/session_backend.h" 9 #include "chrome/browser/sessions/session_backend.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace { 12 namespace {
13 13
14 typedef std::vector<SessionCommand*> SessionCommands; 14 typedef std::vector<SessionCommand*> SessionCommands;
15 15
16 struct TestData { 16 struct TestData {
(...skipping 23 matching lines...) Expand all
40 40
41 void AssertCommandEqualsData(const TestData& data, SessionCommand* command) { 41 void AssertCommandEqualsData(const TestData& data, SessionCommand* command) {
42 EXPECT_EQ(data.command_id, command->id()); 42 EXPECT_EQ(data.command_id, command->id());
43 EXPECT_EQ(data.data.size(), command->size()); 43 EXPECT_EQ(data.data.size(), command->size());
44 EXPECT_TRUE( 44 EXPECT_TRUE(
45 memcmp(command->contents(), data.data.c_str(), command->size()) == 0); 45 memcmp(command->contents(), data.data.c_str(), command->size()) == 0);
46 } 46 }
47 47
48 // Path used in testing. 48 // Path used in testing.
49 FilePath path_; 49 FilePath path_;
50 ScopedTempDir temp_dir_; 50 base::ScopedTempDir temp_dir_;
51 }; 51 };
52 52
53 TEST_F(SessionBackendTest, SimpleReadWrite) { 53 TEST_F(SessionBackendTest, SimpleReadWrite) {
54 scoped_refptr<SessionBackend> backend( 54 scoped_refptr<SessionBackend> backend(
55 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_)); 55 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
56 struct TestData data = { 1, "a" }; 56 struct TestData data = { 1, "a" };
57 std::vector<SessionCommand*> commands; 57 std::vector<SessionCommand*> commands;
58 commands.push_back(CreateCommandFromData(data)); 58 commands.push_back(CreateCommandFromData(data));
59 backend->AppendCommands(new SessionCommands(commands), false); 59 backend->AppendCommands(new SessionCommands(commands), false);
60 commands.clear(); 60 commands.clear();
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 backend = NULL; 200 backend = NULL;
201 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_); 201 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
202 backend->ReadLastSessionCommandsImpl(&commands); 202 backend->ReadLastSessionCommandsImpl(&commands);
203 203
204 // And make sure we get back the expected data. 204 // And make sure we get back the expected data.
205 ASSERT_EQ(1U, commands.size()); 205 ASSERT_EQ(1U, commands.size());
206 AssertCommandEqualsData(second_data, commands[0]); 206 AssertCommandEqualsData(second_data, commands[0]);
207 207
208 STLDeleteElements(&commands); 208 STLDeleteElements(&commands);
209 } 209 }
OLDNEW
« no previous file with comments | « chrome/browser/search_engines/template_url_service_test_util.cc ('k') | chrome/browser/sessions/session_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698