| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_TEST_UTILS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_TEST_UTILS_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_TEST_UTILS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 // Pattern to use in the image file. | 24 // Pattern to use in the image file. |
| 25 const int kImagePattern = 0x55555555; // 01010101 | 25 const int kImagePattern = 0x55555555; // 01010101 |
| 26 // Pattern to use in the device file. | 26 // Pattern to use in the device file. |
| 27 const int kDevicePattern = 0xAAAAAAAA; // 10101010 | 27 const int kDevicePattern = 0xAAAAAAAA; // 10101010 |
| 28 | 28 |
| 29 // A mock around the operation manager for tracking callbacks. Note that there | 29 // A mock around the operation manager for tracking callbacks. Note that there |
| 30 // are non-virtual methods on this class that should not be called in tests. | 30 // are non-virtual methods on this class that should not be called in tests. |
| 31 class MockOperationManager : public OperationManager { | 31 class MockOperationManager : public OperationManager { |
| 32 public: | 32 public: |
| 33 MockOperationManager(); | 33 MockOperationManager(); |
| 34 explicit MockOperationManager(Profile* profile); | |
| 35 virtual ~MockOperationManager(); | 34 virtual ~MockOperationManager(); |
| 36 | 35 |
| 37 MOCK_METHOD3(OnProgress, void(const ExtensionId& extension_id, | 36 MOCK_METHOD3(OnProgress, void(const ExtensionId& extension_id, |
| 38 image_writer_api::Stage stage, | 37 image_writer_api::Stage stage, |
| 39 int progress)); | 38 int progress)); |
| 40 // Callback for completion events. | 39 // Callback for completion events. |
| 41 MOCK_METHOD1(OnComplete, void(const std::string& extension_id)); | 40 MOCK_METHOD1(OnComplete, void(const std::string& extension_id)); |
| 42 | 41 |
| 43 // Callback for error events. | 42 // Callback for error events. |
| 44 MOCK_METHOD4(OnError, void(const ExtensionId& extension_id, | 43 MOCK_METHOD4(OnError, void(const ExtensionId& extension_id, |
| 45 image_writer_api::Stage stage, | 44 image_writer_api::Stage stage, |
| 46 int progress, | 45 int progress, |
| 47 const std::string& error_message)); | 46 const std::string& error_message)); |
| 48 }; | 47 }; |
| 49 | 48 |
| 50 // Base class for unit tests that manages creating image and device files. | 49 // Base class for unit tests that manages creating image and device files. |
| 51 class ImageWriterUnitTestBase : public testing::Test { | 50 class ImageWriterUnitTestBase : public testing::Test { |
| 52 public: | 51 public: |
| 53 ImageWriterUnitTestBase(); | 52 ImageWriterUnitTestBase(); |
| 54 virtual ~ImageWriterUnitTestBase(); | 53 virtual ~ImageWriterUnitTestBase(); |
| 55 | 54 |
| 56 protected: | 55 protected: |
| 57 virtual void SetUp() OVERRIDE; | 56 virtual void SetUp() OVERRIDE; |
| 58 | 57 |
| 59 virtual void TearDown() OVERRIDE; | 58 virtual void TearDown() OVERRIDE; |
| 60 | 59 |
| 60 // Compare the image and device files, returning true if they are the same, |
| 61 // false if different. |
| 62 bool CompareImageAndDevice(); |
| 63 |
| 64 base::ScopedTempDir temp_dir_; |
| 65 base::FilePath test_image_path_; |
| 66 base::FilePath test_device_path_; |
| 67 |
| 68 private: |
| 61 // Fills |file| with |length| bytes of |pattern|, overwriting any existing | 69 // Fills |file| with |length| bytes of |pattern|, overwriting any existing |
| 62 // data. | 70 // data. |
| 63 bool FillFile(const base::FilePath& file, | 71 bool FillFile(const base::FilePath& file, |
| 64 const int pattern, | 72 const int pattern, |
| 65 const int length); | 73 const int length); |
| 66 | 74 |
| 67 base::ScopedTempDir temp_dir_; | |
| 68 base::FilePath test_image_path_; | |
| 69 base::FilePath test_device_path_; | |
| 70 | |
| 71 private: | |
| 72 content::TestBrowserThreadBundle thread_bundle_; | 75 content::TestBrowserThreadBundle thread_bundle_; |
| 73 }; | 76 }; |
| 74 | 77 |
| 75 } // namespace image_writer | 78 } // namespace image_writer |
| 76 } // namespace extensions | 79 } // namespace extensions |
| 77 | 80 |
| 78 #endif // CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_TEST_UTILS_H_ | 81 #endif // CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_TEST_UTILS_H_ |
| OLD | NEW |