| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/message_loop.h" | 5 #include "base/message_loop.h" |
| 6 #include "base/synchronization/waitable_event.h" | 6 #include "base/synchronization/waitable_event.h" |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/storage_monitor/mock_removable_storage_observer.h" | 8 #include "chrome/browser/storage_monitor/mock_removable_storage_observer.h" |
| 9 #include "chrome/browser/storage_monitor/storage_monitor.h" | 9 #include "chrome/browser/storage_monitor/storage_monitor.h" |
| 10 #include "chrome/browser/storage_monitor/test_storage_monitor.h" | 10 #include "chrome/browser/storage_monitor/test_storage_monitor.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 namespace chrome { | 13 namespace chrome { |
| 14 | 14 |
| 15 TEST(StorageMonitorTest, TestInitialize) { | 15 TEST(StorageMonitorTest, TestInitialize) { |
| 16 test::TestStorageMonitor monitor; | 16 test::TestStorageMonitor monitor; |
| 17 EXPECT_FALSE(monitor.init_called_); | 17 EXPECT_FALSE(monitor.init_called_); |
| 18 | 18 |
| 19 base::WaitableEvent event(false, false); | 19 base::WaitableEvent event(false, false); |
| 20 monitor.Initialize(base::Bind(&base::WaitableEvent::Signal, | 20 monitor.Initialize(base::Bind(&base::WaitableEvent::Signal, |
| 21 base::Unretained(&event))); | 21 base::Unretained(&event))); |
| 22 EXPECT_TRUE(monitor.init_called_); | 22 EXPECT_TRUE(monitor.init_called_); |
| 23 EXPECT_FALSE(event.IsSignaled()); | 23 EXPECT_FALSE(event.IsSignaled()); |
| 24 monitor.MarkInitialized(); | 24 monitor.MarkInitialized(); |
| 25 EXPECT_TRUE(event.IsSignaled()); | 25 EXPECT_TRUE(event.IsSignaled()); |
| 26 } | 26 } |
| 27 | 27 |
| 28 TEST(StorageMonitorTest, DeviceAttachDetachNotifications) { | 28 TEST(StorageMonitorTest, DeviceAttachDetachNotifications) { |
| 29 MessageLoop message_loop; | 29 base::MessageLoop message_loop; |
| 30 const string16 kDeviceName = ASCIIToUTF16("media device"); | 30 const string16 kDeviceName = ASCIIToUTF16("media device"); |
| 31 const std::string kDeviceId1 = "1"; | 31 const std::string kDeviceId1 = "1"; |
| 32 const std::string kDeviceId2 = "2"; | 32 const std::string kDeviceId2 = "2"; |
| 33 MockRemovableStorageObserver observer1; | 33 MockRemovableStorageObserver observer1; |
| 34 MockRemovableStorageObserver observer2; | 34 MockRemovableStorageObserver observer2; |
| 35 test::TestStorageMonitor monitor; | 35 test::TestStorageMonitor monitor; |
| 36 monitor.AddObserver(&observer1); | 36 monitor.AddObserver(&observer1); |
| 37 monitor.AddObserver(&observer2); | 37 monitor.AddObserver(&observer2); |
| 38 | 38 |
| 39 StorageInfo info(kDeviceId1, kDeviceName, FILE_PATH_LITERAL("path"), | 39 StorageInfo info(kDeviceId1, kDeviceName, FILE_PATH_LITERAL("path"), |
| (...skipping 26 matching lines...) Expand all Loading... |
| 66 | 66 |
| 67 // The kDeviceId2 won't be notified since it was never attached. | 67 // The kDeviceId2 won't be notified since it was never attached. |
| 68 EXPECT_EQ(1, observer1.detach_calls()); | 68 EXPECT_EQ(1, observer1.detach_calls()); |
| 69 EXPECT_EQ(1, observer2.detach_calls()); | 69 EXPECT_EQ(1, observer2.detach_calls()); |
| 70 | 70 |
| 71 monitor.RemoveObserver(&observer1); | 71 monitor.RemoveObserver(&observer1); |
| 72 monitor.RemoveObserver(&observer2); | 72 monitor.RemoveObserver(&observer2); |
| 73 } | 73 } |
| 74 | 74 |
| 75 TEST(StorageMonitorTest, GetAttachedStorageEmpty) { | 75 TEST(StorageMonitorTest, GetAttachedStorageEmpty) { |
| 76 MessageLoop message_loop; | 76 base::MessageLoop message_loop; |
| 77 test::TestStorageMonitor monitor; | 77 test::TestStorageMonitor monitor; |
| 78 std::vector<StorageInfo> devices = monitor.GetAttachedStorage(); | 78 std::vector<StorageInfo> devices = monitor.GetAttachedStorage(); |
| 79 EXPECT_EQ(0U, devices.size()); | 79 EXPECT_EQ(0U, devices.size()); |
| 80 } | 80 } |
| 81 | 81 |
| 82 TEST(StorageMonitorTest, GetRemovableStorageAttachDetach) { | 82 TEST(StorageMonitorTest, GetRemovableStorageAttachDetach) { |
| 83 MessageLoop message_loop; | 83 base::MessageLoop message_loop; |
| 84 test::TestStorageMonitor monitor; | 84 test::TestStorageMonitor monitor; |
| 85 const std::string kDeviceId1 = "42"; | 85 const std::string kDeviceId1 = "42"; |
| 86 const string16 kDeviceName1 = ASCIIToUTF16("test"); | 86 const string16 kDeviceName1 = ASCIIToUTF16("test"); |
| 87 const base::FilePath kDevicePath1(FILE_PATH_LITERAL("/testfoo")); | 87 const base::FilePath kDevicePath1(FILE_PATH_LITERAL("/testfoo")); |
| 88 StorageInfo info1(kDeviceId1, kDeviceName1, kDevicePath1.value(), | 88 StorageInfo info1(kDeviceId1, kDeviceName1, kDevicePath1.value(), |
| 89 string16(), string16(), string16(), 0); | 89 string16(), string16(), string16(), 0); |
| 90 monitor.receiver()->ProcessAttach(info1); | 90 monitor.receiver()->ProcessAttach(info1); |
| 91 message_loop.RunUntilIdle(); | 91 message_loop.RunUntilIdle(); |
| 92 std::vector<StorageInfo> devices = monitor.GetAttachedStorage(); | 92 std::vector<StorageInfo> devices = monitor.GetAttachedStorage(); |
| 93 ASSERT_EQ(1U, devices.size()); | 93 ASSERT_EQ(1U, devices.size()); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 119 EXPECT_EQ(kDeviceName2, devices[0].name()); | 119 EXPECT_EQ(kDeviceName2, devices[0].name()); |
| 120 EXPECT_EQ(kDevicePath2.value(), devices[0].location()); | 120 EXPECT_EQ(kDevicePath2.value(), devices[0].location()); |
| 121 | 121 |
| 122 monitor.receiver()->ProcessDetach(kDeviceId2); | 122 monitor.receiver()->ProcessDetach(kDeviceId2); |
| 123 message_loop.RunUntilIdle(); | 123 message_loop.RunUntilIdle(); |
| 124 devices = monitor.GetAttachedStorage(); | 124 devices = monitor.GetAttachedStorage(); |
| 125 EXPECT_EQ(0U, devices.size()); | 125 EXPECT_EQ(0U, devices.size()); |
| 126 } | 126 } |
| 127 | 127 |
| 128 } // namespace chrome | 128 } // namespace chrome |
| OLD | NEW |