aboutsummaryrefslogtreecommitdiff
path: root/config_test.go
blob: ab1bb2d95adbf942b3e818651d3fc9ec7919294c (plain) (blame)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package main

import (
	"fmt"
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

func TestParse(t *testing.T) {
	path, clean := TempFile(t, `

url: google.golang.org
packages:
  grpc:
    repo: github.com/grpc/grpc-go

`)
	defer clean()

	config, err := Parse(path)
	assert.NoError(t, err)

	assert.Equal(t, config.Godoc.Host, "godoc.org")
	assert.Equal(t, config.URL, "google.golang.org")

	pkg, ok := config.Packages["grpc"]
	assert.True(t, ok)

	assert.Equal(t, pkg, Package{Repo: "github.com/grpc/grpc-go"})
}

func TestParseGodocServer(t *testing.T) {
	tests := []struct {
		give string
		want string
	}{
		{"example.com", "example.com"},
		{"example.com/", "example.com"},
		{"http://example.com/", "example.com"},
		{"https://example.com/", "example.com"},
	}

	for _, tt := range tests {
		t.Run(tt.give, func(t *testing.T) {
			path, clean := TempFile(t, fmt.Sprintf(`
godoc:
  host: %q
url: google.golang.org
packages:
  grpc:
    repo: github.com/grpc/grpc-go
`, tt.give))
			defer clean()

			config, err := Parse(path)
			require.NoError(t, err)

			assert.Equal(t, tt.want, config.Godoc.Host)
			assert.Equal(t, "google.golang.org", config.URL)

			pkg, ok := config.Packages["grpc"]
			assert.True(t, ok)
			assert.Equal(t, Package{Repo: "github.com/grpc/grpc-go"}, pkg)
		})
	}
}

func TestNotAlphabetical(t *testing.T) {
	path, clean := TempFile(t, `

url: google.golang.org
packages:
  grpc:
    repo: github.com/grpc/grpc-go
  atomic:
    repo: github.com/uber-go/atomic

`)
	defer clean()

	_, err := Parse(path)
	if assert.Error(t, err, "YAML configuration is not listed alphabetically") {
		assert.Contains(t, err.Error(), "must be alphabetically ordered")
	}
}