1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// Copyright 2021 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.
package linux
import (
"encoding/hex"
"os/exec"
"testing"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type TarFileMixin struct{}
func (m *TarFileMixin) UnpackTar(c *C, path string) string {
dir := c.MkDir()
cmd := exec.Command("tar", "-xaf", path, "-C", dir)
c.Assert(cmd.Run(), IsNil)
return dir
}
func DecodeHexString(c *C, s string) []byte {
x, err := hex.DecodeString(s)
c.Assert(err, IsNil)
return x
}
|