Android单元测试 - 使用Robolectric运行MockServer时出现IncompatibleClassChangeError

时间:2014-09-10 09:42:15

标签: android robolectric mockwebserver

我有这个测试班......

package com.blah.blah;

import static org.junit.Assert.assertTrue;

import com.squareup.okhttp.mockwebserver.MockWebServer;

import java.io.IOException;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;

@Config(emulateSdk = 18)
@RunWith(RobolectricTestRunner.class)
public class IncompatibleClassChangeErrorTest {

    private MockWebServer server;

    @Before
    public void setup() throws IOException {
        server = new MockWebServer();
        server.play();
    }

    @After
    public void teardown() throws IOException {
        server.shutdown(); // TODO Fix if possible. This throws java.lang.IncompatibleClassChangeError
    }

    @Test
    public void test() {
        assertTrue(true);
    }
}

...并且以下异常堆栈显示在Eclipse和Android Studio的控制台中......

Exception in thread "pool-2-thread-1" java.lang.IncompatibleClassChangeError: Class java.net.ServerSocket does not implement the requested interface java.io.Closeable
    at com.squareup.okhttp.internal.Util.closeQuietly(Util.java:110)
    at com.squareup.okhttp.mockwebserver.MockWebServer$2.run(MockWebServer.java:249)
    at com.squareup.okhttp.mockwebserver.MockWebServer$4.run(MockWebServer.java:624)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
    at java.lang.Thread.run(Thread.java:695)

...否则测试通过。另外,使用Gradle从命令行运行测试只会显示成功消息。

如果我注释掉server.shutdown(),一切似乎都没问题。当然这不是很好吗?

1 个答案:

答案 0 :(得分:1)

这似乎是1.2.2中修复的以下问题 https://github.com/square/okhttp/issues/357

如果您使用的是早期版本,请更新至最新版本并查看是否仍然存在。