1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
import assert from 'node:assert/strict';
import { after, before, describe, it } from 'node:test';
import { load as cheerioLoad } from 'cheerio';
import testAdapter from '../../astro/test/test-adapter.js';
import { loadFixture } from '../../astro/test/test-utils.js';
import { clearEnvironment, setupRemoteDbServer } from './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(),
});
});
describe({ skip: process.platform === 'darwin' }, 'development', () => {
let devServer;
before(async () => {
clearEnvironment();
devServer = await fixture.startDevServer();
});
after(async () => {
await devServer.stop();
});
it('Prints the list of authors', async () => {
const html = await fixture.fetch('/').then((res) => res.text());
const $ = cheerioLoad(html);
const ul = $('.authors-list');
assert.equal(ul.children().length, 5);
assert.match(ul.children().eq(0).text(), /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();
assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false);
});
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();
assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false);
});
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();
assert.equal(themeOwner, '');
});
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();
assert.match(themeDark, /dark mode/);
});
it('text fields an be used as references', async () => {
const html = await fixture.fetch('/login').then((res) => res.text());
const $ = cheerioLoad(html);
assert.match($('.session-id').text(), /12345/);
assert.match($('.username').text(), /Mario/);
});
it('Prints authors from raw sql call', async () => {
const json = await fixture.fetch('run.json').then((res) => res.json());
assert.deepEqual(json, {
columns: ['_id', 'name', 'age2'],
columnTypes: ['INTEGER', 'TEXT', 'INTEGER'],
rows: [
[1, 'Ben', null],
[2, 'Nate', null],
[3, 'Erika', null],
[4, 'Bjorn', null],
[5, 'Sarah', null],
],
rowsAffected: 0,
lastInsertRowid: null,
});
});
});
describe({ skip: process.platform === 'darwin' }, 'development --remote', () => {
let devServer;
let remoteDbServer;
before(async () => {
clearEnvironment();
remoteDbServer = await setupRemoteDbServer(fixture.config);
devServer = await fixture.startDevServer();
});
after(async () => {
await devServer?.stop();
await remoteDbServer?.stop();
});
it('Prints the list of authors', async () => {
const html = await fixture.fetch('/').then((res) => res.text());
const $ = cheerioLoad(html);
const ul = $('.authors-list');
assert.equal(ul.children().length, 5);
assert.match(ul.children().eq(0).text(), /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();
assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false);
});
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();
assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false);
});
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();
assert.equal(themeOwner, '');
});
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();
assert.match(themeDark, /dark mode/);
});
it('text fields an be used as references', async () => {
const html = await fixture.fetch('/login').then((res) => res.text());
const $ = cheerioLoad(html);
assert.match($('.session-id').text(), /12345/);
assert.match($('.username').text(), /Mario/);
});
it('Prints authors from raw sql call', async () => {
const json = await fixture.fetch('run.json').then((res) => res.json());
assert.deepEqual(json, {
columns: ['_id', 'name', 'age2'],
columnTypes: ['INTEGER', 'TEXT', 'INTEGER'],
rows: [
[1, 'Ben', null],
[2, 'Nate', null],
[3, 'Erika', null],
[4, 'Bjorn', null],
[5, 'Sarah', null],
],
rowsAffected: 0,
lastInsertRowid: null,
});
});
});
describe('build --remote', () => {
let remoteDbServer;
before(async () => {
clearEnvironment();
process.env.ASTRO_STUDIO_APP_TOKEN = 'some token';
remoteDbServer = await setupRemoteDbServer(fixture.config);
await fixture.build();
});
after(async () => {
process.env.ASTRO_STUDIO_APP_TOKEN = '';
await remoteDbServer?.stop();
});
it('Can render page', async () => {
const app = await fixture.loadTestAdapterApp();
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();
const $ = cheerioLoad(html);
const ul = $('.authors-list');
assert.equal(ul.children().length, 5);
});
});
});
|