84 lines
1.5 KiB
Go
84 lines
1.5 KiB
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/config"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
"github.com/mitchellh/cli"
|
||
|
)
|
||
|
|
||
|
func TestShow(t *testing.T) {
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &ShowCommand{
|
||
|
ContextOpts: testCtxConfig(testProvider()),
|
||
|
Ui: ui,
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
"bad",
|
||
|
"bad",
|
||
|
}
|
||
|
if code := c.Run(args); code != 1 {
|
||
|
t.Fatalf("bad: \n%s", ui.OutputWriter.String())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestShow_noArgs(t *testing.T) {
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &ShowCommand{
|
||
|
ContextOpts: testCtxConfig(testProvider()),
|
||
|
Ui: ui,
|
||
|
}
|
||
|
|
||
|
args := []string{}
|
||
|
if code := c.Run(args); code != 1 {
|
||
|
t.Fatalf("bad: \n%s", ui.OutputWriter.String())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestShow_plan(t *testing.T) {
|
||
|
planPath := testPlanFile(t, &terraform.Plan{
|
||
|
Config: new(config.Config),
|
||
|
})
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &ShowCommand{
|
||
|
ContextOpts: testCtxConfig(testProvider()),
|
||
|
Ui: ui,
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
planPath,
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: \n%s", ui.ErrorWriter.String())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestShow_state(t *testing.T) {
|
||
|
originalState := &terraform.State{
|
||
|
Resources: map[string]*terraform.ResourceState{
|
||
|
"test_instance.foo": &terraform.ResourceState{
|
||
|
ID: "bar",
|
||
|
Type: "test_instance",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
statePath := testStateFile(t, originalState)
|
||
|
|
||
|
ui := new(cli.MockUi)
|
||
|
c := &ShowCommand{
|
||
|
ContextOpts: testCtxConfig(testProvider()),
|
||
|
Ui: ui,
|
||
|
}
|
||
|
|
||
|
args := []string{
|
||
|
statePath,
|
||
|
}
|
||
|
if code := c.Run(args); code != 0 {
|
||
|
t.Fatalf("bad: \n%s", ui.ErrorWriter.String())
|
||
|
}
|
||
|
}
|