-
Notifications
You must be signed in to change notification settings - Fork 22
/
apk_info_test.go
60 lines (53 loc) · 1.3 KB
/
apk_info_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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
import (
"io/ioutil"
"os"
"path"
"reflect"
"testing"
"github.com/bitrise-io/go-utils/command/git"
"github.com/bitrise-io/go-utils/log"
)
func Test_parseAPKextractNativeLibs(t *testing.T) {
tmpDir, err := ioutil.TempDir("", "")
if err != nil {
t.Fatalf("setup: failed to create temp dir, error: %s", err)
}
defer func() {
if err := os.RemoveAll(tmpDir); err != nil {
log.Warnf("failed to remove temp dir, error: %s", err)
}
}()
gitCommand, err := git.New(tmpDir)
if err != nil {
t.Fatalf("setup: failed to create git project, error: %s", err)
}
if err := gitCommand.Clone("https://github.com/bitrise-io/sample-artifacts.git").Run(); err != nil {
t.Fatalf("setup: failed to clone test artifact repo, error: %s", err)
}
tests := []struct {
name string
apkPath string
want bool
wantErr bool
}{
{
name: "",
apkPath: path.Join(tmpDir, "apks", "app-debug.apk"),
want: false,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := parseAPKextractNativeLibs(tt.apkPath)
if (err != nil) != tt.wantErr {
t.Errorf("parseAPKInfo() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("parseAPKInfo() = %+v, want %+v", got, tt.want)
}
})
}
}