Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/app/events/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1118,6 +1118,7 @@ fn resize_marks_chat_surface_dirty_when_running_chat() {
let mut app = make_test_app();
app.surface_dirty = crate::app::SurfaceDirtyState::default();
app.terminal_lifecycle = TerminalLifecycleState::Running(SurfaceMode::Chat);
app.session_runtime.prompt_suggestion = Some("Write focused tests".to_owned());
seed_resize_measurements(&mut app);

handle_terminal_event(&mut app, Event::Resize(120, 40));
Expand All @@ -1128,6 +1129,7 @@ fn resize_marks_chat_surface_dirty_when_running_chat() {
ChatRebuildKind::PurgeReplay(crate::app::ChatPurgeReplayOptions::resize())
);
assert!(app.surface_dirty.chat.repaint);
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("Write focused tests"));
assert_resize_measurements_cleared(&app, 120, 40);
}

Expand All @@ -1152,6 +1154,7 @@ fn resize_marks_fullscreen_surface_dirty_when_running_fullscreen() {
app.surface_dirty = crate::app::SurfaceDirtyState::default();
app.terminal_lifecycle =
TerminalLifecycleState::Running(SurfaceMode::Fullscreen(FullscreenView::Config));
app.session_runtime.prompt_suggestion = Some("Write focused tests".to_owned());
seed_resize_measurements(&mut app);

handle_terminal_event(&mut app, Event::Resize(120, 40));
Expand All @@ -1160,6 +1163,7 @@ fn resize_marks_fullscreen_surface_dirty_when_running_fullscreen() {
assert_eq!(app.surface_dirty.chat.rebuild, ChatRebuildKind::None);
assert!(!app.surface_dirty.chat.repaint);
assert!(app.chat_render.resize_purge_replay_on_chat_return);
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("Write focused tests"));
assert_resize_measurements_cleared(&app, 120, 40);
}

Expand Down Expand Up @@ -3335,6 +3339,7 @@ fn ctrl_c_quits() {
fn fullscreen_ctrl_c_returns_to_chat_without_stopping_active_turn() {
let mut app = make_test_app();
app.status = AppStatus::Running;
app.session_runtime.prompt_suggestion = Some("Write focused tests".to_owned());
app.surface_mode = SurfaceMode::Fullscreen(FullscreenView::Config);
app.terminal_lifecycle =
TerminalLifecycleState::Running(SurfaceMode::Fullscreen(FullscreenView::Config));
Expand All @@ -3346,6 +3351,7 @@ fn fullscreen_ctrl_c_returns_to_chat_without_stopping_active_turn() {

assert_eq!(app.surface_mode, SurfaceMode::Chat);
assert_eq!(app.status, AppStatus::Running);
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("Write focused tests"));
assert!(!app.shutdown_requested());
assert!(!app.turn.cancel_requested);
}
Expand Down
27 changes: 25 additions & 2 deletions src/app/input_submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ pub(super) fn submit_input(app: &mut App) {
if text.trim().is_empty() {
return;
}
app.session_runtime.prompt_suggestion = None;

let submission = slash::ResolvedSubmission::resolve(text);
let has_active_or_queued_turn = matches!(app.status, AppStatus::Thinking | AppStatus::Running)
Expand Down Expand Up @@ -113,6 +112,7 @@ fn dispatch_prompt_turn(app: &mut App, text: String) {
// so the model can correlate user references with image attachments.
match conn.prompt_with_images(sid.to_string(), message_uuid.clone(), text, images) {
Ok(resp) => {
app.session_runtime.prompt_suggestion = None;
crate::app::session_runtime::request_context_usage_refresh(app);
tracing::info!(
target: crate::logging::targets::APP_INPUT,
Expand Down Expand Up @@ -160,6 +160,7 @@ fn dispatch_active_turn_prompt(app: &mut App, text: String) {

match conn.prompt_with_images(session_id.to_string(), message_uuid.clone(), text, images) {
Ok(_) => {
app.session_runtime.prompt_suggestion = None;
app.input.clear();
app.pending_images.clear();
app.request_active_surface_repaint();
Expand Down Expand Up @@ -223,6 +224,7 @@ mod tests {
fn submit_input_while_running_queues_full_payload_without_touching_active_turn() {
let (mut app, mut rx) = app_with_connection();
app.status = AppStatus::Running;
app.session_runtime.prompt_suggestion = Some("previous suggestion".to_owned());
app.transcript.messages.push(ChatMessage::new(MessageRole::Assistant, Vec::new(), None));
app.bind_active_turn_assistant(0);
app.input.set_text("next prompt [Image #1]");
Expand All @@ -235,6 +237,7 @@ mod tests {

assert!(app.input.text().is_empty());
assert!(app.pending_images.is_empty());
assert!(app.session_runtime.prompt_suggestion.is_none());
assert!(!app.turn.cancel_requested);
assert!(matches!(app.status, AppStatus::Running));
assert_eq!(
Expand All @@ -261,6 +264,7 @@ mod tests {
fn active_turn_prompt_at_capacity_preserves_composer_without_dispatch_or_notice() {
let (mut app, mut rx) = app_with_connection();
app.status = AppStatus::Running;
app.session_runtime.prompt_suggestion = Some("previous suggestion".to_owned());
for index in 0..crate::app::state::PendingUserMessages::CAPACITY {
app.pending_user_messages
.try_push_sending(super::super::PendingUserMessage::sending(
Expand All @@ -282,6 +286,7 @@ mod tests {

assert_eq!(app.input.snapshot(), input_before);
assert_eq!(app.pending_images, images_before);
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("previous suggestion"));
assert_eq!(
app.pending_user_messages.len(),
crate::app::state::PendingUserMessages::CAPACITY
Expand Down Expand Up @@ -321,6 +326,7 @@ mod tests {
let (mut app, rx) = app_with_connection();
drop(rx);
app.status = AppStatus::Running;
app.session_runtime.prompt_suggestion = Some("previous suggestion".to_owned());
app.input.set_text("retry [Image #1]");
app.pending_images.push(crate::app::clipboard_image::ImageAttachment {
data: "aGVsbG8=".to_owned(),
Expand All @@ -333,6 +339,7 @@ mod tests {

assert_eq!(app.input.snapshot(), before);
assert_eq!(app.pending_images, images_before);
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("previous suggestion"));
assert!(app.pending_user_messages.is_empty());
assert!(matches!(app.status, AppStatus::Running));
let message = app.transcript.messages.last().expect("send failure message");
Expand Down Expand Up @@ -489,13 +496,15 @@ mod tests {
#[test]
fn supported_advertised_slash_submit_falls_through_to_prompt_turn() {
let (mut app, mut rx) = app_with_connection();
app.session_runtime.prompt_suggestion = Some("previous suggestion".to_owned());
app.sdk_inventory.available_commands =
vec![model::AvailableCommand::new("/remote-command", "Remote command")];
app.input.set_text("/remote-command");

submit_input(&mut app);

assert!(app.input.text().is_empty());
assert!(app.session_runtime.prompt_suggestion.is_none());
assert!(matches!(app.status, AppStatus::Thinking));
assert_eq!(app.transcript.messages.len(), 2);
assert!(matches!(app.transcript.messages[0].role, MessageRole::User));
Expand All @@ -516,19 +525,31 @@ mod tests {
}

#[test]
fn config_slash_submit_opens_config_without_prompt_turn() {
fn config_slash_submit_preserves_prompt_suggestion_across_fullscreen_return() {
let (mut app, mut rx) = app_with_connection();
let dir = tempfile::tempdir().expect("tempdir");
app.settings_home_override = Some(dir.path().to_path_buf());
app.cwd_raw = dir.path().to_string_lossy().to_string();
app.session_runtime.prompt_suggestion = Some("Write focused tests".to_owned());
app.input.set_text("/config");

submit_input(&mut app);

assert_eq!(app.surface_mode, SurfaceMode::Fullscreen(FullscreenView::Config));
assert!(app.input.text().is_empty());
assert!(matches!(app.status, AppStatus::Ready));
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("Write focused tests"));
assert!(rx.try_recv().is_err(), "config open should not dispatch a prompt turn");

crate::app::view::set_chat_surface(&mut app);

let hint_rows = crate::ui::input_rows::build_composer_hint_rows(&app);
let hint_text = hint_rows
.iter()
.flat_map(|line| line.spans.iter())
.map(|span| span.content.as_ref())
.collect::<String>();
assert!(hint_text.contains("Suggestion: Write focused tests"));
}

#[test]
Expand Down Expand Up @@ -685,11 +706,13 @@ mod tests {
let mut app = App::test_default();
let (connection, _rx) = crate::agent::client::AgentConnection::test_channel();
app.session_runtime.conn = Some(std::rc::Rc::new(connection));
app.session_runtime.prompt_suggestion = Some("previous suggestion".to_owned());
app.status = AppStatus::Ready;

dispatch_prompt_turn(&mut app, "hello".into());

assert!(app.transcript.messages.is_empty());
assert_eq!(app.session_runtime.prompt_suggestion.as_deref(), Some("previous suggestion"));
assert!(matches!(app.status, AppStatus::Ready));
}
}