This repository was archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathstart_test.go
More file actions
140 lines (124 loc) · 3.26 KB
/
start_test.go
File metadata and controls
140 lines (124 loc) · 3.26 KB
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
// Copyright 2014 The fleet Authors
//
// 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 main
import (
"fmt"
"sync"
"testing"
"github.com/coreos/fleet/job"
"github.com/coreos/fleet/schema"
)
func checkStartUnitState(unit schema.Unit, startRet int, errchan chan error) {
if startRet == 0 {
if job.JobState(unit.DesiredState) != job.JobStateLaunched {
errchan <- fmt.Errorf("error: unit %s was not started as requested", unit.Name)
}
} else if unit.DesiredState != "" {
// if the whole start operation failed, then no unit
// should have a DesiredState set
errchan <- fmt.Errorf("error: Unit(%s) DesiredState was set to (%s)", unit.Name, unit.DesiredState)
}
}
func doStartUnits(t *testing.T, r commandTestResults, errchan chan error) {
sharedFlags.NoBlock = true
exit := runStartUnit(cmdStart, r.units)
if exit != r.expectedExit {
errchan <- fmt.Errorf("%s: expected exit code %d but received %d", r.description, r.expectedExit, exit)
return
}
real_units, err := findUnits(r.units)
if err != nil {
errchan <- err
return
}
for _, v := range real_units {
checkStartUnitState(v, r.expectedExit, errchan)
}
}
func runStartUnits(t *testing.T, unitPrefix string, results []commandTestResults, template bool) {
unitsCount := 0
for _, r := range results {
var wg sync.WaitGroup
errchan := make(chan error)
if !template {
unitsCount = len(r.units)
}
cAPI = newFakeRegistryForCommands(unitPrefix, unitsCount, template)
wg.Add(1)
go func() {
defer wg.Done()
doStartUnits(t, r, errchan)
}()
go func() {
wg.Wait()
close(errchan)
}()
for err := range errchan {
t.Errorf("%v", err)
}
}
}
func TestRunStartUnits(t *testing.T) {
unitPrefix := "start"
oldNoBlock := sharedFlags.NoBlock
defer func() {
sharedFlags.NoBlock = oldNoBlock
}()
results := []commandTestResults{
{
"start available units",
[]string{"start1", "start2", "start3", "start4", "start5", "start6"},
0,
},
{
"start non-available units",
[]string{"y1", "y2"},
1,
},
{
"start available and non-available units",
[]string{"y1", "y2", "y3", "y4", "start1", "start2", "start3", "start4", "start5", "start6", "y0"},
1,
},
{
"start a unit from a non-available template",
[]string{"foo-template@1"},
1,
},
{
"start null input",
[]string{},
0,
},
}
templateResults := []commandTestResults{
{
"start a unit from a non-available template",
[]string{"start-foo@1"},
1,
},
{
"start units from an available template",
[]string{"start@1", "start@100", "start@1000"},
0,
},
{
"start same unit from an available template",
[]string{"start@1", "start@1", "start@1"},
0,
},
}
runStartUnits(t, unitPrefix, results, false)
runStartUnits(t, unitPrefix, templateResults, true)
}