Failing tests #884
arnabghosh3654
started this conversation in
General
Replies: 1 comment 3 replies
-
I have the same problem. @bscholtes1A @cpeeyush any ideas? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
While running ./gradlew clean build, I get he following failing tests:
DataPlaneHttpIntegrationTests > transfer_sinkTemporaryDropsConnection_noRetry() FAILED
java.lang.AssertionError: Request not found exactly 2 times, expected:<{
"body" : {
"type" : "BINARY",
"base64Bytes" : "MjE5NTcyNzMtN2U5Zi00ZDBmLWI2NmQtZGFjMDA2ZTIyMjA1"
},
"headers" : {
"authorization" : [ "laborum" ],
"content-type" : [ "application/octet-stream" ]
},
"method" : "POST",
"path" : "/sample"
}> but was:<{
"body" : {
"type" : "BINARY",
"base64Bytes" : "MjE5NTcyNzMtN2U5Zi00ZDBmLWI2NmQtZGFjMDA2ZTIyMjA1",
"contentType" : "application/octet-stream"
},
"headers" : {
"authorization" : [ "laborum" ],
"content-length" : [ "36" ],
"Connection" : [ "Keep-Alive" ],
"User-Agent" : [ "okhttp/4.9.3" ],
"Host" : [ "localhost:42573" ],
"Accept-Encoding" : [ "gzip" ],
"Content-Type" : [ "application/octet-stream" ]
},
"keepAlive" : true,
"method" : "POST",
"path" : "/sample",
"secure" : false
}>
at org.mockserver.client.MockServerClient.verify(MockServerClient.java:781)
at org.eclipse.dataspaceconnector.dataplane.http.DataPlaneHttpIntegrationTests.transfer_sinkTemporaryDropsConnection_noRetry(DataPlaneHttpIntegrationTests.java:396)
6 tests completed, 1 failed
FAILURE: Build completed with 2 failures.
1: Task failed with an exception.
Execution failed for task ':extensions:ion:ion-client:test'.
2: Task failed with an exception.
Execution failed for task ':extensions:data-plane:integration-tests:test'.
BUILD FAILED in 2m 13s
1029 actionable tasks: 1029 executed
I am running behind a proxy and I have configured proxy settings in ~/gradle/gradle.properties . Any help is much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions