-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnpck_test.go
45 lines (33 loc) · 1.71 KB
/
npck_test.go
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
33
34
35
36
37
38
39
40
41
42
43
44
45
package npck
// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2023 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //
import (
"testing"
. "github.com/essentialkaos/check"
)
// ////////////////////////////////////////////////////////////////////////////////// //
func Test(t *testing.T) { TestingT(t) }
// ////////////////////////////////////////////////////////////////////////////////// //
type NPCKSuite struct {
Dir string
}
var _ = Suite(&NPCKSuite{})
// ////////////////////////////////////////////////////////////////////////////////// //
func (s *NPCKSuite) TestUnpack(c *C) {
c.Assert(Unpack(".testdata/data.txt.gz", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.txt.bz2", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.txt.xz", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.txt.zst", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.tar", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.tgz", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.tbz2", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.txz", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.tzst", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.zip", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.tar.gz", c.MkDir()), IsNil)
c.Assert(Unpack(".testdata/data.jpg", c.MkDir()), NotNil)
}