oh-my-posh/src/segment_terraform_test.go
Jan De Dobbeleer f7a07c6b62 refactor(segments): string() to template()
moves templating engine to Segment
2022-02-03 10:44:18 +01:00

65 lines
1.4 KiB
Go

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
type terraformArgs struct {
hasTfCommand bool
hasTfFolder bool
workspaceName string
}
func bootStrapTerraformTest(args *terraformArgs) *terraform {
env := new(MockedEnvironment)
env.On("HasCommand", "terraform").Return(args.hasTfCommand)
env.On("HasFolder", "/.terraform").Return(args.hasTfFolder)
env.On("Pwd").Return("")
env.On("RunCommand", "terraform", []string{"workspace", "show"}).Return(args.workspaceName, nil)
k := &terraform{
env: env,
props: properties{},
}
return k
}
func TestTerraformWriterDisabled(t *testing.T) {
args := &terraformArgs{
hasTfCommand: false,
hasTfFolder: false,
}
terraform := bootStrapTerraformTest(args)
assert.False(t, terraform.enabled())
}
func TestTerraformMissingDir(t *testing.T) {
args := &terraformArgs{
hasTfCommand: true,
hasTfFolder: false,
}
terraform := bootStrapTerraformTest(args)
assert.False(t, terraform.enabled())
}
func TestTerraformMissingBinary(t *testing.T) {
args := &terraformArgs{
hasTfCommand: false,
hasTfFolder: true,
}
terraform := bootStrapTerraformTest(args)
assert.False(t, terraform.enabled())
}
func TestTerraformEnabled(t *testing.T) {
expected := "default"
args := &terraformArgs{
hasTfCommand: true,
hasTfFolder: true,
workspaceName: expected,
}
terraform := bootStrapTerraformTest(args)
assert.True(t, terraform.enabled())
}