| 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" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 application_impl()->ConnectToService("mojo:filesystem", &files_); |
| 57 | 57 |
| 58 filesystem::FileSystemClientPtr client; | |
| 59 binding_.Bind(GetProxy(&client)); | |
| 60 | |
| 61 filesystem::FileError error = filesystem::FileError::FAILED; | 58 filesystem::FileError error = filesystem::FileError::FAILED; |
| 62 filesystem::DirectoryPtr directory; | 59 filesystem::DirectoryPtr directory; |
| 63 files_->OpenFileSystem("temp", GetProxy(&directory), std::move(client), | 60 files_->OpenFileSystem("temp", GetProxy(&directory), |
| 61 binding_.CreateInterfacePtrAndBind(), |
| 64 mojo::Capture(&error)); | 62 mojo::Capture(&error)); |
| 65 ASSERT_TRUE(files_.WaitForIncomingResponse()); | 63 ASSERT_TRUE(files_.WaitForIncomingResponse()); |
| 66 ASSERT_EQ(filesystem::FileError::OK, error); | 64 ASSERT_EQ(filesystem::FileError::OK, error); |
| 67 | 65 |
| 68 vfs_.reset(new ScopedMojoFilesystemVFS(std::move(directory))); | 66 vfs_.reset(new ScopedMojoFilesystemVFS(std::move(directory))); |
| 69 } | 67 } |
| 70 | 68 |
| 71 void TearDown() override { | 69 void TearDown() override { |
| 72 vfs_.reset(); | 70 vfs_.reset(); |
| 73 mojo::test::ApplicationTestBase::TearDown(); | 71 mojo::test::ApplicationTestBase::TearDown(); |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 EXPECT_EQ(SQLITE_OK, rc); | 331 EXPECT_EQ(SQLITE_OK, rc); |
| 334 | 332 |
| 335 rc = file->pMethods->xFileSize(file.get(), &size); | 333 rc = file->pMethods->xFileSize(file.get(), &size); |
| 336 EXPECT_EQ(SQLITE_OK, rc); | 334 EXPECT_EQ(SQLITE_OK, rc); |
| 337 EXPECT_EQ(kCharsToThree, size); | 335 EXPECT_EQ(kCharsToThree, size); |
| 338 | 336 |
| 339 file->pMethods->xClose(file.get()); | 337 file->pMethods->xClose(file.get()); |
| 340 } | 338 } |
| 341 | 339 |
| 342 } // namespace sql | 340 } // namespace sql |
| OLD | NEW |