1
1
import { execaCommand } from 'execa'
2
2
import fg from 'fast-glob'
3
3
import { exec } from 'node:child_process'
4
- import { copyFile , mkdir , mkdtemp , rm , writeFile } from 'node:fs/promises'
4
+ import { copyFile , mkdir , mkdtemp , readFile , rm , writeFile } from 'node:fs/promises'
5
5
import { tmpdir } from 'node:os'
6
6
import { dirname , join } from 'node:path'
7
7
import { fileURLToPath } from 'node:url'
@@ -12,9 +12,8 @@ import pLimit from 'p-limit'
12
12
const SITE_ID = 'ee859ce9-44a7-46be-830b-ead85e445e53'
13
13
14
14
export interface DeployResult {
15
- site_name : string
16
- deploy_id : string
17
- deploy_url : string
15
+ deployID : string
16
+ url : string
18
17
logs : string
19
18
}
20
19
@@ -25,14 +24,22 @@ export interface DeployResult {
25
24
export const createE2EFixture = async ( fixture : string ) => {
26
25
const cwd = await mkdtemp ( join ( tmpdir ( ) , 'netlify-next-runtime-' ) )
27
26
let deployID : string
28
- const _cleanup = ( ) => cleanup ( cwd , deployID )
27
+ let logs : string
28
+ const _cleanup = ( failure : boolean = false ) => {
29
+ if ( failure ) {
30
+ console . log ( logs )
31
+ }
32
+ // on failures we don't delete the deploy
33
+ return cleanup ( cwd , failure === true ? undefined : deployID )
34
+ }
29
35
try {
30
36
const [ packageName ] = await Promise . all ( [ buildAndPackRuntime ( cwd ) , copyFixture ( fixture , cwd ) ] )
31
37
await installRuntime ( packageName , cwd )
32
38
const result = await deploySite ( cwd )
33
- console . log ( `🌍 Deployed Site is live under: ${ result . deploy_url } ` )
34
- deployID = result . deploy_id
35
- return { cwd, cleanup : _cleanup , deployID : result . deploy_id , url : result . deploy_url }
39
+ console . log ( `🌍 Deployed Site is live under: ${ result . url } ` )
40
+ deployID = result . deployID
41
+ logs = result . logs
42
+ return { cwd, cleanup : _cleanup , deployID : result . deployID , url : result . url }
36
43
} catch ( error ) {
37
44
await _cleanup ( )
38
45
throw error
@@ -92,10 +99,18 @@ async function installRuntime(packageName: string, cwd: string): Promise<void> {
92
99
93
100
async function deploySite ( cwd : string ) : Promise < DeployResult > {
94
101
console . log ( `🚀 Building and Deploying Site...` )
95
- const cmd = `ntl deploy --build --site ${ SITE_ID } --json`
96
- const { stdout } = await execaCommand ( cmd , { cwd } )
102
+ const outputFile = 'deploy-output.txt'
103
+ const cmd = `ntl deploy --build --site ${ SITE_ID } `
104
+
105
+ await execaCommand ( cmd , { cwd, all : true } ) . pipeAll ?.( join ( cwd , outputFile ) )
106
+ const output = await readFile ( join ( cwd , outputFile ) , 'utf-8' )
97
107
98
- return JSON . parse ( stdout )
108
+ const [ url ] = new RegExp ( / h t t p s : .+ r u n t i m e - t e s t i n g \. n e t l i f y \. a p p / gm) . exec ( output ) || [ ]
109
+ if ( ! url ) {
110
+ throw new Error ( 'Could not extract the URL from the build logs' )
111
+ }
112
+ const [ deployID ] = new URL ( url ) . host . split ( '--' )
113
+ return { url, deployID, logs : output }
99
114
}
100
115
101
116
async function deleteDeploy ( deploy_id ?: string ) : Promise < void > {
0 commit comments