File size: 8,556 Bytes
2569bec | 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 | """Exercise each assembled package in the order its shipped files appear.
ROOT_OF_EXTRACTED_PACKAGE
βββ bin
β βββ codex[.exe] # CLI package only
β βββ codex-app-server[.exe] # app-server package only
β βββ codex-code-mode-host[.exe]
βββ codex-package.json
βββ codex-path
β βββ rg[.exe]
βββ codex-resources
βββ bwrap # Linux only
βββ codex-command-runner.exe # Windows only
βββ codex-windows-sandbox-setup.exe # Windows only
βββ zsh/bin/zsh # supported Unix targets only
Debug symbols for all shipped binaries arrive in a separate companion archive.
Each package contains one entrypoint, not both codex and codex-app-server.
"""
import json
import shutil
import subprocess
import sys
from pathlib import Path
import pytest
from app_server_harness import (
MockResponsesServer,
ev_completed,
ev_response_created,
sse,
)
from openai_codex import ApprovalMode, Codex, CodexConfig, Sandbox
from fixtures import SmokePackage
@pytest.mark.parametrize(
("arguments", "expected"),
[
pytest.param(("--help",), "Usage:", id="help"),
pytest.param(("--version",), None, id="version"),
pytest.param(("features", "list"), "code_mode", id="features"),
pytest.param(("completion", "bash"), "codex", id="completion"),
],
)
def test_cli_public_commands(
package: SmokePackage,
arguments: tuple[str, ...],
expected: str | None,
) -> None:
"""Packaged CLI remains usable for discovery, version, features, and completions."""
output = package.run(*arguments).stdout
assert expected in output if expected is not None else output.strip()
@pytest.mark.parametrize("entrypoint", ["codex", "codex-app-server"])
def test_app_server_runs_code_mode_through_python_sdk(
package: SmokePackage,
responses_server: MockResponsesServer,
entrypoint: str,
) -> None:
"""Both packages run their own ripgrep through sandboxed SDK code mode."""
windows = "windows" in package.target
sandbox_config = ("--config", 'windows.sandbox="unelevated"') if windows else ()
if entrypoint == "codex":
executable = package.cli
package_root = package.cli_root
package_path_dir = package.cli_path_dir
config = CodexConfig(
codex_bin=str(executable),
config_overrides=sandbox_config[1:],
cwd=str(package.directory),
env=package.environment,
)
else:
executable = package.app_server
package_root = package.app_server_root
package_path_dir = package.app_server_path_dir
config = CodexConfig(
launch_args_override=(str(executable), *sandbox_config),
cwd=str(package.directory),
env=package.environment,
)
if windows:
# TODO(anp): Assert resolved rg paths once Windows sandbox PATH finds them.
ripgrep = str(package_path_dir / "rg.exe").replace("'", "''")
command = (
f"$rg = '{ripgrep}'; Write-Output $rg; & $rg --version; "
"if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }"
)
else:
command = "command -v rg && rg --version"
exec_arguments = {"cmd": command, "login": False, "yield_time_ms": 10_000}
responses_server.enqueue_sse(
sse(
[
ev_response_created("code-mode"),
{
"type": "response.output_item.done",
"item": {
"type": "custom_tool_call",
"call_id": "package-smoke",
"name": "exec",
"input": (
"text(JSON.stringify(await tools.exec_command("
f"{json.dumps(exec_arguments)})))"
),
},
},
ev_completed("code-mode"),
]
)
)
responses_server.enqueue_assistant_message("Done", response_id="code-mode-done")
with Codex(config=config) as client:
turn = client.thread_start(
ephemeral=True,
approval_mode=ApprovalMode.deny_all,
sandbox=Sandbox.workspace_write,
).run("run package smoke")
assert turn.final_response == "Done", turn
# The mock also records analytics POSTs, which have no Responses input list.
output = next(
item
for request in responses_server.requests()
if request.path == "/v1/responses"
for item in request.input()
if item.get("type") == "custom_tool_call_output"
and item.get("call_id") == "package-smoke"
)["output"]
if not isinstance(output, str):
output = next(
item["text"] for item in output if item.get("text", "").startswith("{")
)
execution = json.loads(output)
execution_output = execution["output"]
assert execution["exit_code"] == 0, execution_output
assert "ripgrep" in execution_output, execution_output
# Each entrypoint must execute the ripgrep bundled in its own package.
reported_ripgrep_path = Path(execution_output.splitlines()[0].strip())
assert reported_ripgrep_path.is_relative_to(package_root), execution_output
def _code_mode_host_symbol_address(
package: SmokePackage,
symbols: Path,
*arguments: str,
) -> str:
symbol_output = subprocess.run(
["nm", *arguments, str(symbols)],
cwd=package.directory,
env=package.environment,
capture_output=True,
text=True,
check=True,
timeout=45,
).stdout
return next(
parts[0]
for line in symbol_output.splitlines()
if len(parts := line.split()) == 3
and parts[1].lower() == "t"
and "codex_code_mode_host" in parts[2]
)
@pytest.mark.skipif(sys.platform != "linux", reason="requires Linux debug symbols")
def test_linux_debug_symbols_resolve_packaged_code(
package: SmokePackage,
code_mode_host_debug_symbols: Path,
) -> None:
"""Linux host symbols resolve a packaged function and its source location."""
address = _code_mode_host_symbol_address(
package, code_mode_host_debug_symbols, "--defined-only", "--extern-only"
)
resolved = subprocess.run(
[
"addr2line",
"-e",
str(code_mode_host_debug_symbols),
"-f",
"-C",
f"0x{address}",
],
cwd=package.directory,
env=package.environment,
capture_output=True,
text=True,
check=True,
timeout=45,
).stdout
assert "codex_code_mode_host" in resolved, resolved
source = resolved.splitlines()[-1]
assert source != "??:?" and source.rsplit(":", 1)[-1].isdigit(), source
@pytest.mark.skipif(sys.platform != "darwin", reason="requires macOS debug symbols")
def test_macos_debug_symbols_resolve_packaged_code(
package: SmokePackage,
code_mode_host_debug_symbols: Path,
) -> None:
"""macOS host symbols resolve a packaged function."""
address = _code_mode_host_symbol_address(package, code_mode_host_debug_symbols)
resolved = subprocess.run(
["atos", "-o", str(code_mode_host_debug_symbols), f"0x{address}"],
cwd=package.directory,
env=package.environment,
capture_output=True,
text=True,
check=True,
timeout=45,
).stdout
assert "codex_code_mode_host" in resolved, resolved
@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows debug symbols")
def test_windows_debug_symbols_resolve_packaged_code(
package: SmokePackage,
code_mode_host_debug_symbols: Path,
) -> None:
"""Windows host symbols match the packaged executable's debug signature."""
# Rust embeds an underscored PDB name, but release archives normalize it.
symbols = code_mode_host_debug_symbols.rename(
code_mode_host_debug_symbols.with_name("codex_code_mode_host.pdb")
)
host = symbols.with_suffix(".exe")
shutil.copy2(package.cli.with_name("codex-code-mode-host.exe"), host)
result = subprocess.run(
["dumpbin", "/PDBPATH", str(host)],
cwd=package.directory,
env=package.environment,
capture_output=True,
text=True,
check=True,
timeout=45,
)
assert str(symbols).casefold() in result.stdout.casefold(), result.stdout
|