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

Side by Side Diff: components/leveldb/leveldb_service_unittest.cc

Issue 1812263004: Convert leveldb_apptests to unit tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/macros.h" 5 #include "base/macros.h"
6 #include "components/filesystem/public/interfaces/directory.mojom.h" 6 #include "components/filesystem/public/interfaces/directory.mojom.h"
7 #include "components/filesystem/public/interfaces/file_system.mojom.h" 7 #include "components/filesystem/public/interfaces/file_system.mojom.h"
8 #include "components/filesystem/public/interfaces/types.mojom.h" 8 #include "components/filesystem/public/interfaces/types.mojom.h"
9 #include "components/leveldb/public/interfaces/leveldb.mojom.h" 9 #include "components/leveldb/public/interfaces/leveldb.mojom.h"
10 #include "mojo/common/common_type_converters.h" 10 #include "mojo/common/common_type_converters.h"
11 #include "mojo/public/cpp/bindings/binding_set.h" 11 #include "mojo/public/cpp/bindings/binding_set.h"
12 #include "mojo/shell/public/cpp/application_test_base.h"
13 #include "mojo/shell/public/cpp/shell_connection.h" 12 #include "mojo/shell/public/cpp/shell_connection.h"
13 #include "mojo/shell/public/cpp/shell_test.h"
14 #include "mojo/util/capture_util.h" 14 #include "mojo/util/capture_util.h"
15 15
16 using filesystem::FileError; 16 using filesystem::FileError;
17 using mojo::Capture; 17 using mojo::Capture;
18 18
19 namespace leveldb { 19 namespace leveldb {
20 namespace { 20 namespace {
21 21
22 class LevelDBApptest : public mojo::test::ApplicationTestBase { 22 class LevelDBApptest : public mojo::test::ShellTest {
23 public: 23 public:
24 LevelDBApptest() {} 24 LevelDBApptest() : ShellTest("exe:leveldb_service_unittests") {}
25 ~LevelDBApptest() override {} 25 ~LevelDBApptest() override {}
26 26
27 protected: 27 protected:
28 // Overridden from mojo::test::ApplicationTestBase: 28 // Overridden from mojo::test::ApplicationTestBase:
29 void SetUp() override { 29 void SetUp() override {
30 ApplicationTestBase::SetUp(); 30 ShellTest::SetUp();
31 connector()->ConnectToInterface("mojo:filesystem", &files_); 31 connector()->ConnectToInterface("mojo:filesystem", &files_);
32 connector()->ConnectToInterface("mojo:leveldb", &leveldb_); 32 connector()->ConnectToInterface("mojo:leveldb", &leveldb_);
33 } 33 }
34 34
35 // Note: This has an out parameter rather than returning the |DirectoryPtr|, 35 // Note: This has an out parameter rather than returning the |DirectoryPtr|,
36 // since |ASSERT_...()| doesn't work with return values. 36 // since |ASSERT_...()| doesn't work with return values.
37 void GetUserDataDir(filesystem::DirectoryPtr* directory) { 37 void GetUserDataDir(filesystem::DirectoryPtr* directory) {
38 FileError error = FileError::FAILED; 38 FileError error = FileError::FAILED;
39 files()->OpenPersistentFileSystem(GetProxy(directory), 39 files()->OpenPersistentFileSystem(GetProxy(directory),
40 mojo::Capture(&error)); 40 mojo::Capture(&error));
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 database->GetFromSnapshot( 298 database->GetFromSnapshot(
299 invalid_snapshot, 299 invalid_snapshot,
300 mojo::Array<uint8_t>::From(std::string("key")), 300 mojo::Array<uint8_t>::From(std::string("key")),
301 Capture(&error, &value)); 301 Capture(&error, &value));
302 ASSERT_TRUE(database.WaitForIncomingResponse()); 302 ASSERT_TRUE(database.WaitForIncomingResponse());
303 EXPECT_EQ(DatabaseError::INVALID_ARGUMENT, error); 303 EXPECT_EQ(DatabaseError::INVALID_ARGUMENT, error);
304 } 304 }
305 305
306 } // namespace 306 } // namespace
307 } // namespace leveldb 307 } // namespace leveldb
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698