Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try improve fixture flakiness due to unstable_dev #6367

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/flat-bears-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wrangler": patch
---

fix: implicitly cleanup (call `stop()`) in `unstable_dev` if the returned Promise rejected and the `stop()` function was not returned
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ async function startWorkers(): Promise<UnstableDevWorker[]> {
ip: "127.0.0.1",
experimental: {
devEnv: true,
fileBasedRegistry: true,
},
});
})
Expand Down
133 changes: 66 additions & 67 deletions fixtures/local-mode-tests/tests/module.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe("module worker", () => {
config: path.resolve(__dirname, "..", "wrangler.module.toml"),
vars: { VAR4: "https://google.com" },
ip: "127.0.0.1",
port: 0,
experimental: {
disableExperimentalWarning: true,
disableDevRegistry: true,
Expand Down Expand Up @@ -57,74 +58,72 @@ describe("module worker", () => {
}"
`);
});
describe("header parsing", () => {
it.concurrent("should return Hi by default", async () => {
const resp = await worker.fetch("/");
expect(resp).not.toBe(undefined);

it("should return Hi by default", async () => {
const resp = await worker.fetch("/");
expect(resp).not.toBe(undefined);
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Hi!" }));
});
it("should return Bonjour when French", async () => {
const resp = await worker.fetch("/", { headers: { lang: "fr-FR" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Hi!" }));
});
it.concurrent("should return Bonjour when French", async () => {
const resp = await worker.fetch("/", { headers: { lang: "fr-FR" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Bonjour!" }));
}
});

it.concurrent("should return G'day when Australian", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-AU" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "G'day!" }));
}
});

it.concurrent("should return Good day when British", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-GB" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Good day!" }));
}
});

it.concurrent("should return Howdy when Texan", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-TX" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Howdy!" }));
}
});

it.concurrent("should return Hello when American", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-US" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Hello!" }));
}
});

it.concurrent("should return Hola when Spanish", async () => {
const resp = await worker.fetch("/", { headers: { lang: "es-ES" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Hola!" }));
}
});
expect(respJson).toBe(JSON.stringify({ greeting: "Bonjour!" }));
}
});

it("should return G'day when Australian", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-AU" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "G'day!" }));
}
});

it("should return Good day when British", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-GB" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Good day!" }));
}
});

it("should return Howdy when Texan", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-TX" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Howdy!" }));
}
});

it("should return Hello when American", async () => {
const resp = await worker.fetch("/", { headers: { lang: "en-US" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Hello!" }));
}
});

it("should return Hola when Spanish", async () => {
const resp = await worker.fetch("/", { headers: { lang: "es-ES" } });
expect(resp).not.toBe(undefined);
if (resp) {
const respJson = await resp.text();
expect(respJson).toBe(JSON.stringify({ greeting: "Hola!" }));
}
});
describe("buffer import", () => {
it.concurrent("returns hex string", async () => {
const resp = await worker.fetch("/buffer");
expect(resp).not.toBe(undefined);

const text = await resp.text();
expect(text).toMatch("68656c6c6f");
});

it("returns hex string", async () => {
const resp = await worker.fetch("/buffer");
expect(resp).not.toBe(undefined);

const text = await resp.text();
expect(text).toMatch("68656c6c6f");
});
});
56 changes: 32 additions & 24 deletions packages/wrangler/src/dev/start-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,31 +175,39 @@ export async function startDevServer(

await devEnv.config.set(startDevWorkerOptions);

await Promise.all([
// adhere to unstable_dev contract:
// - only resolve when UserWorker is ready
// - reject if UserWorker fails to start
Promise.race(
devEnv.runtimes.flatMap((runtime) => [
once(runtime, "reloadComplete"),
once(runtime, "error").then((err) => Promise.reject(err)),
])
),
// adhere to unstable_dev contract:
// - only resolve when _perceived_ UserWorker is ready
// - throw if _perceived_ UserWorker fails to start
// to the eyeball, the ProxyWorker is the _perceived_ UserWorker
Promise.race([
devEnv.proxy.ready.promise,
once(devEnv.proxy, "error").then((err) => Promise.reject(err)),
]),
]);

return {
stop: async () => {
await Promise.allSettled([stopWorkerRegistry(), devEnv.teardown()]);
},
const stop = async () => {
await Promise.allSettled([stopWorkerRegistry(), devEnv.teardown()]);
};

try {
await Promise.all([
// adhere to unstable_dev contract:
// - only resolve when UserWorker is ready
// - reject if UserWorker fails to start
Promise.race(
devEnv.runtimes.flatMap((runtime) => [
once(runtime, "reloadComplete"),
once(runtime, "error").then((err) => Promise.reject(err)),
])
),
// adhere to unstable_dev contract:
// - only resolve when _perceived_ UserWorker is ready
// - throw if _perceived_ UserWorker fails to start
// to the eyeball, the ProxyWorker is the _perceived_ UserWorker
Promise.race([
devEnv.proxy.ready.promise,
once(devEnv.proxy, "error").then((err) => Promise.reject(err)),
]),
]);
} catch (err) {
// unstable_dev's api only returns the stop function when the promise resolves
// so call stop for the user if the promise rejects
await stop();

throw err;
}

return { stop };
}

// temp: fake these events by calling the handler directly
Expand Down
Loading