a155654a44
1. Add the libraries needed to do arbitrary https 2. Update the main protocol to HTTPS and WSS 3. Moved the UI conf file to the etc dir in the tree Fixes 54 Change-Id: I142366f053e73fb413291af458c8b5dcb9ab388a
47 lines
1.2 KiB
Go
Executable File
47 lines
1.2 KiB
Go
Executable File
/*
|
|
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
|
|
|
|
https://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 cryptography
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGeneratePrivateKey(t *testing.T) {
|
|
pem, key, err := GeneratePrivateKey()
|
|
require.NoError(t, err)
|
|
require.NotNil(t, key)
|
|
require.NotNil(t, pem)
|
|
}
|
|
|
|
func TestGeneratePublicKey(t *testing.T) {
|
|
_, privateKey, err := GeneratePrivateKey()
|
|
require.NoError(t, err)
|
|
|
|
cert, err := GeneratePublicKey(privateKey)
|
|
require.NoError(t, err)
|
|
require.NotNil(t, cert)
|
|
}
|
|
|
|
func TestTestCertValidity(t *testing.T) {
|
|
_, privateKey, err := GeneratePrivateKey()
|
|
require.NoError(t, err)
|
|
|
|
cert, err := GeneratePublicKey(privateKey)
|
|
require.NoError(t, err)
|
|
require.NotNil(t, cert)
|
|
}
|