mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 15:01: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>
82 lines
1.6 KiB
Go
82 lines
1.6 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package file
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
builderT "github.com/hashicorp/packer/acctest"
|
|
)
|
|
|
|
func TestBuilder_implBuilder(t *testing.T) {
|
|
var _ packersdk.Builder = new(Builder)
|
|
}
|
|
|
|
func TestBuilderFileAcc_content(t *testing.T) {
|
|
builderT.Test(t, builderT.TestCase{
|
|
Builder: &Builder{},
|
|
Template: fileContentTest,
|
|
Check: checkContent,
|
|
})
|
|
}
|
|
|
|
func TestBuilderFileAcc_copy(t *testing.T) {
|
|
builderT.Test(t, builderT.TestCase{
|
|
Builder: &Builder{},
|
|
Template: fileCopyTest,
|
|
Check: checkCopy,
|
|
})
|
|
}
|
|
|
|
func checkContent(artifacts []packersdk.Artifact) error {
|
|
content, err := ioutil.ReadFile("contentTest.txt")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
contentString := string(content)
|
|
if contentString != "hello world!" {
|
|
return fmt.Errorf("Unexpected file contents: %s", contentString)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkCopy(artifacts []packersdk.Artifact) error {
|
|
content, err := ioutil.ReadFile("copyTest.txt")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
contentString := string(content)
|
|
if contentString != "Hello world.\n" {
|
|
return fmt.Errorf("Unexpected file contents: %s", contentString)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
const fileContentTest = `
|
|
{
|
|
"builders": [
|
|
{
|
|
"type":"test",
|
|
"target":"contentTest.txt",
|
|
"content":"hello world!"
|
|
}
|
|
]
|
|
}
|
|
`
|
|
|
|
const fileCopyTest = `
|
|
{
|
|
"builders": [
|
|
{
|
|
"type":"test",
|
|
"target":"copyTest.txt",
|
|
"source":"test-fixtures/artifact.txt"
|
|
}
|
|
]
|
|
}
|
|
`
|