You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/packer_test/plugin_tester/datasource/dynamic/data_acc_test.go

66 lines
1.6 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package dynamic
import (
_ "embed"
"fmt"
"io/ioutil"
"os"
"os/exec"
"regexp"
"testing"
"github.com/hashicorp/packer-plugin-sdk/acctest"
)
//go:embed test-fixtures/template.pkr.hcl
var testDatasourceHCL2Basic string
// Run with: PACKER_ACC=1 go test -count 1 -v ./datasource/scaffolding/data_acc_test.go -timeout=120m
func TestAccScaffoldingDatasource(t *testing.T) {
testCase := &acctest.PluginTestCase{
Name: "scaffolding_datasource_basic_test",
Setup: func() error {
return nil
},
Teardown: func() error {
return nil
},
Template: testDatasourceHCL2Basic,
Type: "scaffolding-my-datasource",
Check: func(buildCommand *exec.Cmd, logfile string) error {
if buildCommand.ProcessState != nil {
if buildCommand.ProcessState.ExitCode() != 0 {
return fmt.Errorf("Bad exit code. Logfile: %s", logfile)
}
}
logs, err := os.Open(logfile)
if err != nil {
return fmt.Errorf("Unable find %s", logfile)
}
defer logs.Close()
logsBytes, err := ioutil.ReadAll(logs)
if err != nil {
return fmt.Errorf("Unable to read %s", logfile)
}
logsString := string(logsBytes)
fooLog := "null.basic-example: foo: foo-value"
barLog := "null.basic-example: bar: bar-value"
if matched, _ := regexp.MatchString(fooLog+".*", logsString); !matched {
t.Fatalf("logs doesn't contain expected foo value %q", logsString)
}
if matched, _ := regexp.MatchString(barLog+".*", logsString); !matched {
t.Fatalf("logs doesn't contain expected bar value %q", logsString)
}
return nil
},
}
acctest.TestPlugin(t, testCase)
}