代码之家  ›  专栏  ›  技术社区  ›  Joel Holmes

Pact提供者@状态测试始终返回404

  •  0
  • Joel Holmes  · 技术社区  · 7 年前

    我可以为Spring Boot项目运行测试,但在@State测试中我总是得到404。

    @TargetRequestFilter
    public void exampleRequestFilter(HttpRequest request) {
      System.out.println(request.toString());
      request.addHeader("Authorization", JIMMY_CARTER_TOKEN);
    }
    
    @BeforeClass
    public static void setupApplication() {
      SpringApplication application = new SpringApplication(App.class);
      application.setAdditionalProfiles("integration");
      application.run("--server.port=9000");
    }
    
    @TestTarget
    public final HttpTarget target = new HttpTarget("http", "127.0.0.1", 9000);
    
    @State("user id") // Method will be run before testing interactions that require "default" or "no-data" state
    public void toUserId() {
        System.out.println("Test User Id");
    }
    

    "request": {
                "method": "GET",
                "path": "/api/user/XXXXXX"
            },
            "response": {
                "status": 200,
                "headers": {
                    "content-type": "application/vnd.api+json;charset=UTF-8"
                },
                "body": ... 
    },
            "providerStates": [
                {
                    "name": "user id"
                }
            ]
        }
    
    1 回复  |  直到 7 年前
        1
  •  1
  •   Ronald Holshausen    7 年前

    通过使用Apache HTTP客户端和pact jvm库启用调试日志记录,您可以看到发出了什么请求。有关Apache HTTP客户端,请参阅 https://hc.apache.org/httpcomponents-client-ga/logging.html

    关于您要查找的调试日志的示例,这来自示例 ContractTest 来自pact jvm( https://github.com/DiUS/pact-jvm/blob/master/pact-jvm-provider-junit/src/test/java/au/com/dius/pact/provider/junit/ContractTest.java

        13:09:20.012 [Test worker] DEBUG au.com.dius.pact.provider.ProviderClient - Making request for provider au.com.dius.pact.provider.ProviderInfo(http, localhost, 8332, /, myAwesomeService, null, null, au.com.dius.pact.provider.junit.target.HttpTarget$$Lambda$14/771479970@1dec1536, null, null, false, null, changeit, null, true, false, true, null, [], []):
        13:09:20.018 [Test worker] DEBUG au.com.dius.pact.provider.ProviderClient -     method: GET
              path: /data
              query: [:]
              headers: [:]
              matchers: MatchingRules(rules=[:])
              generators: Generators(categories={})
              body: OptionalBody(state=MISSING, value=null)
            13:09:20.475 [Test worker] INFO au.com.dius.pact.provider.junit.ContractTest - exampleRequestFilter called: GET http://localhost:8332/data HTTP/1.1
        13:09:20.537 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> GET /data HTTP/1.1
        13:09:20.538 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8332
        13:09:20.538 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive
        13:09:20.551 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.2 (Java/1.8.0_131)
        13:09:20.553 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Accept-Encoding: gzip,deflate
        13:09:20.553 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "GET /data HTTP/1.1[\r][\n]"
        13:09:20.554 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8332[\r][\n]"
        13:09:20.555 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
        13:09:20.558 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.2 (Java/1.8.0_131)[\r][\n]"
        13:09:20.559 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]"
        13:09:20.560 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]"
        13:09:20.774 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 204 No Content[\r][\n]"
        13:09:20.775 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Date: Sat, 23 Sep 2017 03:09:20 GMT[\r][\n]"
        13:09:20.775 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: rest-client-driver(1.1.45)[\r][\n]"
        13:09:20.779 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]"
        13:09:20.784 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 204 No Content
        13:09:20.785 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Date: Sat, 23 Sep 2017 03:09:20 GMT
        13:09:20.785 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: rest-client-driver(1.1.45)
        13:09:20.842 [Test worker] DEBUG au.com.dius.pact.provider.ProviderClient - Received response: HTTP/1.1 204 No Content
        13:09:20.867 [Test worker] DEBUG au.com.dius.pact.provider.ProviderClient - Response: [statusCode:204, headers:[Date:Sat, 23 Sep 2017 03:09:20 GMT, Server:rest-client-driver(1.1.45)]]
        13:09:21.724 [Test worker] DEBUG au.com.dius.pact.model.Matching$ - Found a matcher for text/plain -> Some((text/plain,au.com.dius.pact.matchers.PlainTextBodyMatcher@29c3e77b))
            returns a response which
              has status code 204 (OK)
              has a matching body (OK)
    
    推荐文章