This repository has been archived on 2020-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
libricochet-go/utils/crypto_test.go

28 lines
591 B
Go
Raw Normal View History

2017-11-04 20:31:37 +00:00
package utils
import (
"math"
2018-01-12 18:04:20 +00:00
"testing"
2017-11-04 20:31:37 +00:00
)
func TestGeneratePrivateKey(t *testing.T) {
_, err := GeneratePrivateKey()
if err != nil {
t.Errorf("Error while generating private key: %v", err)
}
2017-11-04 20:31:37 +00:00
}
func TestLoadPrivateKey(t *testing.T) {
_, err := LoadPrivateKeyFromFile("../testing/private_key")
if err != nil {
t.Errorf("Error while loading private key from file: %v", err)
}
2017-11-04 20:31:37 +00:00
}
func TestGetRandNumber(t *testing.T) {
2018-01-12 18:04:20 +00:00
num := GetRandNumber()
if !num.IsUint64() || num.Uint64() > uint64(math.MaxUint32) {
t.Errorf("Error random number outside of expected bounds %v", num)
}
}