2022-03-22 16:03:15 +01:00
|
|
|
package gcp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-03-29 13:26:27 +02:00
|
|
|
"github.com/edgelesssys/constellation/coordinator/core"
|
2022-03-22 16:03:15 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestTrivialAutoscalerFunctions(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
autoscaler := Autoscaler{}
|
|
|
|
|
|
|
|
assert.NotEmpty(autoscaler.Name())
|
2022-03-29 13:26:27 +02:00
|
|
|
assert.Empty(autoscaler.Secrets(core.Instance{}, ""))
|
|
|
|
assert.NotEmpty(autoscaler.Volumes())
|
|
|
|
assert.NotEmpty(autoscaler.VolumeMounts())
|
|
|
|
assert.NotEmpty(autoscaler.Env())
|
2022-03-22 16:03:15 +01:00
|
|
|
assert.True(autoscaler.Supported())
|
|
|
|
}
|