29 lines
652 B
Go
29 lines
652 B
Go
package vagrant
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer/tmp"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestVBoxProvider_impl(t *testing.T) {
|
|
var _ Provider = new(VBoxProvider)
|
|
}
|
|
|
|
func TestDecomressOVA(t *testing.T) {
|
|
td, err := tmp.Dir("pp-vagrant-virtualbox")
|
|
assert.NoError(t, err)
|
|
defer os.RemoveAll(td)
|
|
|
|
fixture := "../../common/test-fixtures/decompress-tar/outside_parent.tar"
|
|
err = DecompressOva(td, fixture)
|
|
assert.NoError(t, err)
|
|
_, err = os.Stat(filepath.Join(filepath.Base(td), "demo.poc"))
|
|
assert.Error(t, err)
|
|
_, err = os.Stat(filepath.Join(td, "demo.poc"))
|
|
assert.NoError(t, err)
|
|
}
|