aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/test/java/org/openecomp/mso/asdc/util/YamlEditorESTest.java
blob: c050a9cc20e5ee23f042fca3c71dc341b64b8d5b (plain)
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
 * This file was automatically generated by EvoSuite
 * Fri Nov 25 13:17:51 GMT 2016
 */

package org.openecomp.mso.asdc.util;

import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.shaded.org.mockito.Mockito.*;
import static org.evosuite.runtime.MockitoExtension.*;
import static org.evosuite.runtime.EvoAssertions.*;

import org.openecomp.mso.db.catalog.beans.HeatTemplateParam;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.evosuite.runtime.PrivateAccess;
import org.evosuite.runtime.ViolatedAssumptionAnswer;
import org.junit.runner.RunWith;
import org.yaml.snakeyaml.Yaml;

@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
public class YamlEditorESTest extends YamlEditorESTestscaffolding {

  @Test(timeout = 4000)
  public void test00()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      boolean boolean0 = yamlEditor0.isParentTemplate("file:///");
      assertTrue(boolean0);
  }

  @Test(timeout = 4000)
  public void test01()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<String, Object> hashMap0 = new HashMap<String, Object>();
      Yaml yaml0 = mock(Yaml.class, new ViolatedAssumptionAnswer());
      doReturn((String) null, (String) null).when(yaml0).dump(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yaml", (Object) yaml0);
      yamlEditor0.encode((Map<String, Object>) hashMap0);
      Map<String, Object> map0 = (Map<String, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn((Object) null).when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      yamlEditor0.toString();
      // Undeclared exception!
      try { 
        yamlEditor0.getYamlResourceTypeList();
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test02()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<Object, String> hashMap0 = new HashMap<Object, String>();
      Yaml yaml0 = mock(Yaml.class, new ViolatedAssumptionAnswer());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yaml", (Object) yaml0);
      Object object0 = new Object();
      Map<Integer, Object> map0 = (Map<Integer, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(hashMap0, object0).when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      yamlEditor0.getParameterList();
      // Undeclared exception!
      try { 
        yamlEditor0.getYamlResourceTypeList();
        fail("Expecting exception: ClassCastException");
      
      } catch(ClassCastException e) {
         //
         // java.lang.Object cannot be cast to java.util.Map
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test03()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      // Undeclared exception!
      try { 
        yamlEditor0.getYamlNestedFileResourceTypeList();
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test04()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<Object, String> hashMap0 = new HashMap<Object, String>();
      Yaml yaml0 = mock(Yaml.class, new ViolatedAssumptionAnswer());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yaml", (Object) yaml0);
      Map<Integer, Object> map0 = (Map<Integer, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(hashMap0, (Object) null).when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      yamlEditor0.getYamlNestedFileResourceTypeList();
      // Undeclared exception!
      try { 
        yamlEditor0.getParameterList();
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test05()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<String, Object> hashMap0 = new HashMap<String, Object>();
      Set<Map.Entry<String, Object>> set0 = (Set<Map.Entry<String, Object>>)hashMap0.entrySet();
      hashMap0.put("null\n", set0);
      // Undeclared exception!
      try { 
        yamlEditor0.encode((Map<String, Object>) hashMap0);
        fail("Expecting exception: StackOverflowError");
      
      } catch(StackOverflowError e) {
         //
         // no message in exception (getMessage() returned null)
         //
      }
  }

  @Test(timeout = 4000)
  public void test06()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      Set<Map.Entry<String, Object>> set0 = (Set<Map.Entry<String, Object>>) mock(Set.class, new ViolatedAssumptionAnswer());
      doReturn((Iterator) null).when(set0).iterator();
      Map<String, Object> map0 = (Map<String, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(set0).when(map0).entrySet();
      doReturn(2655).when(map0).size();
      // Undeclared exception!
      try { 
        yamlEditor0.encode(map0);
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.yaml.snakeyaml.representer.BaseRepresenter", e);
      }
  }

  @Test(timeout = 4000)
  public void test07()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      Map<String, Object> map0 = (Map<String, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn((-300)).when(map0).size();
      // Undeclared exception!
      try { 
        yamlEditor0.encode(map0);
        fail("Expecting exception: IllegalArgumentException");
      
      } catch(IllegalArgumentException e) {
         //
         // Illegal Capacity: -300
         //
         verifyException("java.util.ArrayList", e);
      }
  }

  @Test(timeout = 4000)
  public void test08()  throws Throwable  {
      byte[] byteArray0 = new byte[0];
      YamlEditor yamlEditor0 = new YamlEditor(byteArray0);
      Map<HeatTemplateParam, String> map0 = (Map<HeatTemplateParam, String>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn("").when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      LinkedHashSet<HeatTemplateParam> linkedHashSet0 = new LinkedHashSet<HeatTemplateParam>();
      // Undeclared exception!
      try { 
        yamlEditor0.addParameterList(linkedHashSet0);
        fail("Expecting exception: ClassCastException");
      
      } catch(ClassCastException e) {
         //
         // java.lang.String cannot be cast to java.util.Map
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test09()  throws Throwable  {
      byte[] byteArray0 = new byte[1];
      YamlEditor yamlEditor0 = null;
      try {
        yamlEditor0 = new YamlEditor(byteArray0);
        fail("Expecting exception: RuntimeException");
      
      } catch(RuntimeException e) {
         //
         // special characters are not allowed
         //
         verifyException("org.yaml.snakeyaml.reader.StreamReader", e);
      }
  }

  @Test(timeout = 4000)
  public void test10()  throws Throwable  {
      byte[] byteArray0 = new byte[1];
      byteArray0[0] = (byte)37;
      YamlEditor yamlEditor0 = null;
      try {
        yamlEditor0 = new YamlEditor(byteArray0);
        fail("Expecting exception: RuntimeException");
      
      } catch(RuntimeException e) {
         //
         // while scanning a directive
         //  in 'reader', line 1, column 1:
         //     %
         //     ^
         // expected alphabetic or numeric character, but found \u0000(0)
         //  in 'reader', line 1, column 2:
         //     %
         //      ^
         //
         verifyException("org.yaml.snakeyaml.scanner.ScannerImpl", e);
      }
  }

  @Test(timeout = 4000)
  public void test11()  throws Throwable  {
      byte[] byteArray0 = new byte[2];
      byteArray0[1] = (byte) (-80);
      YamlEditor yamlEditor0 = null;
      try {
        yamlEditor0 = new YamlEditor(byteArray0);
        fail("Expecting exception: RuntimeException");
      
      } catch(RuntimeException e) {
         //
         // java.nio.charset.MalformedInputException: Input length = 1
         //
         verifyException("org.yaml.snakeyaml.reader.StreamReader", e);
      }
  }

  @Test(timeout = 4000)
  public void test13()  throws Throwable  {
      byte[] byteArray0 = new byte[1];
      byteArray0[0] = (byte)110;
      YamlEditor yamlEditor0 = null;
      try {
        yamlEditor0 = new YamlEditor(byteArray0);
        fail("Expecting exception: ClassCastException");
      
      } catch(ClassCastException e) {
         //
         // java.lang.String cannot be cast to java.util.Map
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test14()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      String string0 = yamlEditor0.encode();
      assertEquals("null\n", string0);
  }

  @Test(timeout = 4000)
  public void test15()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<Object, String> hashMap0 = new HashMap<Object, String>();
      Map<Integer, Object> map0 = (Map<Integer, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(hashMap0).when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      Set<HeatTemplateParam> set0 = (Set<HeatTemplateParam>) mock(Set.class, new ViolatedAssumptionAnswer());
      doReturn((Iterator) null).when(set0).iterator();
      // Undeclared exception!
      try { 
        yamlEditor0.addParameterList(set0);
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test16()  throws Throwable  {
      byte[] byteArray0 = new byte[0];
      YamlEditor yamlEditor0 = new YamlEditor(byteArray0);
      HashMap<HeatTemplateParam, String> hashMap0 = new HashMap<HeatTemplateParam, String>();
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) hashMap0);
      LinkedHashSet<HeatTemplateParam> linkedHashSet0 = new LinkedHashSet<HeatTemplateParam>();
      HeatTemplateParam heatTemplateParam0 = mock(HeatTemplateParam.class, new ViolatedAssumptionAnswer());
      doReturn(">!=_`7`2d(").when(heatTemplateParam0).getParamName();
      doReturn(">!=_`7`2d(").when(heatTemplateParam0).getParamType();
      linkedHashSet0.add(heatTemplateParam0);
      yamlEditor0.addParameterList(linkedHashSet0);
      Set<HeatTemplateParam> set0 = yamlEditor0.getParameterList();
      assertFalse(set0.isEmpty());
  }

  @Test(timeout = 4000)
  public void test17()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<Object, String> hashMap0 = new HashMap<Object, String>();
      Map<Integer, Object> map0 = (Map<Integer, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(hashMap0).when(map0).get(any());
      hashMap0.put(yamlEditor0, "V28");
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      // Undeclared exception!
      try { 
        yamlEditor0.getParameterList();
        fail("Expecting exception: ClassCastException");
      
      } catch(ClassCastException e) {
         //
         // java.lang.String cannot be cast to java.util.Map
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test18()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<Object, String> hashMap0 = new HashMap<Object, String>();
      Map<Integer, Object> map0 = (Map<Integer, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(hashMap0).when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      List<String> list0 = yamlEditor0.getYamlResourceTypeList();
      assertEquals(0, list0.size());
  }

  @Test(timeout = 4000)
  public void test19()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      // Undeclared exception!
      try { 
        yamlEditor0.isParentTemplate((String) null);
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test20()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      yamlEditor0.verifyTemplate();
      yamlEditor0.isParentTemplate("\"");
      Map<String, Object> map0 = (Map<String, Object>) mock(Map.class, new ViolatedAssumptionAnswer());
      doReturn(yamlEditor0).when(map0).get(any());
      PrivateAccess.setVariable((Class<YamlEditor>) YamlEditor.class, yamlEditor0, "yml", (Object) map0);
      // Undeclared exception!
      try { 
        yamlEditor0.getYamlNestedFileResourceTypeList();
        fail("Expecting exception: ClassCastException");
      
      } catch(ClassCastException e) {
         //
         // org.openecomp.mso.asdc.util.YamlEditor cannot be cast to java.util.Map
         //
         verifyException("org.openecomp.mso.asdc.util.YamlEditor", e);
      }
  }

  @Test(timeout = 4000)
  public void test21()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      HashMap<String, Object> hashMap0 = new HashMap<String, Object>();
      String string0 = yamlEditor0.encode((Map<String, Object>) hashMap0);
      assertEquals("{}\n", string0);
  }

  @Test(timeout = 4000)
  public void test22()  throws Throwable  {
      YamlEditor yamlEditor0 = null;
      try {
        yamlEditor0 = new YamlEditor((byte[]) null);
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
      }
  }

  @Test(timeout = 4000)
  public void test23()  throws Throwable  {
      YamlEditor yamlEditor0 = new YamlEditor();
      String string0 = yamlEditor0.toString();
      assertEquals("null\n", string0);
  }
}