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
3 // found in the LICENSE file.
5 #include "jingle/glue/task_pump.h"
7 #include "base/message_loop/message_loop.h"
8 #include "jingle/glue/mock_task.h"
9 #include "testing/gtest/include/gtest/gtest.h"
11 namespace jingle_glue
{
15 using ::testing::Return
;
17 class TaskPumpTest
: public testing::Test
{
19 base::MessageLoop message_loop_
;
22 TEST_F(TaskPumpTest
, Basic
) {
24 MockTask
* task
= new MockTask(&task_pump
);
25 // We have to do this since the state enum is protected in
27 const int TASK_STATE_DONE
= 2;
28 EXPECT_CALL(*task
, ProcessStart()).WillOnce(Return(TASK_STATE_DONE
));
31 base::MessageLoop::current()->RunUntilIdle();
34 TEST_F(TaskPumpTest
, Stop
) {
36 MockTask
* task
= new MockTask(&task_pump
);
37 // We have to do this since the state enum is protected in
39 const int TASK_STATE_ERROR
= 3;
40 ON_CALL(*task
, ProcessStart()).WillByDefault(Return(TASK_STATE_ERROR
));
41 EXPECT_CALL(*task
, ProcessStart()).Times(0);
45 base::MessageLoop::current()->RunUntilIdle();
50 } // namespace jingle_glue