forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79ec7c8
commit 8ccfffd
Showing
2 changed files
with
109 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
tests/legacy-cli/e2e/tests/commands/serve/ssr-http-requests-assets.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import assert from 'node:assert'; | ||
import { setTimeout } from 'node:timers/promises'; | ||
import { killAllProcesses, ng } from '../../../utils/process'; | ||
import { getGlobalVariable } from '../../../utils/env'; | ||
import { rimraf, writeMultipleFiles } from '../../../utils/fs'; | ||
import { installWorkspacePackages } from '../../../utils/packages'; | ||
import { ngServe, useSha } from '../../../utils/project'; | ||
|
||
export default async function () { | ||
const useWebpackBuilder = !getGlobalVariable('argv')['esbuild']; | ||
if (useWebpackBuilder) { | ||
// Not supported by the webpack based builder. | ||
return; | ||
} | ||
|
||
// Forcibly remove in case another test doesn't clean itself up. | ||
await rimraf('node_modules/@angular/ssr'); | ||
await ng('add', '@angular/ssr', '--skip-confirmation'); | ||
await useSha(); | ||
await installWorkspacePackages(); | ||
|
||
await writeMultipleFiles({ | ||
// Add http client and route | ||
'src/app/app.config.ts': ` | ||
import { ApplicationConfig } from '@angular/core'; | ||
import { provideRouter } from '@angular/router'; | ||
import {HomeComponent} from './home/home.component'; | ||
import { provideClientHydration } from '@angular/platform-browser'; | ||
import { provideHttpClient, withFetch } from '@angular/common/http'; | ||
export const appConfig: ApplicationConfig = { | ||
providers: [ | ||
provideRouter([{ | ||
path: '', | ||
component: HomeComponent, | ||
}]), | ||
provideClientHydration(), | ||
provideHttpClient(withFetch()), | ||
], | ||
}; | ||
`, | ||
// Add asset | ||
'src/assets/media.json': JSON.stringify({ dataFromAssets: true }), | ||
// Update component to do an HTTP call to asset. | ||
'src/app/app.component.ts': ` | ||
import { Component, inject } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { RouterOutlet } from '@angular/router'; | ||
import { HttpClient } from '@angular/common/http'; | ||
@Component({ | ||
selector: 'app-root', | ||
standalone: true, | ||
imports: [CommonModule, RouterOutlet], | ||
template: \` | ||
<p>{{ data | json }}</p> | ||
<router-outlet></router-outlet> | ||
\`, | ||
}) | ||
export class AppComponent { | ||
data: any; | ||
constructor() { | ||
const http = inject(HttpClient); | ||
http.get('/assets/media.json').subscribe((d) => { | ||
this.data = d; | ||
}); | ||
} | ||
} | ||
`, | ||
}); | ||
|
||
await ng('generate', 'component', 'home'); | ||
|
||
await verifyResponse(await ngServe('--no-ssl')); | ||
|
||
await setTimeout(500); | ||
await killAllProcesses(); | ||
|
||
await verifyResponse(await ngServe('--ssl')); | ||
} | ||
|
||
async function verifyResponse(port: number): Promise<void> { | ||
const indexResponse = await fetch(`http://localhost:${port}/`); | ||
assert.match(await indexResponse.text(), /<p>{[\S\s]*"dataFromAssets":[\s\S]*true[\S\s]*}<\/p>/); | ||
} |