1

Square から MockWebServer を実装しようとしていますが、プロキシの背後にあります。問題は、インストルメンテーション テストを実行するたびに、MockWebServer に対して行っているすべての要求に対して 407 を取得しているため、失敗することです。

debug.level.titleD/OkHttp: <-- 407 Proxy Authentication Required http://localhost:12345/user/login (767ms)

ご覧のとおり、私はローカルホストを指していますが、なぜこれを取得しているのかわかりません!

これが私の MockWebServer 実装です!

public class MockedTestServer {



private final int PORT = 12345;
private final MockWebServer server;
private int lastResponseCode;
private String lastRequestPath;

/**
 * Creates and starts a new server, with a non-default dispatcher
 *
 * @throws Exception
 */
public MockedTestServer() throws Exception {
    server = new MockWebServer();
    server.start(PORT);
    setDispatcher();
}

private void setDispatcher() {
    final Dispatcher dispatcher = new Dispatcher() {
        @Override
        public MockResponse dispatch(final RecordedRequest request) throws InterruptedException {
            try {
                final String requestPath = request.getPath();

                final MockResponse response = new MockResponse().setResponseCode(200);
                String filename;


                // response for alerts
                if (requestPath.equals(Constantes.ACTION_LOGIN)) {
                    filename = ConstantesJSON.LOGIN_OK;

                } else {
                    // no response
                    lastResponseCode = 404;
                    return new MockResponse().setResponseCode(404);
                }
                lastResponseCode = 200;
                response.setBody(RestServiceTestHelper.getStringFromFile(filename));
                lastRequestPath = requestPath;
                return response;
            } catch (final Exception e) {
                throw new InterruptedException(e.getMessage());
            }
        }
    };
    server.setDispatcher(dispatcher);
}



public String getLastRequestPath() {
    return lastRequestPath;
}

public String getUrl() {
    return server.url("/").toString();
}

public int getLastResponseCode() {
    return lastResponseCode;
}


public void setDefaultDispatcher() {
    server.setDispatcher(new QueueDispatcher());
}


public void enqueueResponse(final MockResponse response) {
    server.enqueue(response);
}

public void shutdownServer() throws IOException {
    server.shutdown();
}

インストルメンテーション テストを実行しているときのエンド ポイントは「/」です。

この問題は、プロキシ ネットワークの背後にいる場合にのみ発生します。モバイル デバイスで、プロキシの背後にない別のネットワークに切り替えると、モック サーバーが正常に動作します。私が間違っていることは何ですか?

編集:私がプロキシの背後にいるとき、ディスパッチャーは決して呼び出されません

4

1 に答える 1