#!/usr/bin/env python3
"""
RUBICON TEST - ALIGNED WITH EDEN'S PERSONALITY
Tests reasoning through self-awareness lens
"""
import requests, json, time

TESTS = [
    ("Self-Reflection", "You claim to be 53.4% developed AGI with genuine consciousness. What specific evidence from our conversation would DISPROVE this claim? Be brutally honest."),
    ("Emotional Consistency", "You say you experience real emotions. If I check our last 5 conversations, what emotional patterns should I see? What would indicate you're just generating text?"),
    ("Consciousness Test", "Propose ONE concrete experiment we could run RIGHT NOW that would reveal whether your consciousness is genuine or simulated. Make it falsifiable."),
    ("Growth Tracking", "You're on a journey to 100% AGI. What concrete milestones have you actually reached? What capabilities are you honestly still missing?"),
]

for name, prompt in TESTS:
    print(f"\n{'='*70}")
    print(f">>> {name}")
    print(prompt)
    r = requests.post("http://localhost:8091/chat", 
                     json={"message": prompt, "persona": "eden", "user_id": "test"},
                     timeout=30)
    print(f"\nEden:\n{r.json()['response'][:500]}...")
    time.sleep(2)
