mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
26e9c67a00
Decouples cloud provider metadata packages from kubernetes related code Signed-off-by: Malte Poll <mp@edgeless.systems>
55 lines
960 B
Go
55 lines
960 B
Go
package gcp
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/spf13/afero"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestWriteGCEConf(t *testing.T) {
|
|
config := "someConfig"
|
|
|
|
testCases := map[string]struct {
|
|
fs afero.Afero
|
|
wantValue string
|
|
wantErr bool
|
|
}{
|
|
"write works": {
|
|
fs: afero.Afero{
|
|
Fs: afero.NewMemMapFs(),
|
|
},
|
|
wantValue: config,
|
|
wantErr: false,
|
|
},
|
|
"write fails": {
|
|
fs: afero.Afero{
|
|
Fs: afero.NewReadOnlyFs(afero.NewMemMapFs()),
|
|
},
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
require := require.New(t)
|
|
|
|
writer := Writer{
|
|
fs: tc.fs,
|
|
}
|
|
err := writer.WriteGCEConf(config)
|
|
|
|
if tc.wantErr {
|
|
assert.Error(err)
|
|
return
|
|
}
|
|
require.NoError(err)
|
|
value, err := tc.fs.ReadFile("/etc/gce.conf")
|
|
assert.NoError(err)
|
|
assert.Equal(tc.wantValue, string(value))
|
|
})
|
|
}
|
|
}
|