mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
06fe94e29d
* feat: check for --remote * chore: remove bad ticketing example cols * fix: get seed file working with build * Revert "fix: get seed file working with build" This reverts commit 92830a106164b0997c820a3e0bf2a582018084a0. * fix: seed from build instead of runtime * refactor: move recreateTables out of runtime * Revert "refactor: move recreateTables out of runtime" This reverts commit d01a802ad7915fabc4c4ac35b2d907eae0538d95. * fix: in-memory db for test fixture * chore: changeset * refactor: generate random db name instead * refactor: use yargs-parser for flag * chore: remove in-memory db logi * refactor: rename random id flag for clarity * feat: support --remote in dev * feat: support --remote on shell * refactor: inline db client * feat: support --remote on db execute * chore: stray console log * chore: remove recreateTables from runtime * chore: update seeding for new signature * chore: remove unused error imports
73 lines
2.3 KiB
JavaScript
73 lines
2.3 KiB
JavaScript
import { expect } from 'chai';
|
|
import { load as cheerioLoad } from 'cheerio';
|
|
import testAdapter from '../../astro/test/test-adapter.js';
|
|
import { loadFixture } from '../../astro/test/test-utils.js';
|
|
|
|
describe('astro:db', () => {
|
|
let fixture;
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: new URL('./fixtures/basics/', import.meta.url),
|
|
output: 'server',
|
|
adapter: testAdapter(),
|
|
});
|
|
});
|
|
|
|
// Note (@bholmesdev) generate a random database id on startup.
|
|
// Ensures database connections don't conflict
|
|
// when multiple dev servers are run in parallel on the same project.
|
|
process.env.ASTRO_TEST_RANDOM_DB_ID = 'true';
|
|
describe('development', () => {
|
|
let devServer;
|
|
|
|
before(async () => {
|
|
devServer = await fixture.startDevServer();
|
|
});
|
|
|
|
after(async () => {
|
|
await devServer.stop();
|
|
process.env.ASTRO_TEST_RANDOM_DB_ID = undefined;
|
|
});
|
|
|
|
it('Prints the list of authors', async () => {
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
const $ = cheerioLoad(html);
|
|
|
|
const ul = $('.authors-list');
|
|
expect(ul.children()).to.have.a.lengthOf(5);
|
|
expect(ul.children().eq(0).text()).to.equal('Ben');
|
|
});
|
|
|
|
it('Allows expression defaults for date columns', async () => {
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
const $ = cheerioLoad(html);
|
|
|
|
const themeAdded = $($('.themes-list .theme-added')[0]).text();
|
|
expect(new Date(themeAdded).getTime()).to.not.be.NaN;
|
|
});
|
|
|
|
it('Defaults can be overridden for dates', async () => {
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
const $ = cheerioLoad(html);
|
|
|
|
const themeAdded = $($('.themes-list .theme-added')[1]).text();
|
|
expect(new Date(themeAdded).getTime()).to.not.be.NaN;
|
|
});
|
|
|
|
it('Allows expression defaults for text columns', async () => {
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
const $ = cheerioLoad(html);
|
|
|
|
const themeOwner = $($('.themes-list .theme-owner')[0]).text();
|
|
expect(themeOwner).to.equal('');
|
|
});
|
|
|
|
it('Allows expression defaults for boolean columns', async () => {
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
const $ = cheerioLoad(html);
|
|
|
|
const themeDark = $($('.themes-list .theme-dark')[0]).text();
|
|
expect(themeDark).to.equal('dark mode');
|
|
});
|
|
});
|
|
});
|