File size: 6,703 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | #!/bin/bash
# 19-config-cli.sh β Config CLI subcommands (init, show, path, set, patch, validate, get)
source "$(dirname "$0")/common.sh"
# Helper: create temp config dir, set CFG and TMPDIR
config_setup() {
TMPDIR=$(mktemp -d)
CFG="$TMPDIR/config.json"
}
# Helper: clean up temp dir
config_cleanup() {
rm -rf "$TMPDIR"
}
# Helper: init config in temp dir
config_init() {
PINCHTAB_CONFIG="$CFG" HOME="$TMPDIR" pt_ok config init
}
# Helper: assert config file JSON field
assert_config_field() {
local path="$1" expected="$2" desc="$3"
local actual
actual=$(jq -r "$path" "$CFG" 2>/dev/null)
if [ "$actual" = "$expected" ]; then
echo -e " ${GREEN}β${NC} $desc"
((ASSERTIONS_PASSED++)) || true
else
echo -e " ${RED}β${NC} $desc (expected $expected, got $actual)"
((ASSERTIONS_FAILED++)) || true
fi
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config init creates valid config"
config_setup
config_init
# Check which path was created
CFG_FILE="$CFG"
[ -f "$CFG_FILE" ] || CFG_FILE="$TMPDIR/.pinchtab/config.json"
assert_file_exists "$CFG_FILE" "config file created"
CFG="$CFG_FILE"
# Verify structure has expected sections
if jq -e '.server' "$CFG" >/dev/null 2>&1; then
echo -e " ${GREEN}β${NC} has server section"
((ASSERTIONS_PASSED++)) || true
else
echo -e " ${RED}β${NC} missing server section"
((ASSERTIONS_FAILED++)) || true
fi
if jq -e '.browser' "$CFG" >/dev/null 2>&1; then
echo -e " ${GREEN}β${NC} has browser section"
((ASSERTIONS_PASSED++)) || true
else
echo -e " ${RED}β${NC} missing browser section"
((ASSERTIONS_FAILED++)) || true
fi
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config show displays config"
config_setup
PINCHTAB_CONFIG="$CFG" pt_ok config show
assert_output_contains "Server" "has Server section header"
assert_output_contains "Browser" "has Browser section header"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config path outputs config file path"
config_setup
EXPECTED_PATH="$TMPDIR/custom-config.json"
PINCHTAB_CONFIG="$EXPECTED_PATH" pt_ok config path
assert_output_contains "$EXPECTED_PATH" "path matches expected"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config set updates a value"
config_setup
config_init
PINCHTAB_CONFIG="$CFG" pt_ok config set server.port 8080
assert_output_contains "Set server.port = 8080" "success message"
assert_config_field ".server.port" "8080" "file contains port 8080"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config patch merges JSON"
config_setup
config_init
PINCHTAB_CONFIG="$CFG" pt_ok config patch '{"server":{"port":"7777"},"instanceDefaults":{"maxTabs":100}}'
assert_config_field ".server.port" "7777" "port set to 7777"
assert_config_field ".instanceDefaults.maxTabs" "100" "maxTabs set to 100"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config validate accepts valid config"
config_setup
cat > "$CFG" <<'EOF'
{
"server": {"port": "9867"},
"instanceDefaults": {"stealthLevel": "light", "tabEvictionPolicy": "reject"},
"multiInstance": {"strategy": "simple", "allocationPolicy": "fcfs"}
}
EOF
PINCHTAB_CONFIG="$CFG" pt_ok config validate
assert_output_contains "valid" "reports valid"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config validate rejects invalid config"
config_setup
cat > "$CFG" <<'EOF'
{
"server": {"port": "99999"},
"instanceDefaults": {"stealthLevel": "superstealth"},
"multiInstance": {"strategy": "magical"}
}
EOF
PINCHTAB_CONFIG="$CFG" pt_fail config validate
assert_output_contains "error" "reports error"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config get retrieves a value"
config_setup
config_init
PINCHTAB_CONFIG="$CFG" pt_ok config set server.port 7654
PINCHTAB_CONFIG="$CFG" pt_ok config get server.port
assert_output_contains "7654" "got value 7654"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config get fails for unknown path"
config_setup
PINCHTAB_CONFIG="$CFG" pt_fail config get unknown.field
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config get returns slice as comma-separated"
config_setup
config_init
PINCHTAB_CONFIG="$CFG" pt_ok config set security.attach.allowHosts "127.0.0.1,localhost"
PINCHTAB_CONFIG="$CFG" pt_ok config get security.attach.allowHosts
assert_output_contains "127.0.0.1,localhost" "got comma-separated value"
config_cleanup
end_test
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "config show loads legacy flat config"
config_setup
cat > "$CFG" <<'EOF'
{
"port": "8765",
"headless": true,
"maxTabs": 30
}
EOF
PINCHTAB_CONFIG="$CFG" pt_ok config show
assert_output_contains "8765" "shows port from legacy config"
config_cleanup
end_test
|