@@ -77,33 +77,31 @@ func TestFileStateTryRestore(t *testing.T) {
77
77
stateFileContent string
78
78
policyName string
79
79
expErr string
80
+ expPanic bool
80
81
expectedState * stateMemory
81
82
}{
82
83
{
83
- "Invalid JSON - empty file" ,
84
+ "Invalid JSON - one byte file" ,
84
85
"\n " ,
85
86
"none" ,
86
- "state file: could not unmarshal, corrupted state file" ,
87
- & stateMemory {
88
- assignments : ContainerCPUAssignments {},
89
- defaultCPUSet : cpuset .NewCPUSet (),
90
- },
87
+ "[cpumanager] state file: unable to restore state from disk (unexpected end of JSON input)" ,
88
+ true ,
89
+ & stateMemory {},
91
90
},
92
91
{
93
92
"Invalid JSON - invalid content" ,
94
93
"{" ,
95
94
"none" ,
96
- "state file: could not unmarshal, corrupted state file" ,
97
- & stateMemory {
98
- assignments : ContainerCPUAssignments {},
99
- defaultCPUSet : cpuset .NewCPUSet (),
100
- },
95
+ "[cpumanager] state file: unable to restore state from disk (unexpected end of JSON input)" ,
96
+ true ,
97
+ & stateMemory {},
101
98
},
102
99
{
103
100
"Try restore defaultCPUSet only" ,
104
101
`{"policyName": "none", "defaultCpuSet": "4-6"}` ,
105
102
"none" ,
106
103
"" ,
104
+ false ,
107
105
& stateMemory {
108
106
assignments : ContainerCPUAssignments {},
109
107
defaultCPUSet : cpuset .NewCPUSet (4 , 5 , 6 ),
@@ -113,11 +111,9 @@ func TestFileStateTryRestore(t *testing.T) {
113
111
"Try restore defaultCPUSet only - invalid name" ,
114
112
`{"policyName": "none", "defaultCpuSet" "4-6"}` ,
115
113
"none" ,
116
- "" ,
117
- & stateMemory {
118
- assignments : ContainerCPUAssignments {},
119
- defaultCPUSet : cpuset .NewCPUSet (),
120
- },
114
+ `[cpumanager] state file: unable to restore state from disk (invalid character '"' after object key)` ,
115
+ true ,
116
+ & stateMemory {},
121
117
},
122
118
{
123
119
"Try restore assignments only" ,
@@ -130,6 +126,7 @@ func TestFileStateTryRestore(t *testing.T) {
130
126
}` ,
131
127
"none" ,
132
128
"" ,
129
+ false ,
133
130
& stateMemory {
134
131
assignments : ContainerCPUAssignments {
135
132
"container1" : cpuset .NewCPUSet (4 , 5 , 6 ),
@@ -146,21 +143,17 @@ func TestFileStateTryRestore(t *testing.T) {
146
143
"entries": {}
147
144
}` ,
148
145
"B" ,
149
- "policy configured \" B\" != policy from state file \" A\" " ,
150
- & stateMemory {
151
- assignments : ContainerCPUAssignments {},
152
- defaultCPUSet : cpuset .NewCPUSet (),
153
- },
146
+ `[cpumanager] state file: unable to restore state from disk (policy configured "B" != policy from state file "A")` ,
147
+ true ,
148
+ & stateMemory {},
154
149
},
155
150
{
156
151
"Try restore invalid assignments" ,
157
152
`{"entries": }` ,
158
153
"none" ,
159
- "state file: could not unmarshal, corrupted state file" ,
160
- & stateMemory {
161
- assignments : ContainerCPUAssignments {},
162
- defaultCPUSet : cpuset .NewCPUSet (),
163
- },
154
+ "[cpumanager] state file: unable to restore state from disk (invalid character '}' looking for beginning of value)" ,
155
+ true ,
156
+ & stateMemory {},
164
157
},
165
158
{
166
159
"Try restore valid file" ,
@@ -174,6 +167,7 @@ func TestFileStateTryRestore(t *testing.T) {
174
167
}` ,
175
168
"none" ,
176
169
"" ,
170
+ false ,
177
171
& stateMemory {
178
172
assignments : ContainerCPUAssignments {
179
173
"container1" : cpuset .NewCPUSet (4 , 5 , 6 ),
@@ -189,11 +183,9 @@ func TestFileStateTryRestore(t *testing.T) {
189
183
"defaultCpuSet": "2-sd"
190
184
}` ,
191
185
"none" ,
192
- "state file: could not parse state file" ,
193
- & stateMemory {
194
- assignments : ContainerCPUAssignments {},
195
- defaultCPUSet : cpuset .NewCPUSet (),
196
- },
186
+ `[cpumanager] state file: unable to restore state from disk (strconv.Atoi: parsing "sd": invalid syntax)` ,
187
+ true ,
188
+ & stateMemory {},
197
189
},
198
190
{
199
191
"Try restore un-parsable assignments" ,
@@ -206,17 +198,16 @@ func TestFileStateTryRestore(t *testing.T) {
206
198
}
207
199
}` ,
208
200
"none" ,
209
- "state file: could not parse state file" ,
210
- & stateMemory {
211
- assignments : ContainerCPUAssignments {},
212
- defaultCPUSet : cpuset .NewCPUSet (),
213
- },
201
+ `[cpumanager] state file: unable to restore state from disk (strconv.Atoi: parsing "p": invalid syntax)` ,
202
+ true ,
203
+ & stateMemory {},
214
204
},
215
205
{
216
- "TryRestoreState creates empty state file" ,
206
+ "tryRestoreState creates empty state file" ,
217
207
"" ,
218
208
"none" ,
219
209
"" ,
210
+ false ,
220
211
& stateMemory {
221
212
assignments : ContainerCPUAssignments {},
222
213
defaultCPUSet : cpuset .NewCPUSet (),
@@ -226,11 +217,23 @@ func TestFileStateTryRestore(t *testing.T) {
226
217
227
218
for idx , tc := range testCases {
228
219
t .Run (tc .description , func (t * testing.T ) {
220
+ defer func () {
221
+ if tc .expPanic {
222
+ r := recover ()
223
+ panicMsg := r .(string )
224
+ if ! strings .HasPrefix (panicMsg , tc .expErr ) {
225
+ t .Fatalf (`expected panic "%s" but got "%s"` , tc .expErr , panicMsg )
226
+ } else {
227
+ t .Logf (`got expected panic "%s"` , panicMsg )
228
+ }
229
+ }
230
+ }()
231
+
229
232
sfilePath , err := ioutil .TempFile ("/tmp" , fmt .Sprintf ("cpumanager_state_file_test_%d" , idx ))
230
233
if err != nil {
231
234
t .Errorf ("cannot create temporary file: %q" , err .Error ())
232
235
}
233
- // Don't create state file, let TryRestoreState figure out that is should create
236
+ // Don't create state file, let tryRestoreState figure out that is should create
234
237
if tc .stateFileContent != "" {
235
238
writeToStateFile (sfilePath .Name (), tc .stateFileContent )
236
239
}
@@ -245,11 +248,11 @@ func TestFileStateTryRestore(t *testing.T) {
245
248
if tc .expErr != "" {
246
249
if logData .String () != "" {
247
250
if ! strings .Contains (logData .String (), tc .expErr ) {
248
- t .Errorf ("TryRestoreState () error = %v, wantErr %v" , logData .String (), tc .expErr )
251
+ t .Errorf ("tryRestoreState () error = %v, wantErr %v" , logData .String (), tc .expErr )
249
252
return
250
253
}
251
254
} else {
252
- t .Errorf ("TryRestoreState () error = nil, wantErr %v" , tc .expErr )
255
+ t .Errorf ("tryRestoreState () error = nil, wantErr %v" , tc .expErr )
253
256
return
254
257
}
255
258
}
@@ -268,7 +271,7 @@ func TestFileStateTryRestorePanic(t *testing.T) {
268
271
}{
269
272
"Panic creating file" ,
270
273
true ,
271
- "[cpumanager] state file not created " ,
274
+ "[cpumanager] state file not written " ,
272
275
}
273
276
274
277
t .Run (testCase .description , func (t * testing.T ) {
@@ -277,10 +280,10 @@ func TestFileStateTryRestorePanic(t *testing.T) {
277
280
if err := recover (); err != nil {
278
281
if testCase .wantPanic {
279
282
if testCase .panicMessage == err {
280
- t .Logf ("TryRestoreState () got expected panic = %v" , err )
283
+ t .Logf ("tryRestoreState () got expected panic = %v" , err )
281
284
return
282
285
}
283
- t .Errorf ("TryRestoreState () unexpected panic = %v, wantErr %v" , err , testCase .panicMessage )
286
+ t .Errorf ("tryRestoreState () unexpected panic = %v, wantErr %v" , err , testCase .panicMessage )
284
287
}
285
288
}
286
289
}()
0 commit comments