mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 14:31:40 -04:00
* Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at https://hashi.co/license-faq, and details of the license at www.hashicorp.com/bsl. * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:generate packer-sdc mapstructure-to-hcl2 -type MockPostProcessor
|
|
package packer
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
)
|
|
|
|
// MockPostProcessor is an implementation of PostProcessor that can be
|
|
// used for tests.
|
|
type MockPostProcessor struct {
|
|
ArtifactId string
|
|
Keep bool
|
|
ForceOverride bool
|
|
Error error
|
|
|
|
ConfigureCalled bool
|
|
ConfigureConfigs []interface{}
|
|
ConfigureError error
|
|
|
|
PostProcessCalled bool
|
|
PostProcessArtifact packersdk.Artifact
|
|
PostProcessUi packersdk.Ui
|
|
}
|
|
|
|
func (t *MockPostProcessor) ConfigSpec() hcldec.ObjectSpec { return t.FlatMapstructure().HCL2Spec() }
|
|
|
|
func (t *MockPostProcessor) Configure(configs ...interface{}) error {
|
|
t.ConfigureCalled = true
|
|
t.ConfigureConfigs = configs
|
|
return t.ConfigureError
|
|
}
|
|
|
|
func (t *MockPostProcessor) PostProcess(ctx context.Context, ui packersdk.Ui, a packersdk.Artifact) (packersdk.Artifact, bool, bool, error) {
|
|
t.PostProcessCalled = true
|
|
t.PostProcessArtifact = a
|
|
t.PostProcessUi = ui
|
|
|
|
return &packersdk.MockArtifact{
|
|
IdValue: t.ArtifactId,
|
|
}, t.Keep, t.ForceOverride, t.Error
|
|
}
|