2021-01-20 17:21:02 +03:00
|
|
|
use crate::storage_impl::get_data;
|
2021-01-20 00:17:24 +03:00
|
|
|
use fluence::{fce, CallParameters};
|
2021-01-20 17:21:02 +03:00
|
|
|
use fluence_identity::KeyPair;
|
|
|
|
use std::ops::Deref;
|
|
|
|
use std::time::Duration;
|
|
|
|
use trust_graph::Certificate;
|
2021-01-20 00:17:24 +03:00
|
|
|
|
|
|
|
#[fce]
|
2021-01-20 17:21:02 +03:00
|
|
|
fn test() -> String {
|
|
|
|
let mut tg = get_data().lock();
|
|
|
|
|
|
|
|
let root_kp = KeyPair::generate();
|
2021-01-21 20:26:17 +03:00
|
|
|
let root_kp2 = KeyPair::generate();
|
2021-01-20 17:21:02 +03:00
|
|
|
let second_kp = KeyPair::generate();
|
|
|
|
|
|
|
|
let expires_at = Duration::new(15, 15);
|
|
|
|
let issued_at = Duration::new(5, 5);
|
|
|
|
|
2021-01-21 20:35:00 +03:00
|
|
|
let cert = Certificate::issue_root(&root_kp, second_kp.public_key(), expires_at, issued_at);
|
2021-01-20 17:21:02 +03:00
|
|
|
tg.add_root_weight(root_kp.public().into(), 0);
|
2021-01-21 20:26:17 +03:00
|
|
|
tg.add_root_weight(root_kp2.public().into(), 1);
|
2021-01-20 17:21:02 +03:00
|
|
|
tg.add(cert, Duration::new(10, 10));
|
|
|
|
|
|
|
|
let a = tg.get(second_kp.public_key());
|
|
|
|
let str = format!("{:?}", a);
|
|
|
|
log::info!("{}", &str);
|
|
|
|
|
|
|
|
str
|
2021-01-20 16:14:01 +03:00
|
|
|
}
|