|
| 1 | +/** |
| 2 | + * @license |
| 3 | + * Copyright Google LLC All Rights Reserved. |
| 4 | + * |
| 5 | + * Use of this source code is governed by an MIT-style license that can be |
| 6 | + * found in the LICENSE file at https://angular.io/license |
| 7 | + */ |
| 8 | + |
| 9 | +import { execute } from '../../index'; |
| 10 | +import { BASE_OPTIONS, KARMA_BUILDER_INFO, describeBuilder } from '../setup'; |
| 11 | + |
| 12 | +describeBuilder(execute, KARMA_BUILDER_INFO, (harness) => { |
| 13 | + describe('Option: "webWorkerTsConfig"', () => { |
| 14 | + beforeEach(async () => { |
| 15 | + await harness.writeFiles({ |
| 16 | + 'src/tsconfig.worker.json': ` |
| 17 | + { |
| 18 | + "extends": "../tsconfig.json", |
| 19 | + "compilerOptions": { |
| 20 | + "outDir": "../out-tsc/worker", |
| 21 | + "lib": [ |
| 22 | + "es2018", |
| 23 | + "webworker" |
| 24 | + ], |
| 25 | + "types": [] |
| 26 | + }, |
| 27 | + "include": [ |
| 28 | + "**/*.worker.ts", |
| 29 | + ] |
| 30 | + }`, |
| 31 | + 'src/app/app.worker.ts': ` |
| 32 | + /// <reference lib="webworker" /> |
| 33 | + |
| 34 | + const prefix: string = 'Data: '; |
| 35 | + addEventListener('message', ({ data }) => { |
| 36 | + postMessage(prefix + data); |
| 37 | + }); |
| 38 | + `, |
| 39 | + 'src/app/app.component.ts': ` |
| 40 | + import { Component } from '@angular/core'; |
| 41 | +
|
| 42 | + @Component({ |
| 43 | + selector: 'app-root', |
| 44 | + template: '' |
| 45 | + }) |
| 46 | + export class AppComponent { |
| 47 | + worker = new Worker(new URL('./app.worker', import.meta.url)); |
| 48 | + } |
| 49 | + `, |
| 50 | + './src/app/app.component.spec.ts': ` |
| 51 | + import { TestBed } from '@angular/core/testing'; |
| 52 | + import { AppComponent } from './app.component'; |
| 53 | +
|
| 54 | + describe('AppComponent', () => { |
| 55 | + beforeEach(async () => { |
| 56 | + await TestBed.configureTestingModule({ |
| 57 | + declarations: [ |
| 58 | + AppComponent |
| 59 | + ] |
| 60 | + }).compileComponents(); |
| 61 | + }); |
| 62 | +
|
| 63 | + it('worker should be defined', () => { |
| 64 | + const fixture = TestBed.createComponent(AppComponent); |
| 65 | + const app = fixture.debugElement.componentInstance; |
| 66 | + expect(app.worker).toBeDefined(); |
| 67 | + }); |
| 68 | + });`, |
| 69 | + }); |
| 70 | + }); |
| 71 | + |
| 72 | + it(`should not parse web workers when "webWorkerTsConfig" is not set or set to undefined.`, async () => { |
| 73 | + harness.useTarget('test', { |
| 74 | + ...BASE_OPTIONS, |
| 75 | + webWorkerTsConfig: undefined, |
| 76 | + }); |
| 77 | + |
| 78 | + await harness.writeFile( |
| 79 | + './src/app/app.component.spec.ts', |
| 80 | + ` |
| 81 | + import { TestBed } from '@angular/core/testing'; |
| 82 | + import { AppComponent } from './app.component'; |
| 83 | +
|
| 84 | + describe('AppComponent', () => { |
| 85 | + beforeEach(async () => { |
| 86 | + await TestBed.configureTestingModule({ |
| 87 | + declarations: [ |
| 88 | + AppComponent |
| 89 | + ] |
| 90 | + }).compileComponents(); |
| 91 | + }); |
| 92 | +
|
| 93 | + it('worker should throw', () => { |
| 94 | + expect(() => TestBed.createComponent(AppComponent)) |
| 95 | + .toThrowError(/Failed to construct 'Worker'/); |
| 96 | + }); |
| 97 | + });`, |
| 98 | + ); |
| 99 | + |
| 100 | + const { result } = await harness.executeOnce(); |
| 101 | + expect(result?.success).toBeTrue(); |
| 102 | + }); |
| 103 | + |
| 104 | + it(`should parse web workers when "webWorkerTsConfig" is set.`, async () => { |
| 105 | + harness.useTarget('test', { |
| 106 | + ...BASE_OPTIONS, |
| 107 | + webWorkerTsConfig: 'src/tsconfig.worker.json', |
| 108 | + }); |
| 109 | + |
| 110 | + const { result } = await harness.executeOnce(); |
| 111 | + expect(result?.success).toBeTrue(); |
| 112 | + }); |
| 113 | + }); |
| 114 | +}); |
0 commit comments