| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stdint.h> | 5 #include <stdint.h> |
| 6 #include <memory> | 6 #include <memory> |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "components/filesystem/public/interfaces/file_system.mojom.h" | 10 #include "components/filesystem/public/interfaces/file_system.mojom.h" |
| 11 #include "mojo/shell/public/cpp/application_impl.h" | |
| 12 #include "mojo/shell/public/cpp/application_test_base.h" | 11 #include "mojo/shell/public/cpp/application_test_base.h" |
| 12 #include "mojo/shell/public/cpp/shell.h" |
| 13 #include "mojo/util/capture_util.h" | 13 #include "mojo/util/capture_util.h" |
| 14 #include "sql/mojo/mojo_vfs.h" | 14 #include "sql/mojo/mojo_vfs.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "third_party/sqlite/sqlite3.h" | 16 #include "third_party/sqlite/sqlite3.h" |
| 17 | 17 |
| 18 namespace std { | 18 namespace std { |
| 19 | 19 |
| 20 // This deleter lets us be safe with sqlite3 objects, which aren't really the | 20 // This deleter lets us be safe with sqlite3 objects, which aren't really the |
| 21 // structs, but slabs of new uint8_t[size]. | 21 // structs, but slabs of new uint8_t[size]. |
| 22 template <> | 22 template <> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 46 } | 46 } |
| 47 | 47 |
| 48 scoped_ptr<sqlite3_file> MakeFile() { | 48 scoped_ptr<sqlite3_file> MakeFile() { |
| 49 return scoped_ptr<sqlite3_file>(reinterpret_cast<sqlite3_file*>( | 49 return scoped_ptr<sqlite3_file>(reinterpret_cast<sqlite3_file*>( |
| 50 new uint8_t[vfs()->szOsFile])); | 50 new uint8_t[vfs()->szOsFile])); |
| 51 } | 51 } |
| 52 | 52 |
| 53 void SetUp() override { | 53 void SetUp() override { |
| 54 mojo::test::ApplicationTestBase::SetUp(); | 54 mojo::test::ApplicationTestBase::SetUp(); |
| 55 | 55 |
| 56 application_impl()->ConnectToService("mojo:filesystem", &files_); | 56 shell()->ConnectToService("mojo:filesystem", &files_); |
| 57 | 57 |
| 58 filesystem::FileError error = filesystem::FileError::FAILED; | 58 filesystem::FileError error = filesystem::FileError::FAILED; |
| 59 filesystem::DirectoryPtr directory; | 59 filesystem::DirectoryPtr directory; |
| 60 files_->OpenFileSystem("temp", GetProxy(&directory), | 60 files_->OpenFileSystem("temp", GetProxy(&directory), |
| 61 binding_.CreateInterfacePtrAndBind(), | 61 binding_.CreateInterfacePtrAndBind(), |
| 62 mojo::Capture(&error)); | 62 mojo::Capture(&error)); |
| 63 ASSERT_TRUE(files_.WaitForIncomingResponse()); | 63 ASSERT_TRUE(files_.WaitForIncomingResponse()); |
| 64 ASSERT_EQ(filesystem::FileError::OK, error); | 64 ASSERT_EQ(filesystem::FileError::OK, error); |
| 65 | 65 |
| 66 vfs_.reset(new ScopedMojoFilesystemVFS(std::move(directory))); | 66 vfs_.reset(new ScopedMojoFilesystemVFS(std::move(directory))); |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 EXPECT_EQ(SQLITE_OK, rc); | 331 EXPECT_EQ(SQLITE_OK, rc); |
| 332 | 332 |
| 333 rc = file->pMethods->xFileSize(file.get(), &size); | 333 rc = file->pMethods->xFileSize(file.get(), &size); |
| 334 EXPECT_EQ(SQLITE_OK, rc); | 334 EXPECT_EQ(SQLITE_OK, rc); |
| 335 EXPECT_EQ(kCharsToThree, size); | 335 EXPECT_EQ(kCharsToThree, size); |
| 336 | 336 |
| 337 file->pMethods->xClose(file.get()); | 337 file->pMethods->xClose(file.get()); |
| 338 } | 338 } |
| 339 | 339 |
| 340 } // namespace sql | 340 } // namespace sql |
| OLD | NEW |