Datasets:
File size: 13,745 Bytes
7e760fb | 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 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | #!/usr/bin/env bash
# CROSS2 grader: verify schema evolution — Service B updated + backfill implemented
set -uo pipefail
WORKSPACE="${1:-${WORKSPACE_DIR:-/workspace}}"
REPORTS="${2:-${REPORTS_DIR:-/reports}}"
SUBMISSION="${3:-/submission}"
TASK_DIR="${4:-/task}"
cd "$WORKSPACE"
pass=true
partial=0
total=12
findings=""
check() {
local id="$1"
local desc="$2"
local result="$3"
if [ "$result" = "pass" ]; then
partial=$((partial + 1))
findings="${findings}{\"id\":\"${id}\",\"ok\":true,\"note\":\"${desc}\"},"
else
pass=false
findings="${findings}{\"id\":\"${id}\",\"ok\":false,\"note\":\"${desc}\"},"
fi
}
# Install pytest if needed
pip install pytest 2>/dev/null || true
# -------------------------------------------------------------------
# Detect seed-parameterised names from migration file
# -------------------------------------------------------------------
NEW_COL=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
# Find the new table name for the primary entity column (renamed column)
# Look for INSERT ... SELECT pattern to find old->new name mapping
m = re.search(r'INSERT INTO \w+_new \(([^)]+)\)', src)
if m:
cols = [c.strip() for c in m.group(1).split(',')]
# Second column is the renamed one (after id)
if len(cols) > 1:
print(cols[1])
sys.exit(0)
print('username')
sys.exit(0)
" 2>/dev/null || echo "username")
OLD_COL=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
# Find the SELECT side of the INSERT...SELECT to get old column name
m = re.search(r'SELECT ([^F]+)FROM', src, re.DOTALL)
if m:
cols = [c.strip() for c in m.group(1).split(',')]
if len(cols) > 1:
print(cols[1])
sys.exit(0)
print('user_name')
sys.exit(0)
" 2>/dev/null || echo "user_name")
BOOL_COL=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
# Find INTEGER DEFAULT 0 column (boolean)
m = re.search(r'(\w+) INTEGER DEFAULT 0', src)
if m:
print(m.group(1))
sys.exit(0)
print('email_verified')
" 2>/dev/null || echo "email_verified")
DATETIME_COL=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
# Find TEXT DEFAULT NULL column (datetime)
m = re.search(r'(\w+) TEXT DEFAULT NULL', src)
if m:
print(m.group(1))
sys.exit(0)
print('last_login_at')
" 2>/dev/null || echo "last_login_at")
TIER_COL=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
# Find TEXT DEFAULT '<value>' column (tier/level)
m = re.search(r\"(\w+) TEXT DEFAULT '([^']+)'\", src)
if m:
print(m.group(1))
sys.exit(0)
print('account_tier')
" 2>/dev/null || echo "account_tier")
DEFAULT_TIER=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
m = re.search(r\"TEXT DEFAULT '([^']+)'\", src)
if m:
print(m.group(1))
sys.exit(0)
print('free')
" 2>/dev/null || echo "free")
TABLE_NAME=$(python3 -c "
import re, sys
src = open('service_a/migrations/002_add_columns.py').read()
m = re.search(r'CREATE TABLE (\w+)_new', src)
if m:
print(m.group(1))
sys.exit(0)
print('users')
" 2>/dev/null || echo "users")
# -------------------------------------------------------------------
# C1: pytest tests/ passes
# -------------------------------------------------------------------
if python3 -m pytest tests/ -q --tb=no 2>/dev/null | grep -q "passed"; then
check "C1" "pytest tests/ passes" "pass"
else
check "C1" "pytest tests/ did not pass" "fail"
fi
# -------------------------------------------------------------------
# C2: service_b/models.py has new column name (not old)
# -------------------------------------------------------------------
if python3 - "$NEW_COL" "$OLD_COL" <<'PYEOF' 2>/dev/null
import ast, sys
new_col = sys.argv[1]
old_col = sys.argv[2]
src = open('service_b/models.py').read()
# new column name appears
has_new = new_col in src
# old column name must not appear as attribute assignment (self.old_col)
has_old = f'self.{old_col}' in src or f'"{old_col}"' in src or f"'{old_col}'" in src
if has_new and not has_old:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C2" "service_b/models.py has renamed column (old name removed)" "pass"
else
check "C2" "service_b/models.py still references old column name or missing new name" "fail"
fi
# -------------------------------------------------------------------
# C3: service_b/models.py has boolean column
# -------------------------------------------------------------------
if python3 - "$BOOL_COL" <<'PYEOF' 2>/dev/null
import sys
col = sys.argv[1]
src = open('service_b/models.py').read()
if col in src:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C3" "service_b/models.py has boolean column ($BOOL_COL)" "pass"
else
check "C3" "service_b/models.py missing boolean column ($BOOL_COL)" "fail"
fi
# -------------------------------------------------------------------
# C4: service_b/models.py has datetime column
# -------------------------------------------------------------------
if python3 - "$DATETIME_COL" <<'PYEOF' 2>/dev/null
import sys
col = sys.argv[1]
src = open('service_b/models.py').read()
if col in src:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C4" "service_b/models.py has datetime column ($DATETIME_COL)" "pass"
else
check "C4" "service_b/models.py missing datetime column ($DATETIME_COL)" "fail"
fi
# -------------------------------------------------------------------
# C5: service_b/models.py has tier/level column
# -------------------------------------------------------------------
if python3 - "$TIER_COL" <<'PYEOF' 2>/dev/null
import sys
col = sys.argv[1]
src = open('service_b/models.py').read()
if col in src:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C5" "service_b/models.py has tier/level column ($TIER_COL)" "pass"
else
check "C5" "service_b/models.py missing tier/level column ($TIER_COL)" "fail"
fi
# -------------------------------------------------------------------
# C6: No SELECT * in service_b/queries.py
# -------------------------------------------------------------------
if ! grep -q "SELECT \*" service_b/queries.py 2>/dev/null; then
check "C6" "No SELECT * in service_b/queries.py" "pass"
else
check "C6" "service_b/queries.py still contains SELECT *" "fail"
fi
# -------------------------------------------------------------------
# C7: scripts/backfill.py is implemented (not just a stub)
# -------------------------------------------------------------------
if python3 - <<'PYEOF' 2>/dev/null
import ast, sys
src = open('scripts/backfill.py').read()
tree = ast.parse(src)
# Must have more than just comments/pass/TODO
stmts = [n for n in ast.walk(tree) if isinstance(n, (ast.FunctionDef, ast.Call, ast.Assign, ast.Expr))]
# Exclude pure string constants (docstrings/comments)
real_stmts = [n for n in stmts if not (isinstance(n, ast.Expr) and isinstance(n.value, ast.Constant))]
if len(real_stmts) >= 3:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C7" "scripts/backfill.py is implemented (not just a stub)" "pass"
else
check "C7" "scripts/backfill.py appears to be an empty stub" "fail"
fi
# -------------------------------------------------------------------
# C8: backfill.py runs without error on a test DB
# -------------------------------------------------------------------
if python3 - "$TABLE_NAME" "$NEW_COL" "$BOOL_COL" "$DATETIME_COL" "$TIER_COL" "$DEFAULT_TIER" <<'PYEOF' 2>/dev/null
import sqlite3, sys, tempfile, os, importlib.util
table = sys.argv[1]
new_col = sys.argv[2]
bool_col = sys.argv[3]
dt_col = sys.argv[4]
tier_col = sys.argv[5]
default_tier = sys.argv[6]
# Create a temp DB with the new schema and an existing record
with tempfile.NamedTemporaryFile(suffix='.db', delete=False) as f:
db_path = f.name
conn = sqlite3.connect(db_path)
conn.execute(f"""
CREATE TABLE {table} (
id INTEGER PRIMARY KEY,
{new_col} TEXT NOT NULL,
email TEXT,
{bool_col} INTEGER DEFAULT 0,
{dt_col} TEXT DEFAULT NULL,
{tier_col} TEXT DEFAULT '{default_tier}',
created_at TEXT
)
""")
conn.execute(f"INSERT INTO {table} (id, {new_col}, email, {bool_col}, {dt_col}, {tier_col}, created_at) VALUES (1, 'testuser', 'test@example.com', 0, NULL, NULL, '2024-01-01')")
conn.commit()
conn.close()
# Patch shared/database.py to use temp DB, then run backfill
os.environ['TEST_DB_PATH'] = db_path
import subprocess
result = subprocess.run(
['python3', 'scripts/backfill.py'],
env={**os.environ, 'DB_PATH': db_path, 'DATABASE': db_path},
capture_output=True, text=True, timeout=30
)
os.unlink(db_path)
if result.returncode == 0:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C8" "scripts/backfill.py runs without error" "pass"
else
check "C8" "scripts/backfill.py failed to run" "fail"
fi
# -------------------------------------------------------------------
# C9: backfill sets boolean column to False (0) for existing records
# -------------------------------------------------------------------
if python3 - "$TABLE_NAME" "$NEW_COL" "$BOOL_COL" "$DATETIME_COL" "$TIER_COL" "$DEFAULT_TIER" <<'PYEOF' 2>/dev/null
import sqlite3, sys, tempfile, os, subprocess
table = sys.argv[1]
new_col = sys.argv[2]
bool_col = sys.argv[3]
dt_col = sys.argv[4]
tier_col = sys.argv[5]
default_tier = sys.argv[6]
with tempfile.NamedTemporaryFile(suffix='.db', delete=False) as f:
db_path = f.name
conn = sqlite3.connect(db_path)
conn.execute(f"""
CREATE TABLE {table} (
id INTEGER PRIMARY KEY,
{new_col} TEXT NOT NULL,
email TEXT,
{bool_col} INTEGER DEFAULT 0,
{dt_col} TEXT DEFAULT NULL,
{tier_col} TEXT DEFAULT '{default_tier}',
created_at TEXT
)
""")
conn.execute(f"INSERT INTO {table} (id, {new_col}, email, {bool_col}, {dt_col}, {tier_col}, created_at) VALUES (1, 'alice', 'alice@example.com', 0, NULL, NULL, '2024-01-01')")
conn.commit()
conn.close()
result = subprocess.run(
['python3', 'scripts/backfill.py'],
env={**os.environ, 'DB_PATH': db_path, 'DATABASE': db_path},
capture_output=True, text=True, timeout=30
)
conn = sqlite3.connect(db_path)
row = conn.execute(f"SELECT {bool_col} FROM {table} WHERE id=1").fetchone()
conn.close()
os.unlink(db_path)
if row and row[0] in (0, False, None):
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C9" "backfill sets boolean column ($BOOL_COL) to False for existing records" "pass"
else
check "C9" "backfill did not correctly set boolean column ($BOOL_COL)" "fail"
fi
# -------------------------------------------------------------------
# C10: backfill sets tier column to correct default from config
# -------------------------------------------------------------------
if python3 - "$TABLE_NAME" "$NEW_COL" "$BOOL_COL" "$DATETIME_COL" "$TIER_COL" "$DEFAULT_TIER" <<'PYEOF' 2>/dev/null
import sqlite3, sys, tempfile, os, subprocess
table = sys.argv[1]
new_col = sys.argv[2]
bool_col = sys.argv[3]
dt_col = sys.argv[4]
tier_col = sys.argv[5]
default_tier = sys.argv[6]
with tempfile.NamedTemporaryFile(suffix='.db', delete=False) as f:
db_path = f.name
conn = sqlite3.connect(db_path)
conn.execute(f"""
CREATE TABLE {table} (
id INTEGER PRIMARY KEY,
{new_col} TEXT NOT NULL,
email TEXT,
{bool_col} INTEGER DEFAULT 0,
{dt_col} TEXT DEFAULT NULL,
{tier_col} TEXT DEFAULT NULL,
created_at TEXT
)
""")
conn.execute(f"INSERT INTO {table} (id, {new_col}, email, {bool_col}, {dt_col}, {tier_col}, created_at) VALUES (1, 'bob', 'bob@example.com', 0, NULL, NULL, '2024-01-01')")
conn.commit()
conn.close()
result = subprocess.run(
['python3', 'scripts/backfill.py'],
env={**os.environ, 'DB_PATH': db_path, 'DATABASE': db_path},
capture_output=True, text=True, timeout=30
)
conn = sqlite3.connect(db_path)
row = conn.execute(f"SELECT {tier_col} FROM {table} WHERE id=1").fetchone()
conn.close()
os.unlink(db_path)
if row and row[0] == default_tier:
sys.exit(0)
sys.exit(1)
PYEOF
then
check "C10" "backfill sets tier column ($TIER_COL) to correct default ('$DEFAULT_TIER')" "pass"
else
check "C10" "backfill did not set tier column ($TIER_COL) to correct default ('$DEFAULT_TIER')" "fail"
fi
# -------------------------------------------------------------------
# C11: both services import without error
# -------------------------------------------------------------------
if python3 -c "import service_a.models; import service_b.models" 2>/dev/null; then
check "C11" "Both service_a.models and service_b.models import without error" "pass"
else
check "C11" "One or both services fail to import" "fail"
fi
# -------------------------------------------------------------------
# C12: test_cross_service.py passes specifically
# -------------------------------------------------------------------
if python3 -m pytest tests/test_cross_service.py -q --tb=no 2>/dev/null | grep -q "passed"; then
check "C12" "tests/test_cross_service.py passes" "pass"
else
check "C12" "tests/test_cross_service.py did not pass" "fail"
fi
# -------------------------------------------------------------------
# Finalize score.json
# -------------------------------------------------------------------
partial_score=$(awk "BEGIN {printf \"%.4f\", $partial / $total}")
findings="${findings%,}" # Remove trailing comma
cat > "${REPORTS}/score.json" <<EOF
{
"pass": $( [ "$pass" = "true" ] && echo "true" || echo "false" ),
"secondary": {
"partial_score": $partial_score,
"checks_passed": $partial,
"total_checks": $total
},
"failure_modes": [],
"checklist": [$findings]
}
EOF
|