-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpre-push-hook.txt
More file actions
executable file
·280 lines (236 loc) · 8.36 KB
/
pre-push-hook.txt
File metadata and controls
executable file
·280 lines (236 loc) · 8.36 KB
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#!/bin/bash
# Enhanced Pre-Push Hook with AI Test Runner Integration
# This hook runs the test suite, displays consolidated test reports,
# and performs AI-powered strategy analysis before allowing the push.
# ANSI color codes for styling
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m' # No Color
BOLD='\033[1m'
# Directories and files
REPORTS_DIR="tests/reports"
STRATEGY_LOGS_DIR="tests/strategy_logs"
AI_TEST_RUNNER="tests/ai_test_runner.py"
TEST_REPORT="${REPORTS_DIR}/test-report.md"
STRATEGY_ANALYSIS="${STRATEGY_LOGS_DIR}/latest_summary.md"
echo -e "${BOLD}${BLUE}=== Running AI Test Suite ===${NC}"
# Run AI test runner
if [ -f "$AI_TEST_RUNNER" ]; then
python "$AI_TEST_RUNNER"
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then
echo -e "${RED}AI Test Runner failed. Please fix the issues before pushing.${NC}"
exit 1
fi
else
echo -e "${YELLOW}Warning: AI Test Runner not found at ${AI_TEST_RUNNER}${NC}"
fi
# Display the consolidated test report
echo -e "\n${BOLD}${BLUE}=== Test Report Summary ===${NC}"
if [ -f "$TEST_REPORT" ]; then
cat "$TEST_REPORT"
else
echo -e "${YELLOW}No test report found at ${TEST_REPORT}${NC}"
fi
# Display the latest strategy analysis
echo -e "\n${BOLD}${BLUE}=== Test Strategy Analysis ===${NC}"
if [ -f "$STRATEGY_ANALYSIS" ]; then
cat "$STRATEGY_ANALYSIS"
else
echo -e "${YELLOW}No strategy analysis found at ${STRATEGY_ANALYSIS}${NC}"
fi
# Show overall status
echo -e "\n${BOLD}${BLUE}=== Push Validation ===${NC}"
if [ ! -f "$TEST_REPORT" ] || [ ! -f "$STRATEGY_ANALYSIS" ]; then
echo -e "${YELLOW}Warning: Some test artifacts are missing. It's recommended to run a full test suite.${NC}"
fi
# Ask for user confirmation to proceed
echo -e "\n${BOLD}Have you reviewed the test results and strategy analysis? (y/n)${NC}"
read -r RESPONSE
if [[ "$RESPONSE" =~ ^[Yy]$ ]]; then
echo -e "${GREEN}Push approved. Proceeding...${NC}"
exit 0
else
echo -e "${RED}Push aborted. Please review the test report and fix any issues before pushing.${NC}"
exit 1
fi
#!/bin/bash
# Enhanced Pre-Push Hook with AI Test Runner Integration
# This hook runs the test suite, displays consolidated test reports,
# and performs AI-powered strategy analysis before allowing the push.
# ANSI color codes for styling
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m' # No Color
BOLD='\033[1m'
# Directories and files
REPORTS_DIR="tests/reports"
STRATEGY_LOGS_DIR="tests/strategy_logs"
AI_TEST_RUNNER="tests/ai_test_runner.py"
TEST_REPORT="${REPORTS_DIR}/test-report.md"
STRATEGY_ANALYSIS="${STRATEGY_LOGS_DIR}/latest_summary.md"
echo -e "${BOLD}${BLUE}=== Running AI Test Suite ===${NC}"
# Run AI test runner
if [ -f "$AI_TEST_RUNNER" ]; then
python "$AI_TEST_RUNNER"
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then
echo -e "${RED}AI Test Runner failed. Please fix the issues before pushing.${NC}"
exit 1
fi
else
echo -e "${YELLOW}Warning: AI Test Runner not found at ${AI_TEST_RUNNER}${NC}"
fi
# Display the consolidated test report
echo -e "\n${BOLD}${BLUE}=== Test Report Summary ===${NC}"
if [ -f "$TEST_REPORT" ]; then
cat "$TEST_REPORT"
else
echo -e "${YELLOW}No test report found at ${TEST_REPORT}${NC}"
fi
# Display the latest strategy analysis
echo -e "\n${BOLD}${BLUE}=== Test Strategy Analysis ===${NC}"
if [ -f "$STRATEGY_ANALYSIS" ]; then
cat "$STRATEGY_ANALYSIS"
else
echo -e "${YELLOW}No strategy analysis found at ${STRATEGY_ANALYSIS}${NC}"
fi
# Show overall status
echo -e "\n${BOLD}${BLUE}=== Push Validation ===${NC}"
if [ ! -f "$TEST_REPORT" ] || [ ! -f "$STRATEGY_ANALYSIS" ]; then
echo -e "${YELLOW}Warning: Some test artifacts are missing. It's recommended to run a full test suite.${NC}"
fi
# Ask for user confirmation to proceed
echo -e "\n${BOLD}Have you reviewed the test results and strategy analysis? (y/n)${NC}"
read -r RESPONSE
if [[ "$RESPONSE" =~ ^[Yy]$ ]]; then
echo -e "${GREEN}Push approved. Proceeding...${NC}"
exit 0
else
echo -e "${RED}Push aborted. Please review the test report and fix any issues before pushing.${NC}"
exit 1
fi
#!/bin/bash
# Enhanced Pre-Push Hook with AI Test Runner Integration
# This hook runs the test suite, displays consolidated test reports,
# and performs AI-powered strategy analysis before allowing the push.
# ANSI color codes for styling
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m' # No Color
BOLD='\033[1m'
# Directories and files
REPORTS_DIR="tests/reports"
STRATEGY_LOGS_DIR="tests/strategy_logs"
AI_TEST_RUNNER="tests/ai_test_runner.py"
TEST_REPORT="${REPORTS_DIR}/test-report.md"
STRATEGY_ANALYSIS="${STRATEGY_LOGS_DIR}/latest_summary.md"
echo -e "${BOLD}${BLUE}=== Running AI Test Suite ===${NC}"
# Run AI test runner
if [ -f "$AI_TEST_RUNNER" ]; then
python "$AI_TEST_RUNNER"
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then
echo -e "${RED}AI Test Runner failed. Please fix the issues before pushing.${NC}"
exit 1
fi
else
echo -e "${YELLOW}Warning: AI Test Runner not found at ${AI_TEST_RUNNER}${NC}"
fi
# Display the consolidated test report
echo -e "\n${BOLD}${BLUE}=== Test Report Summary ===${NC}"
if [ -f "$TEST_REPORT" ]; then
cat "$TEST_REPORT"
else
echo -e "${YELLOW}No test report found at ${TEST_REPORT}${NC}"
fi
# Display the latest strategy analysis
echo -e "\n${BOLD}${BLUE}=== Test Strategy Analysis ===${NC}"
if [ -f "$STRATEGY_ANALYSIS" ]; then
cat "$STRATEGY_ANALYSIS"
else
echo -e "${YELLOW}No strategy analysis found at ${STRATEGY_ANALYSIS}${NC}"
fi
# Show overall status
echo -e "\n${BOLD}${BLUE}=== Push Validation ===${NC}"
if [ ! -f "$TEST_REPORT" ] || [ ! -f "$STRATEGY_ANALYSIS" ]; then
echo -e "${YELLOW}Warning: Some test artifacts are missing. It's recommended to run a full test suite.${NC}"
fi
# Ask for user confirmation to proceed
echo -e "\n${BOLD}Have you reviewed the test results and strategy analysis? (y/n)${NC}"
read -r RESPONSE
if [[ "$RESPONSE" =~ ^[Yy]$ ]]; then
echo -e "${GREEN}Push approved. Proceeding...${NC}"
exit 0
else
echo -e "${RED}Push aborted. Please review the test report and fix any issues before pushing.${NC}"
exit 1
fi
#!/bin/bash
# Enhanced Pre-Push Hook with AI Test Runner Integration
# This hook runs the test suite, displays consolidated test reports,
# and performs AI-powered strategy analysis before allowing the push.
# ANSI color codes for styling
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m' # No Color
BOLD='\033[1m'
# Directories and files
REPORTS_DIR="tests/reports"
STRATEGY_LOGS_DIR="tests/strategy_logs"
AI_TEST_RUNNER="tests/ai_test_runner.py"
TEST_REPORT="${REPORTS_DIR}/test-report.md"
STRATEGY_ANALYSIS="${STRATEGY_LOGS_DIR}/latest_summary.md"
echo -e "${BOLD}${BLUE}=== Running AI Test Suite ===${NC}"
# Run AI test runner
if [ -f "$AI_TEST_RUNNER" ]; then
python "$AI_TEST_RUNNER"
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then
echo -e "${RED}AI Test Runner failed. Please fix the issues before pushing.${NC}"
exit 1
fi
else
echo -e "${YELLOW}Warning: AI Test Runner not found at ${AI_TEST_RUNNER}${NC}"
fi
# Display the consolidated test report
echo -e "\n${BOLD}${BLUE}=== Test Report Summary ===${NC}"
if [ -f "$TEST_REPORT" ]; then
cat "$TEST_REPORT"
else
echo -e "${YELLOW}No test report found at ${TEST_REPORT}${NC}"
fi
# Display the latest strategy analysis
echo -e "\n${BOLD}${BLUE}=== Test Strategy Analysis ===${NC}"
if [ -f "$STRATEGY_ANALYSIS" ]; then
cat "$STRATEGY_ANALYSIS"
else
echo -e "${YELLOW}No strategy analysis found at ${STRATEGY_ANALYSIS}${NC}"
fi
# Show overall status
echo -e "\n${BOLD}${BLUE}=== Push Validation ===${NC}"
if [ ! -f "$TEST_REPORT" ] || [ ! -f "$STRATEGY_ANALYSIS" ]; then
echo -e "${YELLOW}Warning: Some test artifacts are missing. It's recommended to run a full test suite.${NC}"
fi
# Ask for user confirmation to proceed
echo -e "\n${BOLD}Have you reviewed the test results and strategy analysis? (y/n)${NC}"
read -r RESPONSE
if [[ "$RESPONSE" =~ ^[Yy]$ ]]; then
echo -e "${GREEN}Push approved. Proceeding...${NC}"
exit 0
else
echo -e "${RED}Push aborted. Please review the test report and fix any issues before pushing.${NC}"
exit 1
fi