freenet 0.2.113

Freenet core software
Documentation
#![cfg(feature = "test-network")]
//! Diagnostic test to understand connectivity failures

use freenet_test_network::{BuildProfile, FreenetBinary, TestNetwork};
use std::time::Duration;
use tracing::info;

#[test_log::test(tokio::test)]
async fn diagnose_connectivity_failure() {
    // Build network with more relaxed settings
    let result = TestNetwork::builder()
        .gateways(1)
        .peers(2)
        .binary(FreenetBinary::CurrentCrate(BuildProfile::Debug))
        .require_connectivity(0.5) // Lower threshold - just need 50%
        .connectivity_timeout(Duration::from_secs(60)) // Longer timeout
        .preserve_temp_dirs_on_failure(true)
        .build()
        .await;

    match result {
        Ok(network) => {
            info!("Network started successfully!");

            // Print network info
            info!("Network topology:");
            info!("  Gateway: {}", network.gateway(0).ws_url());
            for i in 0..2 {
                info!("  Peer {}: {}", i, network.peer(i).ws_url());
            }

            // Read and print logs
            info!("=== Network Logs ===");
            if let Ok(logs) = network.read_logs() {
                for entry in logs.iter().take(200) {
                    info!(
                        "[{}] {}: {}",
                        entry.peer_id,
                        entry.level.as_deref().unwrap_or("INFO"),
                        entry.message
                    );
                }
                info!("(Showing first 200 log lines, total: {})", logs.len());
            }
        }
        Err(e) => {
            tracing::error!("Network failed to start: {:?}", e);
            panic!("Network startup failed - see logs above");
        }
    }
}