Skip to content
Snippets Groups Projects
Verified Commit 11cb408c authored by Pascal Engélibert's avatar Pascal Engélibert :bicyclist:
Browse files

fix(certification): cannot certify self

parent de164469
No related branches found
No related tags found
1 merge request!42fix(wot): cannot certify self
...@@ -260,22 +260,24 @@ pub mod pallet { ...@@ -260,22 +260,24 @@ pub mod pallet {
#[pallet::error] #[pallet::error]
pub enum Error<T, I = ()> { pub enum Error<T, I = ()> {
/// An identity cannot certify itself
CannotCertifySelf,
/// Certification non autorisée /// Certification non autorisée
CertNotAllowed, CertNotAllowed,
/// Issuer not found
IssuerNotFound,
/// An identity must receive certifications before it can issue them. /// An identity must receive certifications before it can issue them.
IdtyMustReceiveCertsBeforeCanIssue, IdtyMustReceiveCertsBeforeCanIssue,
/// This identity has already issued the maximum number of certifications /// This identity has already issued the maximum number of certifications
IssuedTooManyCert, IssuedTooManyCert,
/// Receiver not found /// Issuer not found
ReceiverNotFound, IssuerNotFound,
/// Not enough certifications received /// Not enough certifications received
NotEnoughCertReceived, NotEnoughCertReceived,
/// This certification has already been issued or renewed recently
NotRespectRenewablePeriod,
/// This identity has already issued a certification too recently /// This identity has already issued a certification too recently
NotRespectCertPeriod, NotRespectCertPeriod,
/// This certification has already been issued or renewed recently
NotRespectRenewablePeriod,
/// Receiver not found
ReceiverNotFound,
} }
#[pallet::hooks] #[pallet::hooks]
...@@ -339,6 +341,7 @@ pub mod pallet { ...@@ -339,6 +341,7 @@ pub mod pallet {
receiver: T::AccountId, receiver: T::AccountId,
) -> DispatchResultWithPostInfo { ) -> DispatchResultWithPostInfo {
let who = ensure_signed(origin)?; let who = ensure_signed(origin)?;
ensure!(who != receiver, Error::<T, I>::CannotCertifySelf);
let issuer = T::IdtyIndexOf::convert(who).ok_or(Error::<T, I>::IssuerNotFound)?; let issuer = T::IdtyIndexOf::convert(who).ok_or(Error::<T, I>::IssuerNotFound)?;
let receiver = let receiver =
T::IdtyIndexOf::convert(receiver).ok_or(Error::<T, I>::ReceiverNotFound)?; T::IdtyIndexOf::convert(receiver).ok_or(Error::<T, I>::ReceiverNotFound)?;
......
...@@ -36,6 +36,32 @@ fn test_must_receive_cert_before_can_issue() { ...@@ -36,6 +36,32 @@ fn test_must_receive_cert_before_can_issue() {
}); });
} }
#[test]
fn test_cannot_certify_self() {
new_test_ext(DefaultCertificationConfig {
apply_cert_period_at_genesis: true,
certs_by_issuer: btreemap![
1 => btreemap![
0 => 5,
],
2 => btreemap![
0 => 5,
],
3 => btreemap![
0 => 5,
],
],
})
.execute_with(|| {
run_to_block(2);
assert_eq!(
DefaultCertification::add_cert(Origin::signed(0), 0),
Err(Error::<Test, _>::CannotCertifySelf.into())
);
});
}
#[test] #[test]
fn test_genesis_build() { fn test_genesis_build() {
new_test_ext(DefaultCertificationConfig { new_test_ext(DefaultCertificationConfig {
......
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