mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 16:31:10 -06:00
cb2e9119aa
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
41 lines
801 B
Go
41 lines
801 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/go-plugin"
|
|
"github.com/opentofu/opentofu/internal/tofu"
|
|
)
|
|
|
|
func TestUIOutput_impl(t *testing.T) {
|
|
var _ tofu.UIOutput = new(UIOutput)
|
|
}
|
|
|
|
func TestUIOutput_input(t *testing.T) {
|
|
client, server := plugin.TestRPCConn(t)
|
|
defer client.Close()
|
|
|
|
o := new(tofu.MockUIOutput)
|
|
|
|
err := server.RegisterName("Plugin", &UIOutputServer{
|
|
UIOutput: o,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
output := &UIOutput{Client: client}
|
|
output.Output("foo")
|
|
if !o.OutputCalled {
|
|
t.Fatal("output should be called")
|
|
}
|
|
if o.OutputMessage != "foo" {
|
|
t.Fatalf("bad: %#v", o.OutputMessage)
|
|
}
|
|
}
|