63 lines
1.6 KiB
Bash
Executable file
63 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
# Test script that sends keystrokes to cmuxterm via AppleScript
|
|
# This tests the actual keyboard input path through the app
|
|
|
|
set -e
|
|
|
|
echo "=== cmuxterm Keystroke Test ==="
|
|
echo ""
|
|
|
|
# Check if cmuxterm is running
|
|
if ! pgrep -x "cmuxterm" > /dev/null; then
|
|
echo "Error: cmuxterm is not running"
|
|
echo "Please start cmuxterm first"
|
|
exit 1
|
|
fi
|
|
|
|
echo "cmuxterm is running"
|
|
echo ""
|
|
|
|
# Activate cmuxterm
|
|
osascript -e 'tell application "cmuxterm" 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 cmuxterm 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!"
|