mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-26 17:03:09 +00:00
New crate. Per-session file proxy that gates filesystem access to an explicit allowlist of paths passed at startup. Usage: weft-file-portal <socket_path> [--allow <path>]... Listens on a Unix domain socket. Each connection receives newline- delimited JSON requests and returns newline-delimited JSON responses. File content is base64-encoded. Operations: read, write, list. Empty allowlist rejects all requests; paths checked with starts_with. 7 unit tests covering access control, read/write roundtrip, and list.
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
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 -- --test-threads=1 2>&1
|
|
|
|
echo ""
|
|
echo "==> cargo test -p weft-runtime"
|
|
cargo test -p weft-runtime -- --test-threads=1 2>&1
|
|
|
|
echo ""
|
|
echo "==> cargo test -p weft-pack"
|
|
cargo test -p weft-pack -- --test-threads=1 2>&1
|
|
|
|
echo ""
|
|
echo "==> cargo test -p weft-mount-helper"
|
|
cargo test -p weft-mount-helper -- --test-threads=1 2>&1
|
|
|
|
echo ""
|
|
echo "==> cargo test -p weft-file-portal"
|
|
cargo test -p weft-file-portal -- --test-threads=1 2>&1
|
|
|
|
echo ""
|
|
echo "ALL DONE"
|