File: config_test.go

package info (click to toggle)
golang-github-mmcloughlin-avo 0.0~git20200523.4439b6b-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,304 kB
  • sloc: xml: 71,029; asm: 13,138; sh: 179; makefile: 35
file content (63 lines) | stat: -rw-r--r-- 1,158 bytes parent folder | download
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
61
62
63
package thirdparty

import (
	"strings"
	"testing"
)

func TestPackageName(t *testing.T) {
	p := Package{ImportPath: "github.com/username/repo"}
	if p.Name() != "repo" {
		t.Fail()
	}
}

func TestPackageCloneURL(t *testing.T) {
	p := Package{ImportPath: "github.com/username/repo"}
	if p.CloneURL() != "https://github.com/username/repo.git" {
		t.Fail()
	}
}

func TestPackagesTestPath(t *testing.T) {
	p := Package{}
	if p.TestPath() != "./..." {
		t.Fail()
	}

	p.Test = "./sub"
	if p.TestPath() != "./sub" {
		t.Fail()
	}
}

func TestLoadPackages(t *testing.T) {
	r := strings.NewReader(`[{"unknown_field": "value"}]`)
	_, err := LoadPackages(r)
	if err == nil {
		t.Fatal("expected non-nil error")
	}
}

func TestLoadPackagesFile(t *testing.T) {
	pkgs, err := LoadPackagesFile("packages.json")
	if err != nil {
		t.Fatal(err)
	}
	for _, pkg := range pkgs {
		t.Log(pkg.ImportPath)
	}
	if len(pkgs) == 0 {
		t.Fatal("no packages loaded")
	}
}

func TestLoadPackagesFileNotExist(t *testing.T) {
	pkgs, err := LoadPackagesFile("does_not_exist")
	if pkgs != nil {
		t.Fatal("expected nil return")
	}
	if err == nil {
		t.Fatal("expected non-nil error")
	}
}