Handler.handleMessage在测试中未调用,但在应用程序中调用

时间:2014-07-17 14:35:08

标签: java android android-service android-testing android-handler

我有一个在单独进程中运行的服务。该服务在onCreate()方法中生成一个新线程。该线程将消息发送回服务。

如果我手动启动应用程序,一切正常 - 我的服务中的Handler会收到消息。但是在我的测试中,handleMessage()方法永远不会被调用。

如何修复我的测试以使handleMessage()方法有效?

谢谢!

服务

public class MyService extends Service {

    private ServiceHandler mHandler;
    private final int MSG_HELLO_WORLD = 1;

    private final String TAG = getClass().getSimpleName();

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        return null;
    }


    @Override
    public void onCreate() {
        Log.d(TAG, "MyService.onCreate");
        super.onCreate();

        mHandler = new ServiceHandler();

        new Thread(new Runnable() {
            @Override
            public void run() {
                Log.d(TAG, "Thread: run()");

                while (true) {

                    try {
                        Log.d(TAG, "sleeping...");
                        Thread.sleep(3000);
                    } catch (InterruptedException e) {
                        Log.d(TAG, "Thread was interrupted.");
                        break;
                    }

                    Log.d(TAG, "sending message...");
                    Message msg = Message.obtain(mHandler, MSG_HELLO_WORLD);
                    msg.sendToTarget();
                }
            }
        }).start();

    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d(TAG, "MyService.onStartCommand");
        return START_REDELIVER_INTENT;
    }

    private class ServiceHandler extends Handler {

        @Override
        public void handleMessage(Message msg) {
            Log.d(TAG, "ServiceHandler.handleMessage");

            if (msg.what == MSG_HELLO_WORLD) {
                Log.d(TAG, "Hello World message received!");
            }
        }
    }

}

测试

public class MyServiceTest extends ServiceTestCase<MyService> {

    private static final String TAG = MyService.class.getSimpleName();

    public MyServiceTest() {
        super(MyService.class);
    }


    public void setUp() throws Exception {
        super.setUp();
    }


    public void testStartService() throws Exception {

        Intent startServiceIntent = new Intent(getContext(), MyService.class);

        startService(startServiceIntent);

        MyService myService = getService();

        assertNotNull(myService);

        // give the service some time to send messages
        Thread.sleep(10000);
    }
}

App的logcat输出(handleMessage()被调用):

MyService.onCreate
MyService.onStartCommand
Thread: run()
sleeping...
sending message...
sleeping...
ServiceHandler.handleMessage
Hello World message received!
sending message...
sleeping...

测试的logcat输出(handleMessage()未被调用):

MyService.onCreate
MyService.onStartCommand
Thread: run()
sleeping...
sending message...
sleeping...
sending message...
sleeping...
sending message...
sleeping...

1 个答案:

答案 0 :(得分:6)

你的问题对我来说似乎很有趣,所以我开始挖掘

  

如果我手动启动应用程序,一切正常 - 我的服务中的Handler会收到消息。

使用mHandlerMyService的{​​{1}}方法中初始化onCreate()时,Handler与当前执行的线程的消息队列相关联。来自队列的mHandler = new ServiceHandler()进程Messages依次由Looper is looping处理。结果,您可以在日志中看到“收到Hello World消息!”

  

但在我的测试中,mHandler方法永远不会被调用。

当您测试服务时,会在handleMessage()上调用其方法(请参阅InstrumentationThread中的Debuggerprepared未循环,因此消息无法处理,也不会显示在日志中。

  

如何修复我的测试以使handleMessage()方法有效?

我建议使用以下选项:

  • Looper绑定到调用MyServiceTest方法的线程 。为组件再写一个MyService,然后将测试与unit test合并到一个公共MyServiceTest测试文件中。这将显示所需的.java输出。
  • logcat 中循环准备好的Looper InstrumentationThread。您可以通过在MyServiceTest的{​​{1}}方法中添加Looper.loop()来实现此目的:

    testStartService()

    注意:运行MyServiceTest会显示所需的public void testStartService() throws Exception { Intent startServiceIntent = new Intent(getContext(), MyService.class); startService(startServiceIntent); MyService myService = getService(); assertNotNull(myService); // Run the Looper (this call is to be added) Looper.loop(); Thread.sleep(10000); } 输出,但由于Looper无限期运行,测试不会停止,直到您致电{ {3}}