packer/packer_test/plugin_tests/gob_test_suite.go
hashicorp-copywrite[bot] abc4bfffce
Merge pull request #13632 from hashicorp/compliance/add-headers
[COMPLIANCE] Add/Update Copyright Headers
2026-06-03 14:37:46 +05:30

41 lines
1.2 KiB
Go

// Copyright IBM Corp. 2024, 2026
// SPDX-License-Identifier: BUSL-1.1
package plugin_tests
import (
"testing"
"github.com/hashicorp/packer/packer_test/common"
"github.com/stretchr/testify/suite"
)
type PackerGobTestSuite struct {
*common.PackerTestSuite
}
func Test_PackerGobPBSuite(t *testing.T) {
baseSuite, cleanup := common.InitBaseSuite(t)
defer cleanup()
ts := &PackerGobTestSuite{
baseSuite,
}
var compilationJobs []chan common.CompilationResult
// Build two versions of each plugin, one with gob only, one with protobuf only
//
// We'll install them manually in tests, as they'll need to be installed as
// different plugin sources in order for discovery to trigger the
// gob-only/pb-supported behaviours we want to test.
compilationJobs = append(compilationJobs, ts.CompilePlugin("1.1.0+pb", common.UseDependency(common.SDKModule, "v0.6.0")))
compilationJobs = append(compilationJobs, ts.CompilePlugin("1.0.0+pb", common.UseDependency(common.SDKModule, "v0.6.0")))
compilationJobs = append(compilationJobs, ts.CompilePlugin("1.0.0+gob"))
compilationJobs = append(compilationJobs, ts.CompilePlugin("1.1.0+gob"))
common.Ready(t, compilationJobs)
suite.Run(t, ts)
}