mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-27 01:13:09 +00:00
ipc.rs tests (4 tests): - request_msgpack_roundtrip: LaunchApp serializes and deserializes with correct field values. - response_msgpack_roundtrip: LaunchAck round-trips through MessagePack. - frame_write_read_roundtrip: write_frame encodes a 4-byte LE length header + body; read_frame decodes the framed request correctly. - read_frame_eof_returns_none: empty stream returns None without error. main.rs tests (5 tests): - registry_launch_increments_id: each launch returns a strictly increasing session ID. - registry_terminate_known_session: terminate returns true and state transitions to NotFound. - registry_terminate_unknown_returns_false: terminate on missing ID returns false. - registry_running_ids_reflects_live_sessions: running_ids returns all active sessions; terminated sessions are removed. - registry_state_not_found_for_unknown: querying an unknown session ID returns AppStateKind::NotFound. Also extends scripts/wsl-test.sh to run weft-appd tests alongside weft-compositor tests.
34 lines
752 B
Bash
34 lines
752 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
PROJECT="/mnt/c/Users/might/Desktop/Development/Systems/WEFT OS"
|
|
|
|
FAKE_PC_DIR="$HOME/.local/fake-pkgconfig"
|
|
mkdir -p "$FAKE_PC_DIR"
|
|
cat > "$FAKE_PC_DIR/libdisplay-info.pc" << 'EOF'
|
|
prefix=/usr
|
|
exec_prefix=${prefix}
|
|
libdir=/usr/lib64
|
|
includedir=/usr/include
|
|
|
|
Name: libdisplay-info
|
|
Description: EDID and DisplayID library (version shim for cargo check)
|
|
Version: 0.2.9
|
|
Libs: -L${libdir} -ldisplay-info
|
|
Cflags: -I${includedir}
|
|
EOF
|
|
|
|
source "$HOME/.cargo/env"
|
|
export PKG_CONFIG_PATH="$FAKE_PC_DIR:/usr/lib64/pkgconfig:/usr/share/pkgconfig"
|
|
|
|
cd "$PROJECT"
|
|
|
|
echo "==> cargo test -p weft-compositor"
|
|
cargo test -p weft-compositor 2>&1
|
|
|
|
echo ""
|
|
echo "==> cargo test -p weft-appd"
|
|
cargo test -p weft-appd 2>&1
|
|
|
|
echo ""
|
|
echo "ALL DONE"
|