Skip to content

Commit c7f729c

Browse files
popup-kayclaude
andcommitted
test: update test expectations for v1.5.3 (18 TOML, 29 skills, 16 agents)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 31b91e8 commit c7f729c

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/run-all-tests.sh

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
#===============================================================================
33
# bkit-gemini Comprehensive Test Runner
4-
# Version: 1.5.0
4+
# Version: 1.5.3
55
# Purpose: Execute all test cases defined in bkit-gemini-comprehensive-test.design.md
66
# Executor: Gemini CLI
77
#===============================================================================
@@ -178,10 +178,10 @@ run_commands_toml_tests() {
178178
echo -e "\n${YELLOW}Testing:${NC} CMD-03 - TOML File Count"
179179
local toml_count
180180
toml_count=$(find "$BKIT_DIR/commands" -name "*.toml" 2>/dev/null | wc -l | tr -d ' ')
181-
if [ "$toml_count" -eq 10 ]; then
182-
log_pass "CMD-03: Found 10 TOML command files"
181+
if [ "$toml_count" -eq 18 ]; then
182+
log_pass "CMD-03: Found 18 TOML command files"
183183
else
184-
log_fail "CMD-03: Expected 10 TOML files, found $toml_count"
184+
log_fail "CMD-03: Expected 18 TOML files, found $toml_count"
185185
fi
186186

187187
# CMD-04 to CMD-13: Individual Command File Tests
@@ -268,10 +268,10 @@ run_skills_metadata_tests() {
268268
echo -e "\n${YELLOW}Testing:${NC} SKILL-META-04 - Skills Count"
269269
local skills_count
270270
skills_count=$(find "$BKIT_DIR/skills" -name "SKILL.md" 2>/dev/null | wc -l | tr -d ' ')
271-
if [ "$skills_count" -eq 21 ]; then
272-
log_pass "SKILL-META-04: Found 21 SKILL.md files"
271+
if [ "$skills_count" -eq 29 ]; then
272+
log_pass "SKILL-META-04: Found 29 SKILL.md files"
273273
else
274-
log_fail "SKILL-META-04: Expected 21 SKILL.md files, found $skills_count"
274+
log_fail "SKILL-META-04: Expected 29 SKILL.md files, found $skills_count"
275275
fi
276276
}
277277

@@ -309,10 +309,10 @@ run_agents_metadata_tests() {
309309
echo -e "\n${YELLOW}Testing:${NC} AGENT-META-02 - Agents Count"
310310
local agents_count
311311
agents_count=$(find "$BKIT_DIR/agents" -name "*.md" 2>/dev/null | wc -l | tr -d ' ')
312-
if [ "$agents_count" -eq 11 ]; then
313-
log_pass "AGENT-META-02: Found 11 agent files"
312+
if [ "$agents_count" -eq 16 ]; then
313+
log_pass "AGENT-META-02: Found 16 agent files"
314314
else
315-
log_fail "AGENT-META-02: Expected 11 agent files, found $agents_count"
315+
log_fail "AGENT-META-02: Expected 16 agent files, found $agents_count"
316316
fi
317317
}
318318

@@ -341,11 +341,11 @@ run_extension_config_tests() {
341341

342342
# EXT-02: Version check
343343
((TOTAL_TESTS++))
344-
echo -e "\n${YELLOW}Testing:${NC} EXT-02 - Version is 1.5.0"
345-
if grep -q '"version": "1.5.0"' "$BKIT_DIR/gemini-extension.json"; then
346-
log_pass "EXT-02: Version is 1.5.0"
344+
echo -e "\n${YELLOW}Testing:${NC} EXT-02 - Version is 1.5.3"
345+
if grep -q '"version": "1.5.3"' "$BKIT_DIR/gemini-extension.json"; then
346+
log_pass "EXT-02: Version is 1.5.3"
347347
else
348-
log_fail "EXT-02: Version is not 1.5.0"
348+
log_fail "EXT-02: Version is not 1.5.3"
349349
fi
350350

351351
# EXT-03: contextFileName is GEMINI.md
@@ -558,7 +558,7 @@ print_summary() {
558558
main() {
559559
echo ""
560560
echo -e "${BLUE}╔══════════════════════════════════════════════════════════════════╗${NC}"
561-
echo -e "${BLUE}║ bkit-gemini Comprehensive Test Suite v1.5.0${NC}"
561+
echo -e "${BLUE}║ bkit-gemini Comprehensive Test Suite v1.5.3${NC}"
562562
echo -e "${BLUE}║ Testing: Commands TOML, Skills, Agents, Hooks, Library ║${NC}"
563563
echo -e "${BLUE}╚══════════════════════════════════════════════════════════════════╝${NC}"
564564
echo ""

0 commit comments

Comments
 (0)