有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Android测试包中的新服务

我想在一个框架中测试一个类,该框架基于意图启动不同的服务。但是,在运行连接的安卓测试时,我在安卓Test/内创建TestService时遇到问题。getService方法返回null

提前感谢您的指导和帮助

@RunWith(AndroidJUnit4.class)
public class WakefulIntentSenderTest {
    private static final String SOME_ACTION = "someAction";

    private static class TestService extends Service {
        private boolean mCalled;

        @Override
        public void onCreate() {
            super.onCreate();
        }

        @Override
        public IBinder onBind(final Intent intent) {
            return null;
        }

        @Override
        public int onStartCommand(final Intent intent, final int flags, final int startId) {
            mCalled = true;
            return 0;
        }

        public boolean wasCalled() {
            return mCalled;
        }

        public class TestServiceBinder extends Binder {

        public TestService getService() {
            return TestService.this;
        }
    }

    @Test
    public void testWithBoundService() throws TimeoutException {
        // Create the service Intent.
        Intent serviceIntent =
                new Intent(InstrumentationRegistry.getTargetContext(), TestService.class);

        InstrumentationRegistry.getTargetContext().startService(intent);

        // Bind the service and grab a reference to the binder.
        IBinder binder = mServiceRule.bindService(serviceIntent);

        // Get the reference to the service, or you can call public methods on the binder directly.
        TestService service = ((TestService.TestServiceBinder) binder).getService();

        // Verify that the service is working correctly.
        assertEquals(service.wasCalled(), true);
    }
}

我还有其他问题,TestService是在“Test”包中真正创建的。如果我试图通过应用程序上下文启动TestService,它会给我一个错误,说Unable to start service Intent { cmp=com.example.abc.test/com.example.abc.WakefulIntentSenderTest$TestService } U=0: not founderror

上面的代码只是为了演示我是否可以启动服务

更多信息。。。InstrumentationRegistry在调用getTargetContext()时返回com.example.abc,在调用getContext()时返回com.example.abc.test

我真正想测试的是com.example.abc后面的一个类,它使用PowerManager来启动一个带有Wakelock的服务。但这是我现在的想法,因为我甚至不能从测试包启动服务

不幸的是,在主软件包中使用TestService也不是我的选择:(


共 (2) 个答案

  1. # 1 楼答案

    您需要在TestService#onBind中返回TestServiceBinder类的实例