11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_cirequire('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst { spawnSync } = require('child_process'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci// The last option on the command line takes precedence: 71cb0ef41Sopenharmony_ciassert.strictEqual(spawnSync(process.execPath, [ 81cb0ef41Sopenharmony_ci '--max-http-header-size=1234', 91cb0ef41Sopenharmony_ci '--max-http-header-size=5678', 101cb0ef41Sopenharmony_ci '-p', 'http.maxHeaderSize', 111cb0ef41Sopenharmony_ci], { 121cb0ef41Sopenharmony_ci encoding: 'utf8' 131cb0ef41Sopenharmony_ci}).stdout.trim(), '5678'); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci// The command line takes precedence over NODE_OPTIONS: 161cb0ef41Sopenharmony_ciassert.strictEqual(spawnSync(process.execPath, [ 171cb0ef41Sopenharmony_ci '--max-http-header-size=5678', 181cb0ef41Sopenharmony_ci '-p', 'http.maxHeaderSize', 191cb0ef41Sopenharmony_ci], { 201cb0ef41Sopenharmony_ci encoding: 'utf8', 211cb0ef41Sopenharmony_ci env: { ...process.env, NODE_OPTIONS: '--max-http-header-size=1234' } 221cb0ef41Sopenharmony_ci}).stdout.trim(), '5678'); 23