aboutsummaryrefslogtreecommitdiffstats
path: root/ECOMP-PAP-REST/src/test/java/org/openecomp/policy/pap/xacml/rest/jpa/PolicyEntityTest.java
blob: f71026c39d603cfb14bc29ff7c8119bb6fd532cc (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
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
/*-
 * ============LICENSE_START=======================================================
 * ECOMP-PAP-REST
 * ================================================================================
 * 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.policy.pap.xacml.rest.jpa;

import static org.junit.Assert.*;

//import org.apache.commons.logging.Log;
//import org.apache.commons.logging.LogFactory;
import org.junit.*;
import org.openecomp.policy.rest.XACMLRestProperties;
import org.openecomp.policy.rest.jpa.ActionBodyEntity;
import org.openecomp.policy.rest.jpa.ConfigurationDataEntity;
import org.openecomp.policy.rest.jpa.PolicyDBDaoEntity;
import org.openecomp.policy.rest.jpa.PolicyEntity;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityTransaction;
import javax.persistence.Persistence;
import javax.persistence.Query;

import java.util.Date;
import java.util.List;
import org.openecomp.policy.common.logging.flexlogger.FlexLogger; 
import org.openecomp.policy.common.logging.flexlogger.Logger;

import java.util.Properties;

public class PolicyEntityTest {
	
	private static Logger logger = FlexLogger.getLogger(PolicyEntityTest.class);
	
//    @Ignore
    @Test
    public void testAllOps(){
    	Properties properties = new Properties();
    	properties.put(XACMLRestProperties.PROP_PAP_DB_DRIVER,"org.h2.Driver");
    	properties.put(XACMLRestProperties.PROP_PAP_DB_URL, "jdbc:h2:file:./sql/xacmlTest");
    	properties.put(XACMLRestProperties.PROP_PAP_DB_USER, "sa");
    	properties.put(XACMLRestProperties.PROP_PAP_DB_PASSWORD, "");
    	EntityManagerFactory emf = Persistence.createEntityManagerFactory("testPapPU", properties);
    	EntityManager em = emf.createEntityManager();
        // Start a transaction
        EntityTransaction et = em.getTransaction();

        et.begin();
        //Make sure the DB is clean
        em.createQuery("DELETE FROM PolicyDBDaoEntity").executeUpdate();
        em.createQuery("DELETE FROM PolicyEntity").executeUpdate();
        em.createQuery("DELETE FROM ConfigurationDataEntity").executeUpdate();
        em.createQuery("DELETE FROM ActionBodyEntity").executeUpdate();

        //Create a policy object
        PolicyEntity p1 = new PolicyEntity();
        
        //persist the policy    
        em.persist(p1);

        long policyId1 = p1.getPolicyId();
        
        String policyName1 = p1.getPolicyName();
        
        int version1 = p1.getVersion();
        
        String policyData1 = p1.getPolicyData();
        
        ConfigurationDataEntity configData1 = p1.getConfigurationData();
        String configDataStr1 = (configData1!=null ? "configurationDataId = " + configData1.getConfigurationDataId() : "configurationData is null");
        
        ActionBodyEntity actionBody1 = p1.getActionBodyEntity();
        String actionBodyStr1 = (actionBody1!=null ? "actionBodyId = " + actionBody1.getActionBodyId() : "actionBody is null");
        
        String createdBy1 = p1.getCreatedBy();
        
        Date createdDate1 = p1.getCreatedDate();
        String createdDateStr1 = (createdDate1 != null ? createdDate1.toString() : "createdDate is null");
        
        String description = p1.getDescription();
        
        String modifiedBy1 = p1.getModifiedBy();
        
        Date modifiedDate1 = p1.getModifiedDate();
        String modifiedDateStr1 = (modifiedDate1 != null ? modifiedDate1.toString() : "modifiedDate is null");
        
        
        logger.debug("\n\n********PolicyEntityTest: Local PolicyEntity and Configuration objects before persist*********"
        		+ "\npolicyId1 = " + policyId1
        		+ "\npolicyName1 = " + policyName1
        		+ "\nversion1 = " + version1
        		+ "\npolicyData1 = " + policyData1
        		+ "\nconfigDataStr1 = " + configDataStr1
        		+ "\nactionBodyStr1 = " + actionBodyStr1
           		+ "\nscope = " + p1.getScope()
        		+ "\ncreatedBy1 = " + createdBy1
        		+ "\ncreatedDateStr1 = " + createdDateStr1
        		+ "\ndescription = " + description
        		+ "\nmodifiedBy1 = " + modifiedBy1
        		+ "\nmodifiedDateStr1 = " + modifiedDateStr1
        		+ "\ndeleted = " + p1.isDeleted());
        
        //Set policyID
        p1.setPolicyName("testPID2");
        
        //Set policyData
        p1.setPolicyData("<policy>PolicyData</policy>");
        
        //We will NOT set the ConfigurationDataEntity or ActionBodyEntity object just to test that it is optional
        
        //set createdBy
        p1.setCreatedBy("super-admin");
        
        //createdDate will be set when it is persisted
        
        //set scope
        p1.setScope("com.test");
        
        //set description
        p1.setDescription("PolicyEntity Description");
        
        //set modifiedBy
        p1.setModifiedBy("super-admin");
        
        //modifiedDate will be set when it is persisted
      
        //Flush to the DB
        em.flush();
        
        //Now lets get some attribute values
  
        policyId1 = p1.getPolicyId();
        
        policyName1 = p1.getPolicyName();
        
        version1 = p1.getVersion();
        
        policyData1 = p1.getPolicyData();
        
        configData1 = p1.getConfigurationData();
        configDataStr1 = (configData1!=null ?  "configurationDataId = " + configData1.getConfigurationDataId() : "configurationData is null");
        
        actionBody1 = p1.getActionBodyEntity();
        actionBodyStr1 = (actionBody1!=null ? "actionBodyId = " + actionBody1.getActionBodyId() : "actionBody is null");
        
        createdBy1 = p1.getCreatedBy();
        
        createdDate1 = p1.getCreatedDate();
        createdDateStr1 = (createdDate1 != null ? createdDate1.toString() : "createdDate is null");
        
        description = p1.getDescription();
        
        modifiedBy1 = p1.getModifiedBy();
        
        modifiedDate1 = p1.getModifiedDate();
        modifiedDateStr1 = (modifiedDate1 != null ? modifiedDate1.toString() : "modifiedDate is null");
        
        logger.debug("\n\n********PolicyEntityTest: Local PolicyEntity and Configuration objects after persist*********"
        		+ "\npolicyId1 = " + policyId1
        		+ "\npolicyName1 = " + policyName1
        		+ "\nversion1 = " + version1
        		+ "\npolicyData1 = " + policyData1
        		+ "\nconfigDataStr1 = " + configDataStr1
        		+ "\nactionBodyStr1 = " + actionBodyStr1
        		+ "\nscopeId = " + p1.getScope()
        		+ "\ncreatedBy1 = " + createdBy1
        		+ "\ncreatedDateStr1 = " + createdDateStr1
        		+ "\ndescription = " + description
        		+ "\nmodifiedBy1 = " + modifiedBy1
        		+ "\nmodifiedDateStr1 = " + modifiedDateStr1
        		+ "\ndeleted = " + p1.isDeleted());

        //Now lets fully configure the configurationData and actionBody
        
        //Create a ConfigurationDataEntity object and set ID
      ConfigurationDataEntity c1 = new ConfigurationDataEntity();      
      
      ActionBodyEntity a1 = new ActionBodyEntity();
      
        //persist the configuration Data
      	em.persist(c1);        
        
        c1.setConfigType("OTHER");
        
        c1.setConfigBody("ABC");
        
        c1.setDescription("ConfigurationDataEntity Description");
        
        c1.setCreatedBy("super-admin");
        
        c1.setDeleted(true);
        
        //persist the action Body
        
        em.persist(a1);
        
        a1.setActionBody("myActionBody");
        
        a1.setActionBodyName("myActionBodyName");
        
        a1.setCreatedBy("super-admin");
        
        a1.setModifiedBy("super-admin");
        
        a1.setDeleted(false);
        
        
        long configurationDataId = c1.getConfigurationDataId();
        
        int cdVersion = c1.getVersion();
        
        String cdConfigType = c1.getConfigType();
        
        String cdConfigBody = c1.getConfigBody();
        
        String cdCreatedBy = c1.getCreatedBy();
        
        Date cdCreatedDate = c1.getCreatedDate();
        
        String cdDescription = c1.getDescription();
        
        String cdModifiedBy = c1.getModifiedBy();
        
        Date cdModifiedDate = c1.getModifiedDate();
        
        logger.debug("\n\n********PolicyEntityTest: Local Configuration object after setting values *********"
        		+ "\nconfigurationDataId = " + configurationDataId
        		+ "\ncdVersion = " + cdVersion
        		+ "\ncdConfigType = " + cdConfigType
        		+ "\ncdConfigBody = " + cdConfigBody
        		+ "\ncdCreatedBy = " + cdCreatedBy
        		+ "\ncdCreatedDate = " + cdCreatedDate
        		+ "\ncdDescription = " + cdDescription
        		+ "\ncdModifiedBy = " + cdModifiedBy
        		+ "\ncdModifiedDate = " + cdModifiedDate
        		+ "\ndeleted = " + c1.isDeleted());        
        

        
        logger.debug("\n\n********PolicyEntityTest: Local Action Body object after setting values *********"
        		+ "\nactionBodyId = " + a1.getActionBodyId()
        		+ "\nactionBodyVersion = " + a1.getVersion()
        		+ "\nactionBody = " + a1.getActionBody()
        		+ "\nactionBodyCeatedBy = " + a1.getCreatedBy()
        		+ "\nactionBodyCreatedDate = " + a1.getCreatedDate()
        		+ "\nactionBodyModifiedBy = " + a1.getModifiedBy()
        		+ "\nactionBodyModifiedDate = " + a1.getModifiedDate()
        		+ "\nactionBodyDeleted = " + a1.isDeleted());        

        p1.setScope("mckiou.kevin.kim");        
        
        //flush to the db
        em.flush();
        
        //Perform policy selects
        
        Query query = em.createQuery("Select p from PolicyEntity p where p.policyId=:pid");
        Query queryscope = em.createQuery("Select p from PolicyEntity p where p.scope=:s");
        
        query.setParameter("pid", p1.getPolicyId());
        queryscope.setParameter("s", "com.user");
        
        //Just test that we are retrieving the right object
        @SuppressWarnings("rawtypes")
        List psList = queryscope.getResultList();
        PolicyEntity px = null;
        if(!psList.isEmpty()){
        	//ignores multiple results
        	px = (PolicyEntity) psList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No PolicyEntity using scope DB entry found");
        }
        
        //The scope object on the retrieved policy object should be same as the one we used to find it
        assertSame(p1,px);
        
       
        //Because getSingleResult() throws an unchecked exception which is an indication of a 
        //programming error, we are not going to use it.
        @SuppressWarnings("rawtypes")
		List resultList = query.getResultList();
        PolicyEntity p2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            p2 = (PolicyEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No PolicyEntity DB entry found");
        }
        
        logger.debug("\n\n********PolicyEntityTest: PolicyEntity object after retrieving from DB BEFORE assigning configurationData*********"
        		+ "\npolicyId2 = " + p2.getPolicyId()
        		+ "\npolicyName2 = " + p2.getPolicyName()
        		+ "\nversion2 = " + p2.getVersion()
        		+ "\npolicyData2 = " + p2.getPolicyData()
        		+ "\nconfigurationData2 = " + (p2.getConfigurationData()!=null ? "configurationDataId = " + p2.getConfigurationData().getConfigurationDataId() : "configurationData is null")
        		+ "\nactionBody2 = " + (p2.getActionBodyEntity()!=null ? "actionBodyId = " + p2.getActionBodyEntity().getActionBodyId() : "actionBody is null")
        		+ "\nscope2 = " + p2.getScope()
        		+ "\ncreatedBy2 = " + p2.getCreatedBy()
        		+ "\ncreatedDate2 = " + p2.getCreatedDate()
        		+ "\ndescription2 = " + p2.getDescription()
        		+ "\nmodifiedBy2 = " + p2.getModifiedBy()
        		+ "\nmodifiedDate2 = " + p2.getModifiedDate()
        		+ "\ndeleted2 = " + p2.isDeleted());

        //Confirm that the retrieved policy object is the same as the persisted object
        assertSame(p1,p2);
        
        //Perform configurationData selects
        Query query2 = em.createQuery("Select c from ConfigurationDataEntity c where c.configurationDataId=:cid");
        
        query2.setParameter("cid", c1.getConfigurationDataId());
        
        //Get the database version of the Configuration Data
		resultList = query2.getResultList();
        ConfigurationDataEntity c2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            c2 = (ConfigurationDataEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No ConfigurationDataEntity DB entry found");
        }
        
        logger.debug("\n\n********PolicyEntityTest: Configuration object after retrieving from DB BEFORE assigning to policy*********"
        		+ "\nconfigurationDataId2 = " + c2.getConfigurationDataId()
        		+ "\nversion2 = " + c2.getVersion()
        		+ "\nconfigType2 = " + c2.getConfigType()
        		+ "\nconfigBody2 = " + c2.getConfigBody()
        		+ "\ncreatedBy2 = " + c2.getCreatedBy()
        		+ "\ncreatedDate2 = " + c2.getCreatedDate()
        		+ "\ndescription2 = " + c2.getDescription()
        		+ "\nmodifiedBy2 = " + c2.getModifiedBy()
        		+ "\nmodifiedDate2 = " + c2.getModifiedDate()
        		+ "\ndeleted2 = " + c2.isDeleted());
        
        //Confirm the retrieved ConfigurationDataEntity object is the same as the persisted
        assertSame(c1,c2);
        
        //Now assign the configurationData to the policy 
        p1.setConfigurationData(c1);
        
        //Perform actionBody selects
        Query querya2 = em.createQuery("Select a from ActionBodyEntity a where a.actionBodyId=:aid");
        
        querya2.setParameter("aid", a1.getActionBodyId());
        
        //Get the database version of the Action Body
		resultList = querya2.getResultList();
        ActionBodyEntity a2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            a2 = (ActionBodyEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No ActionBodyEntity DB entry found");
        }
        
        
        logger.debug("\n\n********PolicyEntityTest: Local Action Body object after retrieving from DB BEFORE assigning to policy *********"
        		+ "\nactionBodyId2 = " + a2.getActionBodyId()
        		+ "\nactionBodyVersion2 = " + a2.getVersion()
        		+ "\nactionBody2 = " + a2.getActionBody()
        		+ "\nactionBodyCeatedBy2 = " + a2.getCreatedBy()
        		+ "\nactionBodyCreatedDate2 = " + a2.getCreatedDate()
        		+ "\nactionBodyModifiedBy2 = " + a2.getModifiedBy()
        		+ "\nactionBodyModifiedDate2 = " + a2.getModifiedDate()
        		+ "\nactionBodyDeleted2 = " + a2.isDeleted());        

        
        //Confirm the retrieved ActionBodyEntity object is the same as the persisted
        assertSame(a1,a2);
        
        //Now assign the ActionBodyEntity to the policy 
        p1.setActionBodyEntity(a1);

        em.flush();
        
        //Let's retrieve the policy, configurationData and actionBody from the DB and look at them
        //Here is the policy object
        resultList = query.getResultList();
        p2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            p2 = (PolicyEntity) resultList.get(0);
        }else{
        	fail("PolicyEntityTest: No PolicyEntity DB entry found");
        }
        
        logger.debug("\n\n********PolicyEntityTest: PolicyEntity object after retrieving from DB AFTER assigning configurationData*********"
        		+ "\npolicyId2 = " + p2.getPolicyId()
        		+ "\npolicyName2 = " + p2.getPolicyName()
        		+ "\nversion2 = " + p2.getVersion()
        		+ "\npolicyData2 = " + p2.getPolicyData()
        		+ "\nconfigurationData2 = " + (p2.getConfigurationData()!=null ? "configurationDataId = " + p2.getConfigurationData().getConfigurationDataId() : "configurationData is null")
        		+ "\nactionBody2 = " + (p2.getActionBodyEntity()!=null ? "actionBodyId = " + p2.getActionBodyEntity().getActionBodyId() : "actionBody is null")
        		+ "\nscope2 = " + p2.getScope()
        		+ "\ncreatedBy2 = " + p2.getCreatedBy()
        		+ "\ncreatedDate2 = " + p2.getCreatedDate()
        		+ "\ndescription2 = " + p2.getDescription()
        		+ "\nmodifiedBy2 = " + p2.getModifiedBy()
        		+ "\nmodifiedDate2 = " + p2.getModifiedDate()
        		+ "\ndeleted2 = " + p2.isDeleted());

        //And now the ConfigurationDataEntity object
		resultList = query2.getResultList();
        c2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            c2 = (ConfigurationDataEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No ConfigurationDataEntity DB entry found");
        }
        
        logger.debug("\n\n********PolicyEntityTest: Configuration object after retrieving from DB AFTER assigning to policy*********"
        		+ "\nconfigurationDataId2 = " + c2.getConfigurationDataId()
        		+ "\nversion2 = " + c2.getVersion()
        		+ "\nconfigType2 = " + c2.getConfigType()
        		+ "\nconfigBody2 = " + c2.getConfigBody()
        		+ "\ncreatedBy2 = " + c2.getCreatedBy()
        		+ "\ncreatedDate2 = " + c2.getCreatedDate()
        		+ "\ndescription2 = " + c2.getDescription()
        		+ "\nmodifiedBy = " + c2.getModifiedBy()
        		+ "\nmodifiedDate = " + c2.getModifiedDate()
        		+ "\ndeleted2 = " + c2.isDeleted());
        
        
        //Get the database version of the Action Body
		resultList = querya2.getResultList();
        a2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            a2 = (ActionBodyEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No ActionBodyEntity DB entry found");
        }
        
        
        logger.debug("\n\n********PolicyEntityTest: Local Action Body object after retrieving from DB AFTER assigning to policy *********"
        		+ "\nactionBodyId2 = " + a2.getActionBodyId()
        		+ "\nactionBodyVersion2 = " + a2.getVersion()
        		+ "\nactionBody2 = " + a2.getActionBody()
        		+ "\nactionBodyCeatedBy2 = " + a2.getCreatedBy()
        		+ "\nactionBodyCreatedDate2 = " + a2.getCreatedDate()
        		+ "\nactionBodyModifiedBy2 = " + a2.getModifiedBy()
        		+ "\nactionBodyModifiedDate2 = " + a2.getModifiedDate()
        		+ "\nactionBodyDeleted2 = " + a2.isDeleted());        

        
        //****Now lets see if the orphanRemoval=true does anything useful***
        //Remove the configurationData from the policy relationship
        
        p1.setConfigurationData(null);
        
        p1.setActionBodyEntity(null);
        
        //flush the update to the DB
        em.flush();
        
        //Attempt to retrieve the configuration data object from the db. It should not be there
        //Reusing the previous query
		resultList = query2.getResultList();
        c2 = null;
        if(resultList.isEmpty()){
        	logger.debug("\n\n********PolicyEntityTest: orphanRemoval=true******"
        			+ "\n Success!! No ConfigurationDataEntity DB entry found");
            
        }else{
        	c2 = (ConfigurationDataEntity) resultList.get(0);
        	fail("\nPolicyEntityTest: ConfigurationDataEntity DB entry found - and none should exist"
        			+ "\nconfigurationDataId = " + c2.getConfigurationDataId());
        }
        
        //Attempt to retrieve the actionBody data object from the db. It should not be there
        //Reusing the previous query
		resultList = querya2.getResultList();
        a2 = null;
        if(resultList.isEmpty()){
        	logger.debug("\n\n********PolicyEntityTest: orphanRemoval=true******"
        			+ "\n Success!! No ActionBodyEntity DB entry found");
            
        }else{
        	a2 = (ActionBodyEntity) resultList.get(0);
        	fail("\nPolicyEntityTest: ActionBodyEntity DB entry found - and none should exist"
        			+ "\nactionBodyId = " + a2.getActionBodyId());
        }
        
        //Now lets put the configurationData and actionBody back into the policy object and see what appears
        //in the DB after a flush
        
        //put c1 back into the persistence context since the orphanRemoval removed it.
        em.persist(c1);
        p1.setConfigurationData(c1);
        
        em.persist(a1);
        p1.setActionBodyEntity(a1);
        
        em.flush();
        
        //retrieve the policy object
		resultList = query.getResultList();
        p2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            p2 = (PolicyEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest: No PolicyEntity DB entry found");
        }
        
        //output what we policy object found
        logger.debug("\n\n********PolicyEntityTest: PolicyEntity object after again adding ConfigurationDataEntity and retrieving from DB*********"
        		+ "\npolicyId2 = " + p2.getPolicyId()
        		+ "\npolicyName2 = " + p2.getPolicyName()
        		+ "\nversion2 = " + p2.getVersion()
        		+ "\npolicyData2 = " + p2.getPolicyData()
        		+ "\nconfigurationData2 = " + (p2.getConfigurationData()!=null ? "configurationDataId = " + p2.getConfigurationData().getConfigurationDataId() : "configurationData is null")
        		+ "\nactionBody2 = " + (p2.getActionBodyEntity()!=null ? "actionBodyId = " + p2.getActionBodyEntity().getActionBodyId() : "actionBody is null")
        		+  "\nscope2 = " + p2.getScope()
        		+ "\ncreatedBy2 = " + p2.getCreatedBy()
        		+ "\ncreatedDate2 = " + p2.getCreatedDate()
        		+ "\ndescription2 = " + p2.getDescription()
        		+ "\nmodifiedBy2 = " + p2.getModifiedBy()
        		+ "\nmodifiedDate2 = " + p2.getModifiedDate()
        		+ "\ndeleted2 = " + p2.isDeleted());


        //now lets see if it put the configurationData c1 back into the table
		resultList = query2.getResultList();
        c2 = null;
        if(!resultList.isEmpty()){
            // ignores multiple results
            c2 = (ConfigurationDataEntity) resultList.get(0);
        }else{
        	fail("\nPolicyEntityTest - Check re-entry of configurationData into DB"
        			+ "No ConfigurationDataEntity DB entry found");
        }
        
        //output what configurationData object we found
        logger.debug("\n\n********PolicyEntityTest: Configuration object after re-enter into policy object and retrieving from DB *********"
        		+ "\nconfigurationDataId2 = " + c2.getConfigurationDataId()
        		+ "\nversion2 = " + c2.getVersion()
        		+ "\nconfigType2 = " + c2.getConfigType()
        		+ "\nconfigBody2 = " + c2.getConfigBody()
        		+ "\ncreatedBy2 = " + c2.getCreatedBy()
        		+ "\ncreatedDate2 = " + c2.getCreatedDate()
        		+ "\ndescription2 = " + c2.getDescription()
        		+ "\nmodifiedBy = " + c2.getModifiedBy()
        		+ "\nmodifiedDate = " + c2.getModifiedDate()
        		+ "\ndeleted2 = " + c2.isDeleted());

        //now lets see if it put the actionBody a1 back into the table
        //Get the database version of the Action Body
 		resultList = querya2.getResultList();
         a2 = null;
         if(!resultList.isEmpty()){
             // ignores multiple results
             a2 = (ActionBodyEntity) resultList.get(0);
         }else{
         	fail("\nPolicyEntityTest - Check re-entry of actionBody into DB"
        			+ "No ActionBodyEntity DB entry found");
         }
         
         logger.debug("\n\n********PolicyEntityTest: Local Action Body object after re-enter into policy object and retrieving from DB *********"
         		+ "\nactionBodyId2 = " + a2.getActionBodyId()
         		+ "\nactionBodyVersion2 = " + a2.getVersion()
         		+ "\nactionBody2 = " + a2.getActionBody()
         		+ "\nactionBodyCeatedBy2 = " + a2.getCreatedBy()
         		+ "\nactionBodyCreatedDate2 = " + a2.getCreatedDate()
         		+ "\nactionBodyModifiedBy2 = " + a2.getModifiedBy()
         		+ "\nactionBodyModifiedDate2 = " + a2.getModifiedDate()
         		+ "\nactionBodyDeleted2 = " + a2.isDeleted());        

        //I want to save all the above in the DB
        try{
        	et.commit();
        	logger.debug("\n\n***********PolicyEntityTest: et.commit Succeeded********");
        }catch(Exception e){
        	logger.debug("\n\n***********PolicyEntityTest: et.commit Failed********"
        			+ "\nTRANSACTION ROLLBACK "
        			+ "\n   with exception: " + e);
        }

        // Start a new transaction
        EntityTransaction et2 = em.getTransaction();

        et2.begin();
        
        //Let's test if the PolicyEntity uniqueConstraint for policyName and scopeId hold
        PolicyEntity p3 = new PolicyEntity();
        em.persist(p3);

    	
    	//first let's assure that you can save with the same name but a different scope
    	p3.setPolicyName(p1.getPolicyName());
    	p3.setScope("mckiou.kevin.kory");
    	em.flush();
    	logger.debug("\n\n***********PolicyEntityTest: PolicyEntity Unique test for policyName and scope********"
    			+ "\nSuccess!  PolicyEntity uniqueness constraint allowed "
    			+ "\n   policyId1 " + p1.getPolicyId() 
    			+ "\n   policyName1 " + p1.getPolicyName() 
    			+ "\n   scope1 = " + p1.getScope()
    			+ "\n   policyId3 " + p3.getPolicyId() 
    			+ "\n   policyName3 " + p3.getPolicyName() 
    			+ "\n   scope3 = " + p3.getScope());

    	//Assert that the policyIds are NOT the same to show that the automatic sequencing is working
    	assert(p1.getPolicyId() != p3.getPolicyId());

    	try{
        	//Now set the scope the same to verify the uniqueness constraint will be enforced
        	p3.setScope(p1.getScope());
        	
        	em.flush();
        	fail("\n\n***********PolicyEntityTest: PolicyEntity Unique test for policyName and scope********"
        			+ "\nFailed! PolicyEntity Uniqueness constraint FAILED and DID allow "
        			+ "\n   policyId1 " + p1.getPolicyId() 
        			+ "\n   policyName1 " + p1.getPolicyName() 
        			+ "\n   scope1 = " + p1.getScope()
        			+ "\n   policyId3 " + p3.getPolicyId() 
        			+ "\n   policyName3 " + p3.getPolicyName() 
        			+ "\n   scope3 = " + p3.getScope());;
        }
        catch(Exception e){
        	//Success
        	logger.debug("\n\n***********PolicyEntityTest: PolicyEntity Unique test for policyName and scope********"
        			+ "\nSuccess!  PolicyEntity Uniqueness constraint SUCCEEDED and did NOT allow "
        			+ "\n   policyId1 " + p1.getPolicyId() 
        			+ "\n   policyName1 " + p1.getPolicyName() 
        			+ "\n   scope1 = " + p1.getScope()
        			+ "\n   policyId3 " + p3.getPolicyId() 
        			+ "\n   policyName3 " + p3.getPolicyName() 
        			+ "\n   scope3 = " + p3.getScope()
        			+ "\n   with excpetion: " + e);
        }

    	
        try{
        	et2.commit();
        	logger.debug("\n\n***********PolicyEntityTest: et2.commit Succeeded********");
        }catch(Exception e){
        	logger.debug("\n\n***********PolicyEntityTest: et2.commit Failed********"
        			+ "\nTRANSACTION ROLLBACK "
        			+ "\n   with exception: " + e);
        }
        
        //****************Test the PolicyDBDaoEntity************************
        
        //Create a transaction
        EntityTransaction et3 = em.getTransaction();

        et3.begin();
        
        //create one 
        PolicyDBDaoEntity pe1 = new PolicyDBDaoEntity();
        em.persist(pe1);
        
        pe1.setDescription("This is pe1");
        
        pe1.setPolicyDBDaoUrl("http://10.11.12.13:2345");
        
        //push it to the DB
        em.flush();
        
        //create another
        PolicyDBDaoEntity pe2 = new PolicyDBDaoEntity();
        em.persist(pe2);
        
        pe2.setDescription("This is pe2");
        
        pe2.setPolicyDBDaoUrl("http://10.11.12.13:2345");
        
        //Print them to the log before flushing
        logger.debug("\n\n***********PolicyEntityTest: PolicyDBDaoEntity objects before flush********"
    			+ "\n   policyDBDaoUrl-1 = " + pe1.getPolicyDBDaoUrl()
    			+ "\n   description-1 = " + pe1.getDescription()
    			+ "\n   createdDate-1 = " + pe1.getCreatedDate()
    			+ "\n   modifiedDate-1 " + pe1.getModifiedDate()
    			+ "\n*****************************************"
    			+ "\n   policyDBDaoUrl-2 = " + pe2.getPolicyDBDaoUrl()
    			+ "\n   description-2 = " + pe2.getDescription()
    			+ "\n   createdDate-2 = " + pe2.getCreatedDate()
    			+ "\n   modifiedDate-2 " + pe2.getModifiedDate()
        		);
        
        //push it to the DB
        em.flush();
        
        //Now let's retrieve them from the DB using the named query
        
		resultList = em.createNamedQuery("PolicyDBDaoEntity.findAll").getResultList();

		PolicyDBDaoEntity pex = null;
		PolicyDBDaoEntity pey = null;
		
        if(!resultList.isEmpty()){
        	if (resultList.size() != 2){
        		fail("\nPolicyEntityTest: Number of PolicyDBDaoEntity entries = " + resultList.size() + " instead of 2");
        	}
        	for(Object policyDBDaoEntity: resultList){
        		PolicyDBDaoEntity pdbdao = (PolicyDBDaoEntity)policyDBDaoEntity;
        		if(pdbdao.getPolicyDBDaoUrl().equals("http://10.11.12.13:2345")){
        			pex = pdbdao;
        		}else if(pdbdao.getPolicyDBDaoUrl().equals("http://10.11.12.13:2345")){
        			pey = pdbdao;
        		}
        	}
        	
            //Print them to the log before flushing
            logger.debug("\n\n***********PolicyEntityTest: PolicyDBDaoEntity objects retrieved from DB********"
        			+ "\n   policyDBDaoUrl-x = " + pex.getPolicyDBDaoUrl()
        			+ "\n   description-x = " + pex.getDescription()
        			+ "\n   createdDate-x = " + pex.getCreatedDate()
        			+ "\n   modifiedDate-x " + pex.getModifiedDate()
        			+ "\n*****************************************"
        			+ "\n   policyDBDaoUrl-y = " + pey.getPolicyDBDaoUrl()
        			+ "\n   description-y = " + pey.getDescription()
        			+ "\n   createdDate-y = " + pey.getCreatedDate()
        			+ "\n   modifiedDate-y " + pey.getModifiedDate()
            		);
        	//Verify the retrieved objects are the same as the ones we stored in the DB
        	if(pex.getPolicyDBDaoUrl().equals("http://10.11.12.13:2345")){
        		assertSame(pe1,pex);
        		assertSame(pe2,pey);
        	}else{
        		assertSame(pe2,pex);
        		assertSame(pe1,pey);
        	}
            
        }else{
        	fail("\nPolicyEntityTest: No PolicyDBDaoEntity DB entry found");
        }
       
        //Now let's see if we can do an update on the PolicyDBDaoEntity which we retrieved.
        //em.persist(pex);
        pex.setDescription("This is pex");
        em.flush();
        
        //retrieve it
        Query createPolicyQuery = em.createQuery("SELECT p FROM PolicyDBDaoEntity p WHERE p.description=:desc");
		resultList = createPolicyQuery.setParameter("desc", "This is pex").getResultList();
		
		PolicyDBDaoEntity pez = null;
        
        if(!resultList.isEmpty()){
        	if (resultList.size() != 1){
        		fail("\nPolicyEntityTest: Update Test - Number of PolicyDBDaoEntity entries = " + resultList.size() + " instead of 1");
        	}
        	pez = (PolicyDBDaoEntity) resultList.get(0);
        	
            //Print them to the log before flushing
            logger.debug("\n\n***********PolicyEntityTest: Update Test - PolicyDBDaoEntity objects retrieved from DB********"
        			+ "\n   policyDBDaoUrl-x = " + pex.getPolicyDBDaoUrl()
        			+ "\n   description-x = " + pex.getDescription()
        			+ "\n   createdDate-x = " + pex.getCreatedDate()
        			+ "\n   modifiedDate-x " + pex.getModifiedDate()
        			+ "\n*****************************************"
        			+ "\n   policyDBDaoUrl-z = " + pez.getPolicyDBDaoUrl()
        			+ "\n   description-z = " + pez.getDescription()
        			+ "\n   createdDate-z = " + pez.getCreatedDate()
        			+ "\n   modifiedDate-z " + pez.getModifiedDate()
            		);
        	//Verify the retrieved objects are the same as the ones we stored in the DB
       		assertSame(pex,pez);
        }else{
        	fail("\nPolicyEntityTest: Update Test - No PolicyDBDaoEntity DB updated entry found");
        }
        
        //Clean up the DB
        em.createQuery("DELETE FROM PolicyDBDaoEntity").executeUpdate();
        em.createQuery("DELETE FROM PolicyEntity").executeUpdate();
        em.createQuery("DELETE FROM ConfigurationDataEntity").executeUpdate();
        em.createQuery("DELETE FROM ActionBodyEntity").executeUpdate();
        
        //Wrap up the transaction
        try{
        	et3.commit();
        	logger.debug("\n\n***********PolicyEntityTest: et3.commit Succeeded********");
        }catch(Exception e){
        	logger.debug("\n\n***********PolicyEntityTest: et3.commit Failed********"
        			+ "\nTRANSACTION ROLLBACK "
        			+ "\n   with exception: " + e);
        }
         
        
        //Tidy up
        em.close();
    }
    
}