(t *testing.T)
| 424 | } |
| 425 | |
| 426 | func TestCodexEngineOpenAIProxyProviderBaseURL(t *testing.T) { |
| 427 | engine := NewCodexEngine() |
| 428 | expected := "http://" + net.JoinHostPort(constants.AWFAPIProxyContainerIP, strconv.Itoa(constants.ClaudeLLMGatewayPort)) |
| 429 | |
| 430 | if actual := engine.getOpenAIProxyProviderBaseURL(); actual != expected { |
| 431 | t.Errorf("Expected OpenAI proxy provider base URL %q, got %q", expected, actual) |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | func TestCodexEngineExecutionAddsMountedMCPCLIPathSetup(t *testing.T) { |
| 436 | engine := NewCodexEngine() |
nothing calls this directly
no test coverage detected