mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
2d8fcd9bf4
Co-authored-by: Malte Poll <mp@edgeless.systems> Co-authored-by: katexochen <katexochen@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: Thomas Tendyck <tt@edgeless.systems> Co-authored-by: Benedict Schlueter <bs@edgeless.systems> Co-authored-by: leongross <leon.gross@rub.de> Co-authored-by: Moritz Eckert <m1gh7ym0@gmail.com>
55 lines
988 B
Go
55 lines
988 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
|
|
expectedValue string
|
|
expectErr bool
|
|
}{
|
|
"write works": {
|
|
fs: afero.Afero{
|
|
Fs: afero.NewMemMapFs(),
|
|
},
|
|
expectedValue: config,
|
|
expectErr: false,
|
|
},
|
|
"write fails": {
|
|
fs: afero.Afero{
|
|
Fs: afero.NewReadOnlyFs(afero.NewMemMapFs()),
|
|
},
|
|
expectErr: 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.expectErr {
|
|
assert.Error(err)
|
|
return
|
|
}
|
|
require.NoError(err)
|
|
value, err := tc.fs.ReadFile("/etc/gce.conf")
|
|
assert.NoError(err)
|
|
assert.Equal(tc.expectedValue, string(value))
|
|
})
|
|
}
|
|
}
|