aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOInfrastructureBPMN/src/test/groovy/org/openecomp/mso/bpmn/vcpe/scripts/DeleteVcpeResCustServiceTest.groovy
blob: df7c0cff97e1db095ec6ab19505c92f57f085ecb (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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
/*
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. 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.
 * ============LICENSE_END=========================================================
 */
package org.openecomp.mso.bpmn.vcpe.scripts


import org.camunda.bpm.engine.ProcessEngineServices
import org.camunda.bpm.engine.RepositoryService
import org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity
import org.camunda.bpm.engine.repository.ProcessDefinition
import org.camunda.bpm.engine.runtime.Execution
import org.junit.Before
import org.junit.BeforeClass
import org.junit.Rule
import org.junit.Test
import org.junit.Ignore
import org.mockito.MockitoAnnotations
import org.camunda.bpm.engine.delegate.BpmnError
import org.openecomp.mso.bpmn.core.WorkflowException
import org.openecomp.mso.bpmn.mock.FileUtil

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse
import static com.github.tomakehurst.wiremock.client.WireMock.get
import static com.github.tomakehurst.wiremock.client.WireMock.patch
import static com.github.tomakehurst.wiremock.client.WireMock.put
import static com.github.tomakehurst.wiremock.client.WireMock.stubFor
import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching
import static org.junit.Assert.*;
import static org.mockito.Mockito.*
import static org.openecomp.mso.bpmn.mock.StubResponseAAI.MockGetAllottedResource
import org.openecomp.mso.bpmn.core.domain.ServiceDecomposition
import org.openecomp.mso.bpmn.core.domain.VnfResource
import org.openecomp.mso.bpmn.core.domain.AllottedResource
import org.openecomp.mso.bpmn.core.domain.ModelInfo
import org.openecomp.mso.bpmn.core.domain.HomingSolution
import org.openecomp.mso.bpmn.core.RollbackData
import org.openecomp.mso.bpmn.vcpe.scripts.MapGetter
import org.openecomp.mso.bpmn.vcpe.scripts.MapSetter

import com.github.tomakehurst.wiremock.junit.WireMockRule

class DeleteVcpeResCustServiceTest extends GroovyTestBase {
	
	private static String request
	
	@Rule
	public WireMockRule wireMockRule = new WireMockRule(PORT)

	String Prefix = "DVRCS_"
	String RbType = "DCRENI_"

	@BeforeClass
	public static void setUpBeforeClass() {
		super.setUpBeforeClass()
		request = FileUtil.readResourceFile("__files/VCPE/DeleteVcpeResCustService/request.json")
	}
	  
    @Before
	public void init()
	{
		MockitoAnnotations.initMocks(this)
	}
	
	public DeleteVcpeResCustServiceTest() {
		super("DeleteVcpeResCustService")
	}
	
	
	// ***** preProcessRequest *****
			
	@Test
//	@Ignore  
	public void preProcessRequest() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPreProcess(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.preProcessRequest(mex)

		verify(mex).getVariable(DBGFLAG)
		verify(mex).setVariable("prefix", Prefix)
		verify(mex).setVariable("DeleteVcpeResCustServiceRequest", request)
		verify(mex).setVariable("msoRequestId", "mri")
		verify(mex).setVariable("requestAction", "ra")
		verify(mex).setVariable("source", "VID")
		verify(mex).setVariable("globalSubscriberId", CUST)
		verify(mex).setVariable("globalCustomerId", CUST)
		verify(mex).setVariable("disableRollback", "false")
		verify(mex).setVariable("productFamilyId", "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb")
		verify(mex).setVariable("subscriptionServiceType", SVC)	
		
		verify(mex).setVariable("lcpCloudRegionId", "mdt1")
		verify(mex).setVariable("tenantId", "8b1df54faa3b49078e3416e21370a3ba")
		verify(mex).setVariable("sdncVersion", "1702")
		verify(mex).setVariable("GENGS_type", "service-instance")
		assertTrue(map.containsKey(Prefix+"requestInfo"))
		
		def reqinfo = map.get(Prefix+"requestInfo")
		assertTrue(reqinfo.indexOf("<request-id>mri</") >= 0)
		assertTrue(reqinfo.indexOf("<source>VID</") >= 0)
	}
			
	@Test
//	@Ignore  
	public void preProcessRequest_EmptyParts() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPreProcess(mex)
		
		def req = request
					.replace('"source"', '"sourceXXX"')
		
		when(mex.getVariable("bpmnRequest")).thenReturn(req)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.preProcessRequest(mex)

		verify(mex).getVariable(DBGFLAG)
		verify(mex).setVariable("prefix", Prefix)
		verify(mex).setVariable("DeleteVcpeResCustServiceRequest", req)
		verify(mex).setVariable("msoRequestId", "mri")
		verify(mex).setVariable("requestAction", "ra")
		verify(mex).setVariable("source", "VID")
		verify(mex).setVariable("globalSubscriberId", CUST)
		verify(mex).setVariable("globalCustomerId", CUST)
		verify(mex).setVariable("disableRollback", "false")
		verify(mex).setVariable("productFamilyId", "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb")
		verify(mex).setVariable("subscriptionServiceType", SVC)	
		
		verify(mex).setVariable("lcpCloudRegionId", "mdt1")
		verify(mex).setVariable("tenantId", "8b1df54faa3b49078e3416e21370a3ba")
		verify(mex).setVariable("sdncVersion", "1702")
		verify(mex).setVariable("GENGS_type", "service-instance")
		assertTrue(map.containsKey(Prefix+"requestInfo"))
		
		def reqinfo = map.get(Prefix+"requestInfo")
		println reqinfo
		assertTrue(reqinfo.indexOf("<request-id>mri</") >= 0)
		assertTrue(reqinfo.indexOf("<source>VID</") >= 0)
	}
			
	@Test
//	@Ignore  
	public void preProcessRequest_MissingServiceInstanceId() {
		ExecutionEntity mex = setupMock()
		initPreProcess(mex)
		
		when(mex.getVariable("serviceInstanceId")).thenReturn(null)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.preProcessRequest(mex) }))
	}
			
	@Test
//	@Ignore  
	public void preProcessRequest_BpmnError() {
		ExecutionEntity mex = setupMock()
		initPreProcess(mex)
		
		when(mex.getVariable("bpmnRequest")).thenThrow(new BpmnError("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.preProcessRequest(mex) }))
	}
			
	@Test
//	@Ignore  
	public void preProcessRequest_Ex() {
		ExecutionEntity mex = setupMock()
		initPreProcess(mex)
		
		when(mex.getVariable("bpmnRequest")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.preProcessRequest(mex) }))
	}
	
	private void initPreProcess(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable("bpmnRequest")).thenReturn(request)
		when(mex.getVariable("mso-request-id")).thenReturn("mri")
		when(mex.getVariable("serviceInstanceId")).thenReturn("sii")
		when(mex.getVariable("requestAction")).thenReturn("ra")
	}
	
	// ***** sendSyncResponse *****
			
	@Test
//	@Ignore  
	public void sendSyncResponse() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initSendSyncResponse(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.sendSyncResponse(mex)

		verify(mex, times(2)).getVariable(DBGFLAG)
		
		verify(mex).setVariable(processName+"WorkflowResponseSent", "true")
		
		assertEquals("202", map.get(processName+"ResponseCode"))
		assertEquals("Success", map.get(processName+"Status"))
		
		def resp = map.get(processName+"Response")
		
		assertTrue(resp.indexOf('"instanceId":"sii"') >= 0)
		assertTrue(resp.indexOf('"requestId":"mri"') >= 0)
	}
			
	@Test
//	@Ignore  
	public void sendSyncResponse_Ex() {
		ExecutionEntity mex = setupMock()
		initSendSyncResponse(mex)
		
		when(mex.getVariable("serviceInstanceId")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.sendSyncResponse(mex) }))
	}
	
	private initSendSyncResponse(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable("mso-request-id")).thenReturn("mri")
		when(mex.getVariable("serviceInstanceId")).thenReturn("sii")
	}
	
	// ***** prepareServiceDelete *****
			
	@Test
//	@Ignore  
	public void prepareServiceDelete() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPrepareServiceDelete(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.prepareServiceDelete(mex)

		verify(mex).getVariable(DBGFLAG)
		
		verify(mex).setVariable(Prefix+"TunnelXConn", true)
		assertEquals("txcA", map.get("TXC_allottedResourceId"))
		
		verify(mex).setVariable(Prefix+"BRG", true)
		assertEquals("brgB", map.get("BRG_allottedResourceId"))
		
		verify(mex).setVariable(Prefix+"vnfsCount", 2)
		assertNotNull(map.get(Prefix+"relatedVnfIdList"))
		assertEquals("[vnfX, vnfY]", map.get(Prefix+"relatedVnfIdList").toString())
		
		verify(mex, never()).setVariable(processName+"WorkflowResponseSent", "true")
	}
			
	@Test
//	@Ignore  
	public void prepareServiceDelete_NotFound() {
		ExecutionEntity mex = setupMock()
		initPrepareServiceDelete(mex)
		
		when(mex.getVariable("GENGS_FoundIndicator")).thenReturn(false)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError({ _ -> DeleteVcpeResCustService.prepareServiceDelete(mex) }))
		
		verify(mex, never()).setVariable(processName+"WorkflowResponseSent", "true")
	}
			
	@Test
//	@Ignore  
	public void prepareServiceDelete_Empty() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPrepareServiceDelete(mex)
		
		when(mex.getVariable("GENGS_service")).thenReturn("<empty></empty>")
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.prepareServiceDelete(mex)

		verify(mex).getVariable(DBGFLAG)
		
		verify(mex).setVariable(Prefix+"TunnelXConn", false)
		assertNull(map.get("TXC_allottedResourceId"))
		
		verify(mex).setVariable(Prefix+"BRG", false)
		assertNull(map.get("BRG_allottedResourceId"))
		
		assertEquals(0, map.get(Prefix+"vnfsCount"))
		assertFalse(map.containsKey(Prefix+"relatedVnfIdList"))
		
		verify(mex, never()).setVariable(processName+"WorkflowResponseSent", "true")
	}
			
	@Test
//	@Ignore  
	public void prepareServiceDelete_BpmnError() {
		ExecutionEntity mex = setupMock()
		initPrepareServiceDelete(mex)
		
		when(mex.getVariable("GENGS_FoundIndicator")).thenThrow(new BpmnError("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError({ _ -> DeleteVcpeResCustService.prepareServiceDelete(mex) }))
		
		verify(mex, never()).setVariable(processName+"WorkflowResponseSent", "true")
	}
			
	@Test
//	@Ignore  
	public void prepareServiceDelete_Ex() {
		ExecutionEntity mex = setupMock()
		initPrepareServiceDelete(mex)
		
		when(mex.getVariable("GENGS_FoundIndicator")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError({ _ -> DeleteVcpeResCustService.prepareServiceDelete(mex) }))
		
		verify(mex).setVariable(processName+"WorkflowResponseSent", "true")
	}
	
	private initPrepareServiceDelete(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable("serviceInstanceId")).thenReturn("sii")
		when(mex.getVariable("GENGS_FoundIndicator")).thenReturn(true)
		when(mex.getVariable("mso-request-id")).thenReturn("mri")
		when(mex.getVariable("DeleteVcpeResCustServiceRequest")).thenReturn(request)
		when(mex.getVariable("GENGS_service")).thenReturn(FileUtil.readResourceFile("__files/VCPE/DeleteVcpeResCustService/serviceToDelete.xml"))
	}
	
	// ***** prepareVnfAndModulesDelete *****
			
	@Test
//	@Ignore  
	public void prepareVnfAndModulesDelete() {
		ExecutionEntity mex = setupMock()
		initPrepareVnfAndModulesDelete(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.prepareVnfAndModulesDelete(mex)

		verify(mex).getVariable(DBGFLAG)
		
		verify(mex).setVariable("vnfId", "vnfB")
	}
			
	@Test
//	@Ignore  
	public void prepareVnfAndModulesDelete_Empty() {
		ExecutionEntity mex = setupMock()
		initPrepareVnfAndModulesDelete(mex)
		
		when(mex.getVariable(Prefix+"relatedVnfIdList")).thenReturn(new LinkedList())
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.prepareVnfAndModulesDelete(mex)

		verify(mex).getVariable(DBGFLAG)
		
		verify(mex).setVariable("vnfId", "")
	}
			
	@Test
//	@Ignore  
	public void prepareVnfAndModulesDelete_Ex() {
		ExecutionEntity mex = setupMock()
		initPrepareVnfAndModulesDelete(mex)
		
		when(mex.getVariable(Prefix+"relatedVnfIdList")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError({ _ -> DeleteVcpeResCustService.prepareVnfAndModulesDelete(mex) }))
	}
	
	private initPrepareVnfAndModulesDelete(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable(Prefix+"relatedVnfIdList")).thenReturn(Arrays.asList("vnfA", "vnfB", "vnfC"))
		when(mex.getVariable(Prefix+"vnfsDeletedCount")).thenReturn(1)
	}
	
	// ***** validateVnfDelete *****
			
	@Test
//	@Ignore  
	public void validateVnfDelete() {
		ExecutionEntity mex = setupMock()
		initValidateVnfDelete(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.validateVnfDelete(mex)

		verify(mex).getVariable(DBGFLAG)
		
		verify(mex).setVariable(Prefix+"vnfsDeletedCount", 3)
	}
			
	@Test
//	@Ignore  
	public void validateVnfDelete_Ex() {
		ExecutionEntity mex = setupMock()
		initValidateVnfDelete(mex)
		
		when(mex.getVariable(Prefix+"vnfsDeletedCount")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError({ _ -> DeleteVcpeResCustService.validateVnfDelete(mex) }))
	}
	
	private initValidateVnfDelete(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable(Prefix+"vnfsDeletedCount")).thenReturn(2)
	}
	
	// ***** postProcessResponse *****
			
	@Test
//	@Ignore  
	public void postProcessResponse() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPostProcessResponse(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.postProcessResponse(mex)

		verify(mex).getVariable(DBGFLAG)
		
		assertEquals(true, map.get(Prefix+"Success"))
		
		def req = map.get(Prefix+"CompleteMsoProcessRequest")
		
		assertTrue(req.indexOf("<request-id>mri</") >= 0)
		assertTrue(req.indexOf("<source>mysrc</") >= 0)
	}
			
	@Test
//	@Ignore  
	public void postProcessResponse_BpmnError() {
		ExecutionEntity mex = setupMock()
		initPostProcessResponse(mex)
		
		when(mex.getVariable("source")).thenThrow(new BpmnError("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.postProcessResponse(mex) }))
	}
			
	@Test
//	@Ignore  
	public void postProcessResponse_Ex() {
		ExecutionEntity mex = setupMock()
		initPostProcessResponse(mex)
		
		when(mex.getVariable("source")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.postProcessResponse(mex) }))
	}
	
	private initPostProcessResponse(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable("source")).thenReturn("mysrc")
		when(mex.getVariable("msoRequestId")).thenReturn("mri")
	}
	
	
	// ***** prepareFalloutRequest *****
			
	@Test
//	@Ignore  
	public void prepareFalloutRequest() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPrepareFalloutRequest(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.prepareFalloutRequest(mex)

		verify(mex, times(2)).getVariable(DBGFLAG)
		
		def fo = map.get(Prefix+"falloutRequest")
		
		assertTrue(fo.indexOf("<hello>world</") >= 0)
		assertTrue(fo.indexOf("ErrorMessage>mymsg</") >= 0)
		assertTrue(fo.indexOf("ErrorCode>999</") >= 0)
	}
			
	@Test
//	@Ignore  
	public void prepareFalloutRequest_Ex() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initPrepareFalloutRequest(mex)
		
		when(mex.getVariable("WorkflowException")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.prepareFalloutRequest(mex) }))
	}
	
	private initPrepareFalloutRequest(ExecutionEntity mex) {
		WorkflowException wfe = mock(WorkflowException.class)
		
		when(wfe.getErrorMessage()).thenReturn("mymsg")
		when(wfe.getErrorCode()).thenReturn(999)
		
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable("WorkflowException")).thenReturn(wfe)
		when(mex.getVariable(Prefix+"requestInfo")).thenReturn("<hello>world</hello>")
		
		return wfe
	}
	
	// ***** sendSyncError *****
			
	@Test
//	@Ignore  
	public void sendSyncError() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initSendSyncError(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.sendSyncError(mex)

		verify(mex, times(2)).getVariable(DBGFLAG)
		
		verify(mex).setVariable(processName+"WorkflowResponseSent", "true")
		
		assertEquals("500", map.get(processName+"ResponseCode"))
		assertEquals("Fail", map.get(processName+"Status"))
		
		def resp = map.get(processName+"Response")
		
		assertTrue(resp.indexOf("ErrorMessage>mymsg</") >= 0)
		
		verify(mex).setVariable("WorkflowResponse", resp)
	}
			
	@Test
//	@Ignore  
	public void sendSyncError_NotWfe() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initSendSyncError(mex)
		
		when(mex.getVariable("WorkflowException")).thenReturn("not a WFE")
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.sendSyncError(mex)

		verify(mex, times(2)).getVariable(DBGFLAG)
		
		verify(mex).setVariable(processName+"WorkflowResponseSent", "true")
		
		assertEquals("500", map.get(processName+"ResponseCode"))
		assertEquals("Fail", map.get(processName+"Status"))
		
		def resp = map.get(processName+"Response")
		
		assertTrue(resp.indexOf("ErrorMessage>Sending Sync Error.</") >= 0)
		
		verify(mex).setVariable("WorkflowResponse", resp)
	}
			
	@Test
//	@Ignore  
	public void sendSyncError_NullWfe() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initSendSyncError(mex)
		
		when(mex.getVariable("WorkflowException")).thenReturn(null)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		DeleteVcpeResCustService.sendSyncError(mex)

		verify(mex, times(2)).getVariable(DBGFLAG)
		
		verify(mex).setVariable(processName+"WorkflowResponseSent", "true")
		
		assertEquals("500", map.get(processName+"ResponseCode"))
		assertEquals("Fail", map.get(processName+"Status"))
		
		def resp = map.get(processName+"Response")
		
		assertTrue(resp.indexOf("ErrorMessage>Sending Sync Error.</") >= 0)
		
		verify(mex).setVariable("WorkflowResponse", resp)
	}
			
	@Test
//	@Ignore  
	public void sendSyncError_Ex() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initSendSyncError(mex)
		
		when(mex.getVariable("WorkflowException")).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		DeleteVcpeResCustService.sendSyncError(mex)
		
		assertFalse(map.containsKey(processName+"ResponseCode"))
	}
	
	private initSendSyncError(ExecutionEntity mex) {
		WorkflowException wfe = mock(WorkflowException.class)
		
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
		when(mex.getVariable("mso-request-id")).thenReturn("mri")
		when(mex.getVariable("WorkflowException")).thenReturn(wfe)
		
		when(wfe.getErrorMessage()).thenReturn("mymsg")
	}
	
	
	// ***** processJavaException *****
			
	@Test
//	@Ignore  
	public void processJavaException() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initProcessJavaException(mex)
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.processJavaException(mex) }))

		verify(mex, times(2)).getVariable(DBGFLAG)
		
		verify(mex).setVariable("prefix", Prefix)
		
		def wfe = map.get("WorkflowException")
		
		assertEquals("Caught a Java Lang Exception", wfe.getErrorMessage())
	}
			
	@Test
//	@Ignore  
	public void processJavaException_BpmnError() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initProcessJavaException(mex)
		
		when(mex.getVariables()).thenThrow(new BpmnError("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.processJavaException(mex) }))
		
		assertFalse(map.containsKey("WorkflowException"))
	}
			
	@Test
//	@Ignore  
	public void processJavaException_Ex() {
		ExecutionEntity mex = setupMock()
		def map = setupMap(mex)
		initProcessJavaException(mex)
		
		when(mex.getVariables()).thenThrow(new RuntimeException("expected exception"))
		
		DeleteVcpeResCustService DeleteVcpeResCustService = new DeleteVcpeResCustService()
		
		assertTrue(doBpmnError( { _ -> DeleteVcpeResCustService.processJavaException(mex) }))
		
		def wfe = map.get("WorkflowException")
		
		assertEquals("Exception in processJavaException method", wfe.getErrorMessage())
	}
	
	private initProcessJavaException(ExecutionEntity mex) {
		when(mex.getVariable(DBGFLAG)).thenReturn("true")
	}
}