* Rename cmuxterm to cmux across entire codebase - Rename GitHub repos: manaflow-ai/cmuxterm -> manaflow-ai/cmux, manaflow-ai/homebrew-cmuxterm -> manaflow-ai/homebrew-cmux - Rename bundle IDs: com.cmuxterm.app -> com.cmux.app - Rename CLI: CLI/cmuxterm.swift -> CLI/cmux.swift - Rename homebrew submodule: homebrew-cmuxterm -> homebrew-cmux - Update all socket paths: /tmp/cmuxterm*.sock -> /tmp/cmux*.sock - Update all GitHub URLs, DMG names, Sparkle URLs - Update all source files, scripts, tests, docs, CI workflows * Bump version to 1.23.0
63 lines
1.6 KiB
Bash
Executable file
63 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
# Test script that sends keystrokes to cmux via AppleScript
|
|
# This tests the actual keyboard input path through the app
|
|
|
|
set -e
|
|
|
|
echo "=== cmux Keystroke Test ==="
|
|
echo ""
|
|
|
|
# Check if cmux is running
|
|
if ! pgrep -x "cmux" > /dev/null; then
|
|
echo "Error: cmux is not running"
|
|
echo "Please start cmux first"
|
|
exit 1
|
|
fi
|
|
|
|
echo "cmux is running"
|
|
echo ""
|
|
|
|
# Activate cmux
|
|
osascript -e 'tell application "cmux" to activate'
|
|
sleep 0.5
|
|
|
|
echo "Test 1: Testing Ctrl+C (SIGINT)"
|
|
echo " Typing 'sleep 30' and pressing Enter..."
|
|
|
|
# Type the command
|
|
osascript -e 'tell application "System Events" to keystroke "sleep 30"'
|
|
sleep 0.2
|
|
osascript -e 'tell application "System Events" to keystroke return'
|
|
sleep 0.5
|
|
|
|
echo " Sending Ctrl+C..."
|
|
# Send Ctrl+C
|
|
osascript -e 'tell application "System Events" to keystroke "c" using control down'
|
|
sleep 0.5
|
|
|
|
echo " If you see '^C' or the command was interrupted, Ctrl+C is working!"
|
|
echo ""
|
|
|
|
echo "Test 2: Testing Ctrl+D (EOF)"
|
|
echo " Starting cat command..."
|
|
|
|
# Type cat command
|
|
osascript -e 'tell application "System Events" to keystroke "cat"'
|
|
sleep 0.2
|
|
osascript -e 'tell application "System Events" to keystroke return'
|
|
sleep 0.5
|
|
|
|
echo " Sending Ctrl+D..."
|
|
# Send Ctrl+D
|
|
osascript -e 'tell application "System Events" to keystroke "d" using control down'
|
|
sleep 0.5
|
|
|
|
echo " If cat exited, Ctrl+D is working!"
|
|
echo ""
|
|
|
|
echo "=== Manual Verification Required ==="
|
|
echo "Please check the cmux window to verify:"
|
|
echo " 1. The 'sleep 30' command was interrupted by Ctrl+C"
|
|
echo " 2. The 'cat' command exited after Ctrl+D"
|
|
echo ""
|
|
echo "If both worked, the fix is successful!"
|