Index: chrome/browser/system_monitor/image_capture_device_manager_unittest.mm |
diff --git a/chrome/browser/system_monitor/image_capture_device_manager_unittest.mm b/chrome/browser/system_monitor/image_capture_device_manager_unittest.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a817508e958367b965554d3e3f1602a99b69bbb4 |
--- /dev/null |
+++ b/chrome/browser/system_monitor/image_capture_device_manager_unittest.mm |
@@ -0,0 +1,321 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+ |
+#import <Foundation/Foundation.h> |
+#import <ImageCaptureCore/ImageCaptureCore.h> |
+ |
+#include "base/file_path.h" |
+#include "base/file_util.h" |
+#include "base/files/scoped_temp_dir.h" |
+#include "base/mac/foundation_util.h" |
+#include "base/memory/weak_ptr.h" |
+#include "base/message_loop.h" |
+#include "base/system_monitor/system_monitor.h" |
+#include "base/thread_task_runner_handle.h" |
+#include "chrome/browser/system_monitor/image_capture_device.h" |
+#include "chrome/browser/system_monitor/image_capture_device_manager.h" |
+#include "content/public/test/test_browser_thread.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace { |
+ |
+const char kDeviceId[] = "id"; |
+ |
+} // namespace |
+ |
+@interface MockICCameraDevice : ICCameraDevice { |
+ @private |
+ scoped_nsobject<NSMutableArray> allMediaFiles_; |
+} |
+ |
+- (void)addMediaFile:(ICCameraFile*)file; |
+ |
+@end |
+ |
+@implementation MockICCameraDevice |
+ |
+- (NSString*)mountPoint { |
+ return @"mountPoint"; |
+} |
+ |
+- (NSString*)name { |
+ return @"name"; |
+} |
+ |
+- (NSString*)UUIDString { |
+ return base::SysUTF8ToNSString(kDeviceId); |
+} |
+ |
+- (ICDeviceType)type { |
+ return ICDeviceTypeCamera; |
+} |
+ |
+- (void)requestOpenSession { |
+} |
+ |
+- (void)requestCloseSession { |
+} |
+ |
+- (NSArray*)mediaFiles { |
+ return allMediaFiles_; |
+} |
+ |
+- (void)addMediaFile:(ICCameraFile*)file { |
+ if (!allMediaFiles_.get()) |
+ allMediaFiles_.reset([NSMutableArray arrayWithCapacity:1]); |
+ [allMediaFiles_ addObject:file]; |
+} |
+ |
+- (void)requestDownloadFile:(ICCameraFile*)file |
+ options:(NSDictionary*)options |
+ downloadDelegate:(id<ICCameraDeviceDownloadDelegate>)downloadDelegate |
+ didDownloadSelector:(SEL)selector |
+ contextInfo:(void*)contextInfo { |
+ FilePath saveDir(base::SysNSStringToUTF8( |
+ [[options objectForKey:ICDownloadsDirectoryURL] path])); |
+ std::string saveAsFilename = |
+ base::SysNSStringToUTF8([options objectForKey:ICSaveAsFilename]); |
+ // It appears that the ImageCapture library adds an extension to the requested |
+ // filename. Do that here to require a rename. |
+ saveAsFilename += ".jpg"; |
+ FilePath toBeSaved = saveDir.Append(saveAsFilename); |
+ ASSERT_EQ(4, file_util::WriteFile(toBeSaved, "test", 4)); |
+ |
+ NSMutableDictionary* returnOptions = |
+ [NSMutableDictionary dictionaryWithDictionary:options]; |
+ [returnOptions setObject:base::SysUTF8ToNSString(saveAsFilename) |
+ forKey:ICSavedFilename]; |
+ |
+ [downloadDelegate didDownloadFile:file |
+ error:nil |
+ options:returnOptions |
+ contextInfo:contextInfo]; |
+} |
+ |
+@end |
+ |
+@interface MockICCameraFile : ICCameraFile { |
+ @private |
+ scoped_nsobject<NSString> name_; |
+ scoped_nsobject<NSDate> date_; |
+} |
+ |
+- (id)init:(NSString*)name; |
+ |
+@end |
+ |
+@implementation MockICCameraFile |
+ |
+- (id)init:(NSString*)name { |
+ if ((self = [super init])) { |
+ name_.reset(name); |
+ date_.reset([[NSDate dateWithNaturalLanguageString:@"12/12/12"] retain]); |
+ } |
+ return self; |
+} |
+ |
+- (NSString*)name { |
+ return name_.get(); |
+} |
+ |
+- (NSString*)UTI { |
+ return base::mac::CFToNSCast(kUTTypeImage); |
+} |
+ |
+- (NSDate*)modificationDate { |
+ return date_.get(); |
+} |
+ |
+- (NSDate*)creationDate { |
+ return date_.get(); |
+} |
+ |
+- (off_t)fileSize { |
+ return 1000; |
+} |
+ |
+@end |
+ |
+class TestCameraListener |
+ : public ImageCaptureDeviceListener, |
+ public base::SupportsWeakPtr<TestCameraListener> { |
+ public: |
+ TestCameraListener() : completed_(false), removed_(false) {} |
+ virtual ~TestCameraListener() {} |
+ |
+ virtual void ItemAdded(const std::string& name, |
+ const base::PlatformFileInfo& info) OVERRIDE { |
+ items_.push_back(name); |
+ } |
+ |
+ virtual void NoMoreItems() OVERRIDE { |
+ completed_ = true; |
+ } |
+ |
+ virtual void DownloadedFile(const std::string& name, |
+ base::PlatformFileError error) OVERRIDE { |
+ downloads_.push_back(name); |
sail
2012/12/21 02:47:10
check the thread ID here?
Greg Billock
2012/12/21 20:05:38
Done.
|
+ last_error_ = error; |
+ } |
+ |
+ virtual void DeviceRemoved() OVERRIDE { |
+ removed_ = true; |
+ } |
+ |
+ std::vector<std::string> items() { return items_; } |
+ std::vector<std::string> downloads() { return downloads_; } |
+ bool completed() { return completed_; } |
+ bool removed() { return removed_; } |
+ base::PlatformFileError last_error() { return last_error_; } |
+ |
+ private: |
+ std::vector<std::string> items_; |
+ std::vector<std::string> downloads_; |
+ bool completed_; |
+ bool removed_; |
+ base::PlatformFileError last_error_; |
+}; |
+ |
+class ImageCaptureDeviceManagerTest : public testing::Test { |
+ public: |
+ virtual void SetUp() OVERRIDE { |
+ base::SystemMonitor::AllocateSystemIOPorts(); |
+ system_monitor_.reset(new base::SystemMonitor()); |
+ ui_thread_.reset(new content::TestBrowserThread( |
+ content::BrowserThread::UI, &message_loop_)); |
+ } |
+ |
+ ICCameraDevice* AttachDevice( |
+ chrome::ImageCaptureDeviceManager* manager) { |
+ // Ownership will be passed to the device browser delegate. |
+ ICCameraDevice* device = [MockICCameraDevice alloc]; |
sail
2012/12/21 02:47:10
should be
MockICCameraDevice* device = [[[MockICCa
|
+ id<ICDeviceBrowserDelegate> delegate = manager->device_browser(); |
+ [delegate deviceBrowser:nil didAddDevice:device moreComing:NO]; |
+ return device; |
+ } |
+ |
+ void DetachDevice(chrome::ImageCaptureDeviceManager* manager, |
+ ICCameraDevice* device) { |
+ id<ICDeviceBrowserDelegate> delegate = manager->device_browser(); |
+ [delegate deviceBrowser:nil didRemoveDevice:device moreGoing:NO]; |
+ } |
+ |
+ protected: |
+ MessageLoopForUI message_loop_; |
+ scoped_ptr<content::TestBrowserThread> ui_thread_; |
+ scoped_ptr<base::SystemMonitor> system_monitor_; |
+ TestCameraListener listener_; |
+}; |
+ |
+TEST_F(ImageCaptureDeviceManagerTest, TestAttachDetach) { |
+ chrome::ImageCaptureDeviceManager manager; |
+ ICCameraDevice* device = AttachDevice(&manager); |
+ |
+ std::vector<base::SystemMonitor::RemovableStorageInfo> devices = |
+ system_monitor_->GetAttachedRemovableStorage(); |
+ |
+ ASSERT_EQ(1U, devices.size()); |
+ EXPECT_EQ(std::string("ic:") + kDeviceId, devices[0].device_id); |
+ |
+ DetachDevice(&manager, device); |
+ devices = system_monitor_->GetAttachedRemovableStorage(); |
+ ASSERT_EQ(0U, devices.size()); |
+}; |
+ |
+TEST_F(ImageCaptureDeviceManagerTest, OpenCamera) { |
+ chrome::ImageCaptureDeviceManager manager; |
+ ICCameraDevice* device = AttachDevice(&manager); |
+ |
+ EXPECT_FALSE(chrome::ImageCaptureDeviceManager::deviceForUUID( |
+ "nonexistent")); |
+ |
+ scoped_nsobject<ImageCaptureDevice> camera( |
+ [chrome::ImageCaptureDeviceManager::deviceForUUID(kDeviceId) |
+ retain]); |
+ |
+ [camera setListener:listener_.AsWeakPtr()]; |
+ [camera open]; |
+ |
+ scoped_nsobject<MockICCameraFile> picture1( |
+ [[MockICCameraFile alloc] init:@"pic1"]); |
+ [camera cameraDevice:nil didAddItem:picture1]; |
+ scoped_nsobject<MockICCameraFile> picture2( |
+ [[MockICCameraFile alloc] init:@"pic2"]); |
+ [camera cameraDevice:nil didAddItem:picture2]; |
+ ASSERT_EQ(2U, listener_.items().size()); |
+ EXPECT_EQ("pic1", listener_.items()[0]); |
+ EXPECT_EQ("pic2", listener_.items()[1]); |
+ EXPECT_FALSE(listener_.completed()); |
+ |
+ [camera deviceDidBecomeReadyWithCompleteContentCatalog:nil]; |
+ ASSERT_EQ(2U, listener_.items().size()); |
+ EXPECT_TRUE(listener_.completed()); |
+ |
+ [camera close]; |
+ DetachDevice(&manager, device); |
+ EXPECT_FALSE(chrome::ImageCaptureDeviceManager::deviceForUUID( |
+ kDeviceId)); |
+} |
+ |
+TEST_F(ImageCaptureDeviceManagerTest, RemoveCamera) { |
+ chrome::ImageCaptureDeviceManager manager; |
+ ICCameraDevice* device = AttachDevice(&manager); |
+ |
+ scoped_nsobject<ImageCaptureDevice> camera( |
+ [chrome::ImageCaptureDeviceManager::deviceForUUID(kDeviceId) |
+ retain]); |
+ |
+ [camera setListener:listener_.AsWeakPtr()]; |
+ [camera open]; |
+ |
+ [camera didRemoveDevice:device]; |
+ EXPECT_TRUE(listener_.removed()); |
+} |
+ |
+TEST_F(ImageCaptureDeviceManagerTest, DownloadFile) { |
+ scoped_ptr<content::TestBrowserThread> file_thread_( |
+ new content::TestBrowserThread( |
+ content::BrowserThread::FILE, &message_loop_)); |
+ |
+ chrome::ImageCaptureDeviceManager manager; |
+ ICCameraDevice* device = AttachDevice(&manager); |
+ |
+ scoped_nsobject<ImageCaptureDevice> camera( |
+ [chrome::ImageCaptureDeviceManager::deviceForUUID(kDeviceId) |
+ retain]); |
+ |
+ [camera setListener:listener_.AsWeakPtr()]; |
+ [camera open]; |
+ |
+ scoped_nsobject<MockICCameraFile> picture1( |
+ [[MockICCameraFile alloc] init:@"pic1"]); |
+ [base::mac::ObjCCastStrict<MockICCameraDevice>(device) |
sail
2012/12/21 02:47:10
should remove the cast and have AttachedDevice ret
Greg Billock
2012/12/21 20:05:38
I wanted to do this, but when I did, the call to
sail
2012/12/26 18:52:37
Hm.. that's really weird, it shouldn't fail. What'
sail
2012/12/26 20:48:47
There's no strong typing on method dispatch. If do
Greg Billock
2013/01/03 20:59:55
OK, it must have been some other simultaneous chan
sail
2013/01/03 21:50:28
Ahh cool.
|
+ addMediaFile:picture1]; |
+ [camera cameraDevice:nil didAddItem:picture1]; |
+ |
+ base::ScopedTempDir temp_dir; |
+ ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); |
+ |
+ ASSERT_EQ(0U, listener_.downloads().size()); |
sail
2012/12/21 02:47:10
expect_eq
Greg Billock
2012/12/21 20:05:38
Done.
|
+ |
+ [camera downloadFile:std::string("nonexistent") |
+ localPath:temp_dir.path().Append("tempfile")]; |
sail
2012/12/21 02:47:10
make tempfile a const above this line?
Greg Billock
2012/12/21 20:05:38
Done.
|
+ message_loop_.RunUntilIdle(); |
+ ASSERT_EQ(1U, listener_.downloads().size()); |
+ EXPECT_EQ("nonexistent", listener_.downloads()[0]); |
+ EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, listener_.last_error()); |
+ |
+ [camera downloadFile:std::string("pic1") |
sail
2012/12/21 02:47:10
make pic1 a constant above this line
Greg Billock
2012/12/21 20:05:38
Done, kinda. I can't figure out how to make @"pic1
|
+ localPath:temp_dir.path().Append("tempfile")]; |
+ message_loop_.RunUntilIdle(); |
+ |
+ ASSERT_EQ(2U, listener_.downloads().size()); |
+ EXPECT_EQ("pic1", listener_.downloads()[1]); |
+ ASSERT_EQ(base::PLATFORM_FILE_OK, listener_.last_error()); |
+ char file_contents[5]; |
+ ASSERT_EQ(4, file_util::ReadFile(temp_dir.path().Append("tempfile"), |
+ file_contents, 4)); |
+ EXPECT_EQ("test", std::string(file_contents, 4)); |
sail
2012/12/21 02:47:10
make "test" a constant at the top of this file?
Greg Billock
2012/12/21 20:05:38
Done.
|
+} |