2022-04-11 04:35:17 -04:00
|
|
|
package nodestate
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/edgelesssys/constellation/cli/file"
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/role"
|
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFromFile(t *testing.T) {
|
|
|
|
testCases := map[string]struct {
|
2022-04-26 10:54:05 -04:00
|
|
|
fileContents string
|
|
|
|
wantState *NodeState
|
|
|
|
wantErr bool
|
2022-04-11 04:35:17 -04:00
|
|
|
}{
|
|
|
|
"nodestate exists": {
|
2022-04-13 03:18:32 -04:00
|
|
|
fileContents: `{ "Role": "Coordinator", "VPNPrivKey": "dGVzdA==", "OwnerID": "T3duZXJJRA==", "ClusterID": "Q2x1c3RlcklE" }`,
|
2022-04-26 10:54:05 -04:00
|
|
|
wantState: &NodeState{
|
2022-04-11 04:35:17 -04:00
|
|
|
Role: role.Coordinator,
|
|
|
|
VPNPrivKey: []byte("test"),
|
2022-04-13 03:18:32 -04:00
|
|
|
OwnerID: []byte("OwnerID"),
|
|
|
|
ClusterID: []byte("ClusterID"),
|
2022-04-11 04:35:17 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"nodestate file does not exist": {
|
2022-04-26 10:54:05 -04:00
|
|
|
wantErr: true,
|
2022-04-11 04:35:17 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
fs := afero.NewMemMapFs()
|
|
|
|
if tc.fileContents != "" {
|
|
|
|
require.NoError(fs.MkdirAll(filepath.Dir(nodeStatePath), 0o755))
|
|
|
|
require.NoError(afero.WriteFile(fs, nodeStatePath, []byte(tc.fileContents), 0o644))
|
|
|
|
}
|
|
|
|
fileHandler := file.NewHandler(fs)
|
|
|
|
state, err := FromFile(fileHandler)
|
2022-04-26 10:54:05 -04:00
|
|
|
if tc.wantErr {
|
2022-04-11 04:35:17 -04:00
|
|
|
assert.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
require.NoError(err)
|
2022-04-26 10:54:05 -04:00
|
|
|
assert.Equal(tc.wantState, state)
|
2022-04-11 04:35:17 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestToFile(t *testing.T) {
|
|
|
|
testCases := map[string]struct {
|
|
|
|
precreateFile bool
|
|
|
|
state *NodeState
|
2022-04-26 10:54:05 -04:00
|
|
|
wantFile string
|
|
|
|
wantErr bool
|
2022-04-11 04:35:17 -04:00
|
|
|
}{
|
|
|
|
"writing works": {
|
|
|
|
state: &NodeState{
|
|
|
|
Role: role.Coordinator,
|
|
|
|
VPNPrivKey: []byte("test"),
|
2022-04-13 03:18:32 -04:00
|
|
|
OwnerID: []byte("OwnerID"),
|
|
|
|
ClusterID: []byte("ClusterID"),
|
2022-04-11 04:35:17 -04:00
|
|
|
},
|
2022-04-26 10:54:05 -04:00
|
|
|
wantFile: `{
|
2022-04-11 04:35:17 -04:00
|
|
|
"Role": "Coordinator",
|
2022-04-13 03:18:32 -04:00
|
|
|
"VPNPrivKey": "dGVzdA==",
|
|
|
|
"OwnerID": "T3duZXJJRA==",
|
|
|
|
"ClusterID": "Q2x1c3RlcklE"
|
2022-04-11 04:35:17 -04:00
|
|
|
}`,
|
|
|
|
},
|
|
|
|
"file exists already": {
|
|
|
|
precreateFile: true,
|
2022-04-26 10:54:05 -04:00
|
|
|
wantErr: true,
|
2022-04-11 04:35:17 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
fs := afero.NewMemMapFs()
|
|
|
|
if tc.precreateFile {
|
2022-04-13 03:18:32 -04:00
|
|
|
require.NoError(fs.MkdirAll(filepath.Dir(nodeStatePath), 0o755))
|
2022-04-11 04:35:17 -04:00
|
|
|
require.NoError(afero.WriteFile(fs, nodeStatePath, []byte("pre-existing"), 0o644))
|
|
|
|
}
|
|
|
|
fileHandler := file.NewHandler(fs)
|
|
|
|
err := tc.state.ToFile(fileHandler)
|
2022-04-26 10:54:05 -04:00
|
|
|
if tc.wantErr {
|
2022-04-11 04:35:17 -04:00
|
|
|
assert.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
require.NoError(err)
|
|
|
|
|
|
|
|
fileContents, err := afero.ReadFile(fs, nodeStatePath)
|
|
|
|
require.NoError(err)
|
2022-04-26 10:54:05 -04:00
|
|
|
assert.Equal(tc.wantFile, string(fileContents))
|
2022-04-11 04:35:17 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|