Add step 628 phase 37a integration

This commit is contained in:
Bill
2026-02-17 21:15:19 -07:00
parent e6473b3d9f
commit 8c3c08e9b9
4 changed files with 185 additions and 0 deletions

View File

@@ -4531,4 +4531,13 @@ target_link_libraries(step627_test PRIVATE
tree_sitter_javascript tree_sitter_typescript
tree_sitter_java tree_sitter_rust tree_sitter_go)
add_executable(step628_test tests/step628_test.cpp)
target_include_directories(step628_test PRIVATE src)
target_link_libraries(step628_test PRIVATE
nlohmann_json::nlohmann_json
unofficial::tree-sitter::tree-sitter
tree_sitter_python tree_sitter_cpp tree_sitter_elisp
tree_sitter_javascript tree_sitter_typescript
tree_sitter_java tree_sitter_rust tree_sitter_go)
# Step 12: Dear ImGui shell scaffolding created (main.cpp exists but not built due to dependencies)

View File

@@ -0,0 +1,51 @@
#pragma once
// Step 628: Phase 37a integration
#include "AgentChatPanelModel.h"
#include "AgentMutationApproval.h"
#include <string>
struct Phase37aIntegrationResult {
bool sentUserMessage = false;
bool toolCallShown = false;
bool previewShown = false;
bool accepted = false;
bool astUpdated = false;
std::string activeCode;
};
class Phase37aIntegration {
public:
static Phase37aIntegrationResult run(const std::string& spec,
const std::string& beforeCode,
const std::string& generatedCode) {
Phase37aIntegrationResult out;
AgentChatState chat;
chat.draftInput = spec;
out.sentUserMessage = AgentChatPanelModel::sendUserMessage(&chat, "12:00");
AgentChatPanelModel::addToolCall(&chat,
"whetstone_generate_code",
{{"spec", spec}},
{{"generatedCode", generatedCode}},
"12:01");
out.toolCallShown = !chat.toolCalls.empty();
AgentChatPanelModel::addMutationPreview(&chat,
"preview-1",
"{\"type\":\"replaceModule\"}",
beforeCode,
generatedCode,
"12:02");
out.previewShown = !chat.mutationPreviews.empty();
out.accepted = AgentMutationApproval::accept(&chat.mutationApprovals, "preview-1");
out.activeCode = beforeCode;
if (out.accepted) {
out.activeCode = generatedCode;
out.astUpdated = true;
}
return out;
}
};

View File

@@ -0,0 +1,93 @@
// Step 628: Phase 37a integration (8 tests)
#include "Phase37aIntegration.h"
#include <iostream>
static int passed = 0, failed = 0;
#define TEST(name) { std::cout << " " << #name << "... "; }
#define PASS() { std::cout << "PASS\n"; ++passed; }
#define FAIL(msg) { std::cout << "FAIL: " << msg << "\n"; ++failed; }
#define CHECK(cond, msg) if (!(cond)) { FAIL(msg); return; } else {}
static std::string baseCode() {
return "def foo():\n pass\n";
}
static std::string generatedCode() {
return "def foo():\n return 42\n";
}
void test_user_message_sent() {
TEST(user_message_sent);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.sentUserMessage, "user message should be sent");
PASS();
}
void test_tool_call_visualized() {
TEST(tool_call_visualized);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.toolCallShown, "tool call should be shown");
PASS();
}
void test_mutation_preview_shown() {
TEST(mutation_preview_shown);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.previewShown, "preview should be shown");
PASS();
}
void test_accept_path_marks_accepted() {
TEST(accept_path_marks_accepted);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.accepted, "accept should be true");
PASS();
}
void test_accept_path_updates_ast_code() {
TEST(accept_path_updates_ast_code);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.astUpdated, "ast update should be true");
CHECK(result.activeCode == generatedCode(), "active code should be updated");
PASS();
}
void test_active_code_changes_from_before_to_after() {
TEST(active_code_changes_from_before_to_after);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.activeCode != baseCode(), "code should differ from before");
PASS();
}
void test_flow_handles_empty_spec_without_crash() {
TEST(flow_handles_empty_spec_without_crash);
auto result = Phase37aIntegration::run("", baseCode(), generatedCode());
CHECK(!result.sentUserMessage, "empty spec should not send user message");
CHECK(result.toolCallShown, "tool call simulation should still run");
PASS();
}
void test_flow_refreshes_code_view_output() {
TEST(flow_refreshes_code_view_output);
auto result = Phase37aIntegration::run("implement foo", baseCode(), generatedCode());
CHECK(result.activeCode.find("return 42") != std::string::npos, "expected generated content");
PASS();
}
int main() {
std::cout << "Step 628: Phase 37a integration\n";
test_user_message_sent(); // 1
test_tool_call_visualized(); // 2
test_mutation_preview_shown(); // 3
test_accept_path_marks_accepted(); // 4
test_accept_path_updates_ast_code(); // 5
test_active_code_changes_from_before_to_after();// 6
test_flow_handles_empty_spec_without_crash();// 7
test_flow_refreshes_code_view_output(); // 8
std::cout << "\nResults: " << passed << "/" << (passed + failed) << " passed\n";
return failed == 0 ? 0 : 1;
}

View File

@@ -12563,3 +12563,35 @@ state tracking and inline control wiring for each preview item.
- `editor/src/panels/AgentChatPanel.h` (`106` <= `600`)
- `editor/tests/step627_test.cpp` within test-file size guidance (`137` lines)
- Header-only architecture and naming conventions remain aligned with `ARCHITECTURE.md`
### Step 628: Phase 37a Integration
**Status:** PASS (8/8 tests)
Adds a phase-level integration harness covering the full chat-loop behavior:
user message submission, tool call visualization, mutation preview creation,
accept decision, and final code state update.
**Files added:**
- `editor/src/Phase37aIntegration.h` - integration runner:
- user/spec submission to chat model
- simulated `whetstone_generate_code` tool call capture
- mutation preview creation + acceptance path
- final active-code update state
- `editor/tests/step628_test.cpp` - 8 tests covering:
- full happy-path flow progression
- acceptance and AST/code-update behavior
- empty-spec edge case handling
**Files modified:**
- `editor/CMakeLists.txt` - `step628_test` target
**Verification run:**
- `cmake -S editor -B editor/build-native` - PASS
- `cmake --build editor/build-native --target step628_test step627_test` - PASS
- `./editor/build-native/step628_test` - PASS (8/8)
- `./editor/build-native/step627_test` - PASS (12/12) regression coverage
**Architecture gate check:**
- `editor/src/Phase37aIntegration.h` (`51` <= `600`)
- `editor/tests/step628_test.cpp` within test-file size guidance (`93` lines)
- Header-only architecture and naming conventions remain aligned with `ARCHITECTURE.md`