OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
10 #include "chrome/utility/image_writer/error_messages.h" | 10 #include "chrome/utility/image_writer/error_messages.h" |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 EXPECT_CALL(mock_handler, SendSucceeded()).Times(2); | 220 EXPECT_CALL(mock_handler, SendSucceeded()).Times(2); |
221 EXPECT_CALL(mock_handler, SendFailed(_)).Times(0); | 221 EXPECT_CALL(mock_handler, SendFailed(_)).Times(0); |
222 | 222 |
223 FillDefault(image_path_); | 223 FillDefault(image_path_); |
224 | 224 |
225 image_writer.Write(); | 225 image_writer.Write(); |
226 | 226 |
227 base::RunLoop().RunUntilIdle(); | 227 base::RunLoop().RunUntilIdle(); |
228 } | 228 } |
229 | 229 |
| 230 TEST_F(ImageWriterUtilityTest, UnmountMac) { |
| 231 base::RunLoop loop; |
| 232 const base::Closure quit_closure = loop.QuitClosure(); |
| 233 |
| 234 VerifyingHandler mock_handler; |
| 235 ImageWriter image_writer(&mock_handler, image_path_, base::FilePath("disk3")); |
| 236 |
| 237 mock_handler.image_writer_ = &image_writer; |
| 238 |
| 239 image_writer.UnmountVolumes(quit_closure); |
| 240 |
| 241 loop.Run(); |
| 242 } |
| 243 |
230 } // namespace image_writer | 244 } // namespace image_writer |
OLD | NEW |