Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Commits
11cb408c
Verified
Commit
11cb408c
authored
2 years ago
by
Pascal Engélibert
Browse files
Options
Downloads
Patches
Plain Diff
fix(certification): cannot certify self
parent
de164469
No related branches found
No related tags found
1 merge request
!42
fix(wot): cannot certify self
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pallets/certification/src/lib.rs
+9
-6
9 additions, 6 deletions
pallets/certification/src/lib.rs
pallets/certification/src/tests.rs
+26
-0
26 additions, 0 deletions
pallets/certification/src/tests.rs
with
35 additions
and
6 deletions
pallets/certification/src/lib.rs
+
9
−
6
View file @
11cb408c
...
@@ -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
,
///
Receiv
er not found
///
Issu
er not found
Receiv
erNotFound
,
Issu
erNotFound
,
/// 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
)
?
;
...
...
This diff is collapsed.
Click to expand it.
pallets/certification/src/tests.rs
+
26
−
0
View file @
11cb408c
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment