mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-28 02:58:04 +08:00
76 lines
2.7 KiB
TypeScript
76 lines
2.7 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { Architect, BuilderRun } from '@angular-devkit/architect';
|
|
import { DevServerBuilderOutput } from '@angular-devkit/build-angular';
|
|
import fetch from 'node-fetch'; // tslint:disable-line:no-implicit-dependencies
|
|
import { createArchitect, host } from '../test-utils';
|
|
|
|
|
|
describe('Dev Server Builder serve path', () => {
|
|
const target = { project: 'app', target: 'serve' };
|
|
let architect: Architect;
|
|
// We use runs like this to ensure it WILL stop the servers at the end of each tests.
|
|
let runs: BuilderRun[];
|
|
|
|
beforeEach(async () => {
|
|
await host.initialize().toPromise();
|
|
architect = (await createArchitect(host.root())).architect;
|
|
runs = [];
|
|
});
|
|
afterEach(async () => {
|
|
await host.restore().toPromise();
|
|
await Promise.all(runs.map(r => r.stop()));
|
|
});
|
|
|
|
it('uses the servePath option when specified', async () => {
|
|
const run = await architect.scheduleTarget(target, { servePath: 'test/' });
|
|
runs.push(run);
|
|
const output = await run.result as DevServerBuilderOutput;
|
|
expect(output.success).toBe(true);
|
|
expect(output.baseUrl).toBe('http://localhost:4200/test');
|
|
|
|
const response = await fetch(`${output.baseUrl}/polyfills.js`);
|
|
expect(await response.text()).toContain('window["webpackJsonp"]');
|
|
}, 30000);
|
|
|
|
it('does not fallback when request is outside serve path', async () => {
|
|
const run = await architect.scheduleTarget(target, { servePath: 'test/' });
|
|
|
|
await expectAsync(run.result).toBeResolvedTo(
|
|
jasmine.objectContaining({ success: true, baseUrl: 'http://localhost:4200/test' }),
|
|
);
|
|
|
|
// fallback processing requires an accept header
|
|
await expectAsync(
|
|
fetch('http://localhost:4200', { headers: { 'accept': 'text/html' } }),
|
|
).toBeResolvedTo(jasmine.objectContaining({ status: 404 }));
|
|
|
|
await expectAsync(
|
|
fetch('http://localhost:4200/api/', { headers: { 'accept': 'text/html' } }),
|
|
).toBeResolvedTo(jasmine.objectContaining({ status: 404 }));
|
|
|
|
await run.stop();
|
|
}, 30000);
|
|
|
|
it('does fallback when request is inside serve path', async () => {
|
|
const run = await architect.scheduleTarget(target, { servePath: 'test/' });
|
|
|
|
await expectAsync(run.result).toBeResolvedTo(
|
|
jasmine.objectContaining({ success: true, baseUrl: 'http://localhost:4200/test' }),
|
|
);
|
|
|
|
// fallback processing requires an accept header
|
|
await expectAsync(
|
|
fetch('http://localhost:4200/test/nothere', { headers: { 'accept': 'text/html' } }),
|
|
).toBeResolvedTo(jasmine.objectContaining({ status: 200 }));
|
|
|
|
await run.stop();
|
|
}, 30000);
|
|
|
|
});
|