File size: 6,472 Bytes
b91e262 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | import { spawn } from 'node:child_process'
import { writeFileSync } from 'node:fs'
import { chromium } from 'playwright'
/// To use:
/// - Install Playwright: `npx playwright install chromium`
/// - Install dependencies: `pnpm install`
/// - Build the application: `pnpm build-webpack` or pnpm build-turbopack`
/// - Run the benchmark: `pnpm benchmark`
class BenchmarkRunner {
constructor(options) {
this.name = options.name
this.samples = options.samples ?? 50
this.buttonClickDelay = options.buttonClickDelay ?? 500
this.results = []
}
async runBenchmark() {
for (let i = 1; i <= this.samples; i++) {
console.log(`\n--- Running sample ${i}/${this.samples} ---`)
const result = await this.runSingleSample()
this.results.push(...result)
}
this.saveResults()
console.log('\nBenchmark completed!')
}
async runSingleSample() {
let server
let browser
try {
// 1. Launch the server
server = await this.startServer()
// 2. Launch Chrome incognito
console.log('Launching browser...')
browser = await chromium.launch({
headless: true, // Set to true if you don't want to see the browser
args: ['--incognito'],
})
const context = await browser.newContext()
const page = await context.newPage()
// 3. Navigate to localhost:3000
await page.goto('http://localhost:3000', { waitUntil: 'load' })
// 4. Find and click all buttons
const buttons = await page.locator('button').all()
for (let j = 0; j < buttons.length; j++) {
await buttons[j].click()
await this.sleep(this.buttonClickDelay)
}
// 5. Capture data from textbox
console.log('Capturing data from the page...')
const textboxData = await this.capturePageData(page)
console.log('Captured data from the page:', textboxData)
// 6. Close browser
console.log('Closing browser...')
await browser.close()
browser = null
// 7. Shut down server
console.log('Shutting down server...')
await this.stopServer(server)
server = null
return textboxData
} catch (error) {
// Cleanup in case of error
if (browser) {
try {
await browser.close()
} catch (e) {
console.error('Error closing browser:', e.message)
}
}
if (server) {
try {
await this.stopServer(server)
} catch (e) {
console.error('Error stopping server:', e.message)
}
}
throw error
}
}
async startServer() {
return new Promise((resolve, reject) => {
const server = spawn('pnpm', ['start'], {
stdio: ['pipe', 'pipe', 'pipe'],
shell: true,
})
let serverReady = false
server.stdout.on('data', (data) => {
const output = data.toString()
console.log('Server:', output.trim())
// Look for common Next.js ready indicators
if (
output.includes('Ready') ||
output.includes('started server') ||
output.includes('Local:')
) {
if (!serverReady) {
serverReady = true
resolve(server)
}
}
})
server.stderr.on('data', (data) => {
console.error('Server Error:', data.toString().trim())
})
server.on('error', (error) => {
reject(new Error(`Failed to start server: ${error.message}`))
})
server.on('close', (code) => {
if (!serverReady) {
reject(
new Error(`Server exited with code ${code} before becoming ready`)
)
}
})
// Timeout after 30 seconds
setTimeout(() => {
if (!serverReady) {
server.kill()
reject(new Error('Server startup timeout'))
}
}, 30000)
})
}
async stopServer(server) {
return new Promise((resolve) => {
if (!server || server.killed) {
resolve()
return
}
server.on('close', () => {
resolve()
})
// Try graceful shutdown first
server.kill('SIGTERM')
// Force kill after 5 seconds
setTimeout(() => {
if (!server.killed) {
server.kill('SIGKILL')
}
resolve()
}, 5000)
})
}
async capturePageData(page) {
return await page.evaluate(() => globalThis.BENCHMARK_RESULTS)
}
async sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms))
}
saveResults() {
const timestamp = new Date().toISOString().replace(/[:.]/g, '-')
const filename = `benchmark-results-${this.name}-${timestamp}.json`
writeFileSync(
filename,
JSON.stringify(summarizeDurations(this.results), null, 2)
)
console.log(`Results saved to ${filename}`)
}
}
const summarizeDurations = (data) => {
if (!Array.isArray(data) || data.length === 0) {
throw new Error('No data to summarize')
}
const byName = new Map()
for (const item of data) {
const name = item.name
if (!byName.has(name)) {
byName.set(name, [])
}
byName.get(name).push(item)
}
const results = []
for (const [name, data] of byName) {
const loadDurations = data
.map((item) => item.loadDuration)
.sort((a, b) => a - b)
const executeDurations = data
.map((item) => item.executeDuration)
.sort((a, b) => a - b)
const getSummary = (durations) => {
const sum = durations.reduce((acc, val) => acc + val, 0)
const average = sum / durations.length
const middle = Math.floor(durations.length / 2)
const median =
durations.length % 2 === 0
? (durations[middle - 1] + durations[middle]) / 2
: durations[middle]
const percentile75Index = Math.floor(durations.length * 0.75)
const percentile75 = durations[percentile75Index]
return {
average,
median,
percentile75,
}
}
results.push({
name,
totalSamples: data.length,
loadDuration: getSummary(loadDurations),
executeDuration: getSummary(executeDurations),
})
}
return results
}
// CLI usage
const args = process.argv.slice(2)
const samples = args.length > 0 ? Number.parseInt(args[0]) : undefined
const name = args.length > 1 ? args[1] : undefined
const runner = new BenchmarkRunner({
name,
samples,
})
runner.runBenchmark().catch(console.error)
|