Stream: git-wasmtime

Topic: wasmtime / issue #6161 Some improvements to the wasi-http...


view this post on Zulip Wasmtime GitHub notifications bot (Apr 06 2023 at 00:05):

brendandburns commented on issue #6161:

fwiw, the test failed b/c there was a 502 error from postman-echo.com. We may want to turn up a localhost server instead to reduce flakiness.

view this post on Zulip Wasmtime GitHub notifications bot (Apr 06 2023 at 18:08):

cfallin commented on issue #6161:

fwiw, the test failed b/c there was a 502 error from postman-echo.com. We may want to turn up a localhost server instead to reduce flakiness.

I'd strongly +1 this: I was confused just now watching CI logs and seeing queries to an external website. We definitely should not have dependencies on a third-party service like this in our core CI flows, especially given that we will sometimes have time-sensitive CI builds (e.g. for security issues) that cannot tolerate third-party downtime.

view this post on Zulip Wasmtime GitHub notifications bot (Apr 06 2023 at 18:35):

pchickey commented on issue #6161:

Agreed, this is one of the things i thought was OK for an initial prototype but we should remedy pretty quickly.

In addition to having integration tests that run against local webservers, we can also pursue writing tests by abstracting over how hyper forms connections, and connect to hyper services in the same process, skipping syscalls entirely. We would still want some tests to connect on a "real" local network to make sure that code gets exercised as well.

view this post on Zulip Wasmtime GitHub notifications bot (Apr 06 2023 at 22:08):

brendandburns commented on issue #6161:

I will update the tests in this PR to run against localhost


Last updated: Nov 22 2024 at 16:03 UTC