-
Notifications
You must be signed in to change notification settings - Fork 14
/
vagrant_test.go
262 lines (211 loc) · 4.72 KB
/
vagrant_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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package vagrantutil
import (
"fmt"
"log"
"os"
"testing"
"github.com/hashicorp/go-version"
"github.com/koding/logging"
)
const testVagrantFile = `# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.hostname = "vagrant"
config.vm.provider "virtualbox" do |vb|
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "1024", "--cpus", "1"]
end
end
`
var (
vg *Vagrant
vagrantName = "vagrantTest"
)
func TestMain(m *testing.M) {
var err error
vg, err = NewVagrant(vagrantName)
if err != nil {
log.Fatalln(err)
}
vg.Log = logging.NewLogger("vagrantutil_test")
vg.Log.SetLevel(logging.DEBUG)
h := logging.NewWriterHandler(os.Stderr)
h.SetLevel(logging.DEBUG)
vg.Log.SetHandler(h)
ret := m.Run()
os.RemoveAll(vagrantName)
os.Exit(ret)
}
func TestVersion(t *testing.T) {
out, err := vg.Version()
if err != nil {
t.Fatal(err)
}
// check if the output is correct
_, err = version.NewVersion(out)
if err != nil {
t.Error(err)
}
}
func TestBoxAddRemove(t *testing.T) {
box := &Box{
Name: "rjeczalik/dummy",
Version: "1.0.0",
}
vg.BoxRemove(box) // remove if already exists
out, err := vg.BoxAdd(box)
if err != nil {
t.Fatal(err)
}
testOutput(t, "vagrant box add", out)
if err = Wait(vg.BoxAdd(box)); err != ErrBoxAlreadyExists {
t.Errorf("want err=%v, got %v", ErrBoxAlreadyExists, err)
}
badBox := &Box{
Name: "rjeczalik/dummy",
Version: ".abc",
}
if err = Wait(vg.BoxAdd(badBox)); err != ErrBoxInvalidVersion {
t.Errorf("want err=%v, git %v", ErrBoxInvalidVersion, err)
}
badBox = &Box{
Name: "rjeczalik/nonexisting",
Version: "1.0.0",
}
if err = Wait(vg.BoxAdd(badBox)); err != ErrBoxNotAvailable {
t.Errorf("want err=%v, git %v", ErrBoxNotAvailable, err)
}
out, err = vg.BoxRemove(box)
if err != nil {
t.Fatal(err)
}
testOutput(t, "vagrant box remove", out)
}
func TestCreate(t *testing.T) {
err := vg.Create(testVagrantFile)
if err != nil {
t.Fatal(err)
}
if err := vg.vagrantfileExists(); err != nil {
t.Error(err)
}
}
func TestProvider(t *testing.T) {
provider, err := vg.Provider()
if err != nil {
t.Fatal(err)
}
if provider != "virtualbox" {
t.Errorf("Vagrant provider should be 'virtualbox'. Got: %s", provider)
}
}
func TestUp(t *testing.T) {
out, err := vg.Up()
if err != nil {
t.Fatal(err)
}
testOutput(t, "vagrant up", out)
status, err := vg.Status()
if err != nil {
t.Fatal(err)
}
if status != Running {
t.Errorf("Vagrant status should be: %s. Got: %s", Running, status)
}
}
func TestSSH(t *testing.T) {
out, err := vg.SSH("ifconfig -a")
if err != nil {
t.Fatal(err)
}
testOutput(t, "vagrant ssh", out)
}
func TestHalt(t *testing.T) {
out, err := vg.Halt()
if err != nil {
t.Fatal(err)
}
testOutput(t, "vagrant halt", out)
status, err := vg.Status()
if err != nil {
t.Fatal(err)
}
if status != PowerOff {
t.Errorf("Vagrant status should be: %s. Got: %s", PowerOff, status)
}
}
func TestList(t *testing.T) {
list, err := vg.List()
if err != nil {
t.Fatal(err)
}
for i, l := range list {
status, err := l.Status()
if err != nil {
if l.State != Unknown.String() {
t.Errorf("failed state should be: Unknown, got: %s", l.State)
}
log.Println("continue because: ", err)
continue
}
if l.State != status.String() {
t.Errorf("internal state should be: %s, got: %s", status, l.State)
}
if l.VagrantfilePath == "" {
t.Error("path should be not empty for list command")
}
fmt.Printf("[%d] status = %s path = %s\n", i, status, l.VagrantfilePath)
}
}
func TestBoxList(t *testing.T) {
boxes, err := vg.BoxList()
if err != nil {
t.Fatal(err)
}
if len(boxes) == 0 {
t.Fatal("want at least one box, got none")
}
for i, box := range boxes {
if box.Name == "" {
t.Errorf("%d: empty box name", i)
}
if box.Provider == "" {
t.Errorf("%d: empty box provider", i)
}
if box.Version == "" {
t.Errorf("%d: empty box version", i)
}
}
}
func TestDestroy(t *testing.T) {
out, err := vg.Destroy()
if err != nil {
t.Fatal(err)
}
testOutput(t, "vagrant destroy", out)
status, err := vg.Status()
if err != nil {
t.Fatal(err)
}
if status != NotCreated {
t.Errorf("Vagrant status should be: %s. Got: %s", NotCreated, status)
}
}
func TestStatus(t *testing.T) {
status, err := vg.Status()
if err != nil {
t.Fatal(err)
}
if vg.State != status.String() {
t.Errorf("Internal state should be: %s, got: %s", status, vg.State)
}
}
func testOutput(t *testing.T, cmd string, out <-chan *CommandOutput) {
for res := range out {
if res.Error != nil {
t.Error(res.Error)
}
}
}