35 lines
630 B
Go
35 lines
630 B
Go
|
package linode
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
builderT "github.com/hashicorp/packer/helper/builder/testing"
|
||
|
)
|
||
|
|
||
|
func TestBuilderAcc_basic(t *testing.T) {
|
||
|
builderT.Test(t, builderT.TestCase{
|
||
|
PreCheck: func() { testAccPreCheck(t) },
|
||
|
Builder: &Builder{},
|
||
|
Template: testBuilderAccBasic,
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func testAccPreCheck(t *testing.T) {
|
||
|
if v := os.Getenv("LINODE_TOKEN"); v == "" {
|
||
|
t.Fatal("LINODE_TOKEN must be set for acceptance tests")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const testBuilderAccBasic = `
|
||
|
{
|
||
|
"builders": [{
|
||
|
"type": "test",
|
||
|
"region": "us-east",
|
||
|
"instance_type": "g6-nanode-1",
|
||
|
"image": "linode/alpine3.9",
|
||
|
"ssh_username": "root"
|
||
|
}]
|
||
|
}
|
||
|
`
|