aerospike 2.0.0

Aerospike Client for Rust
Documentation
use crate::common;
use aerospike::expressions::{int_bin, int_val, num_add};
use aerospike::operations::exp::{read_exp, write_exp, ExpReadFlags, ExpWriteFlags};
use aerospike::{as_bin, as_key, as_val, Bins, ReadPolicy, WritePolicy};

#[aerospike_macro::test]
async fn exp_ops() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = &common::rand_str(10);

    let policy = ReadPolicy::default();

    let wpolicy = WritePolicy::default();
    let key = as_key!(namespace, set_name, -1);
    let wbin = as_bin!("bin", as_val!(25));
    let bins = vec![wbin];

    client.delete(&wpolicy, &key).await.unwrap();

    client.put(&wpolicy, &key, &bins).await.unwrap();
    let rec = client.get(&policy, &key, Bins::All).await.unwrap();
    assert_eq!(
        *rec.bins.get("bin").unwrap(),
        as_val!(25),
        "EXP OPs init failed"
    );
    let flt = num_add(vec![int_bin("bin".to_string()), int_val(4)]);
    let ops = &vec![read_exp("example", flt.clone(), ExpReadFlags::Default)];
    let rec = client.operate(&wpolicy, &key, ops).await;
    let rec = rec.unwrap();

    assert_eq!(
        *rec.bins.get("example").unwrap(),
        as_val!(29),
        "EXP OPs read failed"
    );

    let flt2 = int_bin("bin2".to_string());
    let ops = &vec![
        write_exp("bin2", flt, ExpWriteFlags::Default),
        read_exp("example", flt2, ExpReadFlags::Default),
    ];

    let rec = client.operate(&wpolicy, &key, ops).await;
    let rec = rec.unwrap();

    assert_eq!(
        *rec.bins.get("example").unwrap(),
        as_val!(29),
        "EXP OPs write failed"
    );

    client.close().await.unwrap();
}