mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 00:11:41 -04:00
66 lines
1.6 KiB
Go
66 lines
1.6 KiB
Go
// 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)
|
|
}
|