1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/functional/bind.h"
#include "base/strings/pattern.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/extensions/api/image_writer_private/error_constants.h"
#include "chrome/browser/extensions/api/image_writer_private/removable_storage_provider.h"
#include "chrome/browser/extensions/api/image_writer_private/test_utils.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/common/extensions/api/image_writer_private.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/browser_test.h"
#include "extensions/browser/api/file_system/file_system_api.h"
#include "extensions/browser/api_unittest.h"
namespace extensions {
using api::image_writer_private::RemovableStorageDevice;
using extensions::image_writer::FakeImageWriterClient;
class ImageWriterPrivateApiTest : public ExtensionApiTest {
public:
void SetUpInProcessBrowserTestFixture() override {
ExtensionApiTest::SetUpInProcessBrowserTestFixture();
test_utils_.SetUp();
ASSERT_TRUE(test_utils_.FillFile(test_utils_.GetImagePath(),
image_writer::kImagePattern,
image_writer::kTestFileSize));
ASSERT_TRUE(test_utils_.FillFile(test_utils_.GetDevicePath(),
image_writer::kDevicePattern,
image_writer::kTestFileSize));
scoped_refptr<StorageDeviceList> device_list(new StorageDeviceList);
RemovableStorageDevice expected1;
expected1.vendor = "Vendor 1";
expected1.model = "Model 1";
expected1.capacity = image_writer::kTestFileSize;
expected1.removable = true;
#if BUILDFLAG(IS_WIN)
expected1.storage_unit_id = test_utils_.GetDevicePath().AsUTF8Unsafe();
#else
expected1.storage_unit_id = test_utils_.GetDevicePath().value();
#endif
RemovableStorageDevice expected2;
expected2.vendor = "Vendor 2";
expected2.model = "Model 2";
expected2.capacity = image_writer::kTestFileSize << 2;
expected2.removable = false;
#if BUILDFLAG(IS_WIN)
expected2.storage_unit_id = test_utils_.GetDevicePath().AsUTF8Unsafe();
#else
expected2.storage_unit_id = test_utils_.GetDevicePath().value();
#endif
device_list->data.push_back(std::move(expected1));
device_list->data.push_back(std::move(expected2));
RemovableStorageProvider::SetDeviceListForTesting(device_list);
}
void TearDownInProcessBrowserTestFixture() override {
ExtensionApiTest::TearDownInProcessBrowserTestFixture();
test_utils_.TearDown();
RemovableStorageProvider::ClearDeviceListForTesting();
}
protected:
image_writer::ImageWriterTestUtils test_utils_;
};
IN_PROC_BROWSER_TEST_F(ImageWriterPrivateApiTest, TestListDevices) {
ASSERT_TRUE(RunExtensionTest("image_writer_private/list_devices"))
<< message_;
}
IN_PROC_BROWSER_TEST_F(ImageWriterPrivateApiTest, TestWriteFromFile) {
FileSystemChooseEntryFunction::RegisterTempExternalFileSystemForTest(
"test_temp", test_utils_.GetTempDir());
base::FilePath selected_image(test_utils_.GetImagePath());
const FileSystemChooseEntryFunction::TestOptions test_options{
.path_to_be_picked = &selected_image};
auto reset_options =
FileSystemChooseEntryFunction::SetOptionsForTesting(test_options);
#if !BUILDFLAG(IS_CHROMEOS)
auto set_up_utility_client_callbacks = [](FakeImageWriterClient* client) {
std::vector<int> progress_list{0, 50, 100};
client->SimulateProgressOnWrite(progress_list, true);
client->SimulateProgressOnVerifyWrite(progress_list, true);
};
// Sets up client for simulating Operation::Progress() on Operation::Write and
// Operation::VerifyWrite.
test_utils_.RunOnUtilityClientCreation(
base::BindOnce(set_up_utility_client_callbacks));
#endif
ASSERT_TRUE(RunExtensionTest("image_writer_private/write_from_file",
{.launch_as_platform_app = true}))
<< message_;
}
} // namespace extensions
|