-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change set moves the implementation of the noop version of MSP in common/mocks/msp/ as decided for all mocks. Change-Id: I411d50f1b869d84192dc3837ecd335036638e71e Signed-off-by: Alessandro Sorniotti <ale.linux@sopit.net>
- Loading branch information
Showing
8 changed files
with
90 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
Copyright IBM Corp. 2017 All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package msp | ||
|
||
import "testing" | ||
|
||
func TestNoopMSP(t *testing.T) { | ||
noopmsp := NewNoopMsp() | ||
|
||
id, err := noopmsp.GetDefaultSigningIdentity() | ||
if err != nil { | ||
t.Fatalf("GetSigningIdentity should have succeeded") | ||
return | ||
} | ||
|
||
serializedID, err := id.Serialize() | ||
if err != nil { | ||
t.Fatalf("Serialize should have succeeded") | ||
return | ||
} | ||
|
||
idBack, err := noopmsp.DeserializeIdentity(serializedID) | ||
if err != nil { | ||
t.Fatalf("DeserializeIdentity should have succeeded") | ||
return | ||
} | ||
|
||
msg := []byte("foo") | ||
sig, err := id.Sign(msg) | ||
if err != nil { | ||
t.Fatalf("Sign should have succeeded") | ||
return | ||
} | ||
|
||
err = id.Verify(msg, sig) | ||
if err != nil { | ||
t.Fatalf("The signature should be valid") | ||
return | ||
} | ||
|
||
err = idBack.Verify(msg, sig) | ||
if err != nil { | ||
t.Fatalf("The signature should be valid") | ||
return | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters