2021-02-22 17:38:39 +01:00
|
|
|
package views
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2021-05-17 21:07:38 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/command/arguments"
|
2021-06-24 23:53:43 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/lang/marks"
|
2021-05-17 21:43:35 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/states"
|
2021-02-22 17:38:39 +01:00
|
|
|
"github.com/hashicorp/terraform/internal/terminal"
|
|
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Ensure that the correct view type and in-automation settings propagate to the
|
|
|
|
// Operation view.
|
|
|
|
func TestRefreshHuman_operation(t *testing.T) {
|
|
|
|
streams, done := terminal.StreamsForTesting(t)
|
|
|
|
defer done(t)
|
2021-05-10 19:20:43 +02:00
|
|
|
v := NewRefresh(arguments.ViewHuman, NewView(streams).SetRunningInAutomation(true)).Operation()
|
2021-02-22 17:38:39 +01:00
|
|
|
if hv, ok := v.(*OperationHuman); !ok {
|
|
|
|
t.Fatalf("unexpected return type %t", v)
|
|
|
|
} else if hv.inAutomation != true {
|
|
|
|
t.Fatalf("unexpected inAutomation value on Operation view")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify that Hooks includes a UI hook
|
|
|
|
func TestRefreshHuman_hooks(t *testing.T) {
|
|
|
|
streams, done := terminal.StreamsForTesting(t)
|
|
|
|
defer done(t)
|
2021-05-10 19:20:43 +02:00
|
|
|
v := NewRefresh(arguments.ViewHuman, NewView(streams).SetRunningInAutomation(true))
|
2021-02-22 17:38:39 +01:00
|
|
|
hooks := v.Hooks()
|
|
|
|
|
|
|
|
var uiHook *UiHook
|
|
|
|
for _, hook := range hooks {
|
|
|
|
if ch, ok := hook.(*UiHook); ok {
|
|
|
|
uiHook = ch
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if uiHook == nil {
|
|
|
|
t.Fatalf("expected Hooks to include a UiHook: %#v", hooks)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basic test coverage of Outputs, since most of its functionality is tested
|
|
|
|
// elsewhere.
|
|
|
|
func TestRefreshHuman_outputs(t *testing.T) {
|
|
|
|
streams, done := terminal.StreamsForTesting(t)
|
2021-05-10 19:20:43 +02:00
|
|
|
v := NewRefresh(arguments.ViewHuman, NewView(streams))
|
2021-02-22 17:38:39 +01:00
|
|
|
|
|
|
|
v.Outputs(map[string]*states.OutputValue{
|
|
|
|
"foo": {Value: cty.StringVal("secret")},
|
|
|
|
})
|
|
|
|
|
|
|
|
got := done(t).Stdout()
|
|
|
|
for _, want := range []string{"Outputs:", `foo = "secret"`} {
|
|
|
|
if !strings.Contains(got, want) {
|
|
|
|
t.Errorf("wrong result\ngot: %q\nwant: %q", got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Outputs should do nothing if there are no outputs to render.
|
|
|
|
func TestRefreshHuman_outputsEmpty(t *testing.T) {
|
|
|
|
streams, done := terminal.StreamsForTesting(t)
|
2021-05-10 19:20:43 +02:00
|
|
|
v := NewRefresh(arguments.ViewHuman, NewView(streams))
|
2021-02-22 17:38:39 +01:00
|
|
|
|
|
|
|
v.Outputs(map[string]*states.OutputValue{})
|
|
|
|
|
|
|
|
got := done(t).Stdout()
|
|
|
|
if got != "" {
|
|
|
|
t.Errorf("output should be empty, but got: %q", got)
|
|
|
|
}
|
|
|
|
}
|
2021-02-23 16:16:09 +01:00
|
|
|
|
|
|
|
// Basic test coverage of Outputs, since most of its functionality is tested
|
|
|
|
// elsewhere.
|
|
|
|
func TestRefreshJSON_outputs(t *testing.T) {
|
|
|
|
streams, done := terminal.StreamsForTesting(t)
|
2021-05-10 19:20:43 +02:00
|
|
|
v := NewRefresh(arguments.ViewJSON, NewView(streams))
|
2021-02-23 16:16:09 +01:00
|
|
|
|
|
|
|
v.Outputs(map[string]*states.OutputValue{
|
|
|
|
"boop_count": {Value: cty.NumberIntVal(92)},
|
2021-06-24 23:53:43 +02:00
|
|
|
"password": {Value: cty.StringVal("horse-battery").Mark(marks.Sensitive), Sensitive: true},
|
2021-02-23 16:16:09 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
want := []map[string]interface{}{
|
|
|
|
{
|
|
|
|
"@level": "info",
|
|
|
|
"@message": "Outputs: 2",
|
|
|
|
"@module": "terraform.ui",
|
|
|
|
"type": "outputs",
|
|
|
|
"outputs": map[string]interface{}{
|
|
|
|
"boop_count": map[string]interface{}{
|
|
|
|
"sensitive": false,
|
|
|
|
"value": float64(92),
|
|
|
|
"type": "number",
|
|
|
|
},
|
|
|
|
"password": map[string]interface{}{
|
|
|
|
"sensitive": true,
|
|
|
|
"value": "horse-battery",
|
|
|
|
"type": "string",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
testJSONViewOutputEquals(t, done(t).Stdout(), want)
|
|
|
|
}
|