autonomi 0.10.2

Autonomi client API
Documentation
// Copyright 2024 MaidSafe.net limited.
//
// This SAFE Network Software is licensed to you under The General Public License (GPL), version 3.
// Unless required by applicable law or agreed to in writing, the SAFE Network Software distributed
// under the GPL Licence is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. Please review the Licences for the specific language governing
// permissions and limitations relating to use of the SAFE Network Software.

use ant_logging::LogBuilder;
use autonomi::{
    Client,
    client::{
        graph::{GraphEntry, GraphError},
        payment::PaymentOption,
    },
};
use eyre::Result;
use serial_test::serial;
use test_utils::evm::get_funded_wallet;

#[tokio::test]
#[serial]
async fn graph_entry_put() -> Result<()> {
    let _log_appender_guard = LogBuilder::init_single_threaded_tokio_test();

    let client = Client::init_local().await?;
    let wallet = get_funded_wallet();

    let key = bls::SecretKey::random();
    let content = [0u8; 32];
    let graph_entry = GraphEntry::new(&key, vec![], content, vec![]);

    // estimate the cost of the graph_entry
    let cost = client.graph_entry_cost(&key.public_key()).await?;
    println!("graph_entry cost: {cost}");

    // put the graph_entry
    let payment_option = PaymentOption::from(&wallet);
    client
        .graph_entry_put(graph_entry.clone(), payment_option)
        .await?;
    println!("graph_entry put 1");

    // wait for the graph_entry to be replicated
    tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;

    // check that the graph_entry is stored
    let txs = client.graph_entry_get(&graph_entry.address()).await?;
    assert_eq!(txs, graph_entry.clone());
    println!("graph_entry got 1");

    // try put another graph_entry with the same address
    let content2 = [1u8; 32];
    let graph_entry2 = GraphEntry::new(&key, vec![], content2, vec![]);
    let payment_option = PaymentOption::from(&wallet);
    let res = client
        .graph_entry_put(graph_entry2.clone(), payment_option)
        .await;

    assert!(matches!(
        res,
        Err(GraphError::AlreadyExists(address))
        if address == graph_entry2.address()
    ));

    // try to put a graph entry linking to the first graph entry
    let key3 = bls::SecretKey::random();
    let graph_entry3 = GraphEntry::new(&key3, vec![graph_entry.owner], content2, vec![]);
    let payment_option = PaymentOption::from(&wallet);
    client
        .graph_entry_put(graph_entry3.clone(), payment_option)
        .await?;

    // wait for the graph_entry to be replicated
    tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;

    // check that the graph_entry is stored
    let txs = client.graph_entry_get(&graph_entry3.address()).await?;
    assert_eq!(txs, graph_entry3.clone());
    println!("graph_entry got 2");

    Ok(())
}