This repository has been archived by the owner on Mar 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
doit_test.go
81 lines (73 loc) · 2.03 KB
/
doit_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
Copyright 2016 The Doctl Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package doit
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Exit(m.Run())
}
func TestVersion(t *testing.T) {
slr1 := &stubLatestRelease{version: "0.1.0"}
slr2 := &stubLatestRelease{version: "1.0.0"}
cases := []struct {
v Version
s string
ver string
slr LatestVersioner
}{
// version with no label
{
v: Version{Major: 0, Minor: 1, Patch: 2},
s: `doctl version 0.1.2`,
ver: "0.1.2",
slr: slr1,
},
// version with label
{
v: Version{Major: 0, Minor: 1, Patch: 2, Label: "dev"},
s: `doctl version 0.1.2-dev`,
ver: "0.1.2-dev",
slr: slr1,
},
// version with label and build
{
v: Version{Major: 0, Minor: 1, Patch: 2, Label: "dev", Build: "12345"},
s: "doctl version 0.1.2-dev\nGit commit hash: 12345",
ver: "0.1.2-dev",
slr: slr1,
},
// version with no label and higher released version
{
v: Version{Major: 0, Minor: 1, Patch: 2},
s: "doctl version 0.1.2\n\"1.0.0\" is a newer release than \"0.1.2\"",
ver: `0.1.2`,
slr: slr2,
},
}
for _, c := range cases {
if got, want := c.v.String(), c.ver; got != want {
t.Errorf("version string for %#v = %q; want = %q", c.v, got, want)
}
if got, want := c.v.Complete(c.slr), c.s; got != want {
t.Errorf("complete version string for %#v = %q; want = %q", c.v, got, want)
}
}
}
type stubLatestRelease struct {
version string
}
func (slr stubLatestRelease) LatestVersion() (string, error) {
return slr.version, nil
}