0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

Implement test using using assert.fail and assert to check ENOENT. (#10156)

This commit is contained in:
Abid 2024-02-19 18:36:53 +09:00 committed by GitHub
parent 0c2ab5b155
commit 43f87467c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -576,22 +576,20 @@ describe('[SSG] i18n routing', () => {
it("should NOT render the default locale if there isn't a fallback and the route is missing", async () => {
try {
await fixture.readFile('/it/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
it("should render a 404 because the route `fr` isn't included in the list of locales of the configuration", async () => {
try {
await fixture.readFile('/fr/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
});
@ -640,22 +638,20 @@ describe('[SSG] i18n routing', () => {
it("should NOT render the default locale if there isn't a fallback and the route is missing", async () => {
try {
await fixture.readFile('/it/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
it("should render a 404 because the route `fr` isn't included in the list of locales of the configuration", async () => {
try {
await fixture.readFile('/fr/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
});
@ -684,11 +680,10 @@ describe('[SSG] i18n routing', () => {
it('should return 404 when route contains the default locale', async () => {
try {
await fixture.readFile('/start/en/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
@ -715,22 +710,20 @@ describe('[SSG] i18n routing', () => {
it("should NOT render the default locale if there isn't a fallback and the route is missing", async () => {
try {
await fixture.readFile('/it/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
it("should render a 404 because the route `fr` isn't included in the list of locales of the configuration", async () => {
try {
await fixture.readFile('/fr/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
});
@ -810,22 +803,20 @@ describe('[SSG] i18n routing', () => {
it("should NOT render the default locale if there isn't a fallback and the route is missing", async () => {
try {
await fixture.readFile('/it/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
it("should render a 404 because the route `fr` isn't included in the list of locales of the configuration", async () => {
try {
await fixture.readFile('/fr/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});
@ -932,11 +923,10 @@ describe('[SSG] i18n routing', () => {
it("should render a 404 because the route `fr` isn't included in the list of locales of the configuration", async () => {
try {
await fixture.readFile('/fr/start/index.html');
// failed
return false;
} catch {
// success
return true;
// It should throw before reaching this point
assert.fail('The file should not exist');
} catch (e) {
assert.equal(e.message.includes('ENOENT'), true);
}
});