mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-14 03:54:46 +00:00
83 lines
2.0 KiB
TypeScript
83 lines
2.0 KiB
TypeScript
import * as path from 'path';
|
|
import * as assert from 'assert';
|
|
import * as puppeteer from 'puppeteer';
|
|
import { build } from '../../../api';
|
|
import { wait } from '../../utils';
|
|
import { AppRunner } from '../AppRunner';
|
|
|
|
describe('credentials', function() {
|
|
this.timeout(10000);
|
|
|
|
let runner: AppRunner;
|
|
let page: puppeteer.Page;
|
|
let base: string;
|
|
|
|
// helpers
|
|
let start: () => Promise<void>;
|
|
let prefetchRoutes: () => Promise<void>;
|
|
|
|
// hooks
|
|
before(() => {
|
|
return new Promise((fulfil, reject) => {
|
|
// TODO this is brittle. Make it unnecessary
|
|
process.chdir(__dirname);
|
|
process.env.NODE_ENV = 'production';
|
|
|
|
// TODO this API isn't great. Rethink it
|
|
const emitter = build({
|
|
bundler: 'rollup'
|
|
}, {
|
|
src: path.join(__dirname, 'src'),
|
|
routes: path.join(__dirname, 'src/routes'),
|
|
dest: path.join(__dirname, '__sapper__/build')
|
|
});
|
|
|
|
emitter.on('error', reject);
|
|
|
|
emitter.on('done', async () => {
|
|
try {
|
|
runner = new AppRunner(__dirname, '__sapper__/build/server/server.js');
|
|
({ base, page, start, prefetchRoutes } = await runner.start());
|
|
|
|
fulfil();
|
|
} catch (err) {
|
|
reject(err);
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
after(() => runner.end());
|
|
|
|
it('sends cookies when using this.fetch with credentials: "include"', async () => {
|
|
await page.goto(`${base}/credentials?creds=include`);
|
|
|
|
assert.equal(
|
|
await page.$eval('h1', node => node.textContent),
|
|
'a: 1, b: 2, max-age: undefined'
|
|
);
|
|
});
|
|
|
|
it('does not send cookies when using this.fetch without credentials', async () => {
|
|
await page.goto(`${base}/credentials`);
|
|
|
|
assert.equal(
|
|
await page.$eval('h1', node => node.textContent),
|
|
'unauthorized'
|
|
);
|
|
});
|
|
|
|
it('delegates to fetch on the client', async () => {
|
|
await page.goto(base)
|
|
await start();
|
|
await prefetchRoutes();
|
|
|
|
await page.click('[href="credentials?creds=include"]');
|
|
await wait(50);
|
|
|
|
assert.equal(
|
|
await page.$eval('h1', node => node.textContent),
|
|
'a: 1, b: 2, max-age: undefined'
|
|
);
|
|
});
|
|
}); |