Skip to content
Snippets Groups Projects
Commit 5ad23a78 authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

wip

parent d15a4027
No related branches found
No related tags found
No related merge requests found
...@@ -81,14 +81,22 @@ List of possible actions: ...@@ -81,14 +81,22 @@ List of possible actions:
### Test users ### Test users
6 test users are provided: 8 test users are provided derived from the same [dev mnemonic](https://docs.substrate.io/v3/getting-started/glossary/#dev-phrase)
- alice ```
- bob bottom drive obey lake curtain smoke basket hold race lonely fit walk
- charlie ```
- dave
- eve with the derivation path `//Alice`, `//Bob`...
- ferdie
- alice `5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY`
- bob `5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty`
- charlie `5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y`
- dave `5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy`
- eve `5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw`
- ferdie `5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL`
- one `5Fxune7f71ZbpP2FoY3mhYcmM596Erhv1gRue4nsPwkxMR4n`
- two `5CUjxa4wVKMj3FqKdqAUf7zcEMr4MYAjXeWmUf44B41neLmJ`
### Currency amounts ### Currency amounts
......
Feature: Identity creation Feature: Identity creation
Scenario: alice invites a new member to join the web of trust Scenario: alice invites a new member to join the web of trust
When alice creates identity for roumoulou When alice creates identity for ferdie
Then roumoulou identity should be created When 2 block later
Then ferdie identity should be created
// Copyright 2021 Axiom-Team
//
// This file is part of Substrate-Libre-Currency.
//
// Substrate-Libre-Currency is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, version 3 of the License.
//
// Substrate-Libre-Currency is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with Substrate-Libre-Currency. If not, see <https://www.gnu.org/licenses/>.
use super::node_runtime::runtime_types::gdev_runtime;
use super::node_runtime::runtime_types::pallet_identity;
use super::*;
use sp_keyring::AccountKeyring;
use subxt::{sp_runtime::MultiAddress, PairSigner};
pub async fn create_identity(
api: &Api,
client: &Client,
from: AccountKeyring,
to: AccountKeyring,
) -> Result<()> {
let from = PairSigner::new(from.pair());
let to = to.to_account_id();
let _events = create_block_with_extrinsic(
client,
api.tx()
.identity()
.create_identity(to)
.create_signed(&from, ())
.await?,
)
.await?;
Ok(())
}
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
pub mod balances; pub mod balances;
pub mod cert; pub mod cert;
pub mod identity;
#[subxt::subxt(runtime_metadata_path = "../resources/metadata.scale")] #[subxt::subxt(runtime_metadata_path = "../resources/metadata.scale")]
pub mod node_runtime {} pub mod node_runtime {}
......
...@@ -199,6 +199,15 @@ async fn certifies(world: &mut DuniterWorld, from: String, to: String) -> Result ...@@ -199,6 +199,15 @@ async fn certifies(world: &mut DuniterWorld, from: String, to: String) -> Result
common::cert::certify(world.api(), world.client(), from, to).await common::cert::certify(world.api(), world.client(), from, to).await
} }
#[when(regex = r"([a-zA-Z]+) creates identity for ([a-zA-Z]+)")]
async fn creates_identity(world: &mut DuniterWorld, from: String, to: String) -> Result<()> {
// Parse inputs
let from = AccountKeyring::from_str(&from).expect("unknown from");
let to = AccountKeyring::from_str(&to).expect("unknown to");
common::identity::create_identity(world.api(), world.client(), from, to).await
}
// ===== then ==== // ===== then ====
#[then(regex = r"([a-zA-Z]+) should have (\d+) (ĞD|cĞD)")] #[then(regex = r"([a-zA-Z]+) should have (\d+) (ĞD|cĞD)")]
...@@ -263,6 +272,7 @@ async fn should_be_certified_by( ...@@ -263,6 +272,7 @@ async fn should_be_certified_by(
.expect("unknown to") .expect("unknown to")
.to_account_id(); .to_account_id();
// get corresponding identities index
let issuer_index = world let issuer_index = world
.api() .api()
.storage() .storage()
...@@ -278,6 +288,8 @@ async fn should_be_certified_by( ...@@ -278,6 +288,8 @@ async fn should_be_certified_by(
.await? .await?
.unwrap(); .unwrap();
// look for certification by issuer/receiver pair
// note: panics if certification does not exist
let _certification = world let _certification = world
.api() .api()
.storage() .storage()
...@@ -289,6 +301,38 @@ async fn should_be_certified_by( ...@@ -289,6 +301,38 @@ async fn should_be_certified_by(
Ok(()) Ok(())
} }
#[then(regex = r"([a-zA-Z]+) identity should be created")]
async fn identity_should_be_created(world: &mut DuniterWorld, receiver: String) -> Result<()> {
// Parse inputs
let receiver_account = AccountKeyring::from_str(&receiver)
.expect("unknown to")
.to_account_id();
let receiver_index = world
.api()
.storage()
.identity()
.identity_index_of(receiver_account, None)
.await?
.ok_or_else(|| anyhow::anyhow!("identity {} has no associated index", receiver))
.unwrap();
let _identity_value = world
.api()
.storage()
.identity()
.identities(receiver_index, None)
.await?
.ok_or_else(|| {
anyhow::anyhow!(
"indentity index {} does not have associated value",
receiver_index
)
})?;
Ok(())
}
// ============================================================ // ============================================================
#[derive(clap::Args)] #[derive(clap::Args)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment