aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src/test/java/org/onap/aai/serialization/db/DbSerializerTest.java
blob: 282f64576d023d59f08ea6d2653fa5f0734955a8 (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
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 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.onap.aai.serialization.db;

import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.*;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.when;

import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.*;

import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
import org.apache.tinkerpop.gremlin.structure.Edge;
import org.apache.tinkerpop.gremlin.structure.Graph;
import org.apache.tinkerpop.gremlin.structure.T;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph;
import org.janusgraph.core.JanusGraphFactory;
import org.junit.*;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.onap.aai.AAISetup;
import org.onap.aai.db.props.AAIProperties;
import org.onap.aai.edges.EdgeIngestor;
import org.onap.aai.edges.enums.EdgeType;
import org.onap.aai.exceptions.AAIException;
import org.onap.aai.introspection.Introspector;
import org.onap.aai.introspection.Loader;
import org.onap.aai.introspection.ModelType;
import org.onap.aai.parsers.query.QueryParser;
import org.onap.aai.serialization.engines.JanusGraphDBEngine;
import org.onap.aai.serialization.engines.QueryStyle;
import org.onap.aai.serialization.engines.TransactionalGraphEngine;
import org.onap.aai.setup.SchemaVersion;
import org.onap.aai.util.AAIConstants;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.annotation.DirtiesContext;

@RunWith(value = Parameterized.class)
@DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
public class DbSerializerTest extends AAISetup {

    // to use, set thrown.expect to whatever your test needs
    // this line establishes default of expecting no exception to be thrown
    @Rule
    public ExpectedException thrown = ExpectedException.none();

    protected static Graph graph;

    @Autowired
    protected EdgeSerializer edgeSer;
    @Autowired
    protected EdgeIngestor ei;

    private SchemaVersion version;
    private final ModelType introspectorFactoryType = ModelType.MOXY;
    private Loader loader;
    private TransactionalGraphEngine dbEngine;
    private TransactionalGraphEngine engine; // for tests that aren't mocking the engine
    private DBSerializer dbser;
    private TransactionalGraphEngine spy;
    private TransactionalGraphEngine.Admin adminSpy;

    @Parameterized.Parameter
    public QueryStyle queryStyle;

    @Parameterized.Parameters(name = "QueryStyle.{0}")
    public static Collection<Object[]> data() {
        return Arrays.asList(new Object[][] {{QueryStyle.TRAVERSAL}, {QueryStyle.TRAVERSAL_URI}});
    }

    @BeforeClass
    public static void init() {
        graph = JanusGraphFactory.build().set("storage.backend", "inmemory").open();

    }

    @Before
    public void setup() throws Exception {
        // createGraph();
        version = schemaVersions.getDefaultVersion();
        loader = loaderFactory.createLoaderForVersion(introspectorFactoryType, version);
        dbEngine = new JanusGraphDBEngine(queryStyle, loader);
        spy = spy(dbEngine);
        adminSpy = spy(dbEngine.asAdmin());

        engine = new JanusGraphDBEngine(queryStyle, loader);
        dbser = new DBSerializer(version, engine, introspectorFactoryType, "AAI-TEST");
    }

    @Test
    public void testFindDeletableDoesNotReturnDuplicates() throws AAIException {

        Vertex genericVnf1 = graph.addVertex("aai-node-type", "generic-vnf", "vnf-id", "vnf1", "vnf-name", "vnfName1");

        Vertex lInterface1 = graph.addVertex("aai-node-type", "l-interface", "interface-name", "lInterface1");
        Vertex lInterface2 = graph.addVertex("aai-node-type", "l-interface", "interface-name", "lInterface2");

        Vertex logicalLink1 = graph.addVertex("aai-node-type", "logical-link", "link-name", "logicalLink1");
        Vertex logicalLink2 = graph.addVertex("aai-node-type", "logical-link", "link-name", "logicalLink2");

        GraphTraversalSource g = graph.traversal();

        edgeSer.addTreeEdge(g, genericVnf1, lInterface1);
        edgeSer.addTreeEdge(g, genericVnf1, lInterface2);
        edgeSer.addEdge(g, lInterface1, logicalLink1);
        edgeSer.addEdge(g, lInterface1, logicalLink2);
        // This line will cause the logical link2 to be found twice under linterface 1
        // and also under the linterface 2 and since in the past deletable returned
        // duplicates this test checks that it shouldn't return duplicates
        edgeSer.addEdge(g, lInterface2, logicalLink2);

        when(spy.asAdmin()).thenReturn(adminSpy);
        when(adminSpy.getTraversalSource()).thenReturn(g);
        when(adminSpy.getReadOnlyTraversalSource()).thenReturn(g);

        List<Vertex> deletableVertexes = spy.getQueryEngine().findDeletable(genericVnf1);
        Set<Vertex> vertexSet = new HashSet<>();

        for (Vertex deletableVertex : deletableVertexes) {
            if (!vertexSet.contains(deletableVertex)) {
                vertexSet.add(deletableVertex);
            } else {
                fail("Find deletable is returning a list of duplicate vertexes");
            }
        }
    }

    @After
    public void tearDown() {
        engine.rollback();
    }

    @AfterClass
    public static void destroy() throws Exception {
        graph.close();
    }

    private void subnetSetup() throws AAIException, UnsupportedEncodingException {
        /*
         * This setus up the test graph, For future junits , add more vertices
         * and edges
         */

        Vertex l3interipv4addresslist_1 = graph.addVertex("aai-node-type", "l3-interface-ipv4-address-list",
                "l3-interface-ipv4-address", "l3-interface-ipv4-address-1", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex subnet_2 = graph.addVertex("aai-node-type", "subnet", "subnet-id", "subnet-id-2", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex l3interipv6addresslist_3 = graph.addVertex("aai-node-type", "l3-interface-ipv6-address-list",
                "l3-interface-ipv6-address", "l3-interface-ipv6-address-3", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex subnet_4 = graph.addVertex("aai-node-type", "subnet", "subnet-id", "subnet-id-4", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex subnet_5 = graph.addVertex("aai-node-type", "subnet", "subnet-id", "subnet-id-5", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex l3network_6 = graph.addVertex("aai-node-type", "l3-network", "network-id", "network-id-6",
                "network-name", "network-name-6", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        GraphTraversalSource g = graph.traversal();
        edgeSer.addEdge(g, l3interipv4addresslist_1, subnet_2);
        edgeSer.addEdge(g, l3interipv6addresslist_3, subnet_4);
        edgeSer.addTreeEdge(g, subnet_5, l3network_6);

        l3interipv4addresslist_1.property(AAIProperties.AAI_URI,
                dbser.getURIForVertex(l3interipv4addresslist_1).toString());
        subnet_2.property(AAIProperties.AAI_URI, dbser.getURIForVertex(subnet_2).toString());
        l3interipv6addresslist_3.property(AAIProperties.AAI_URI,
                dbser.getURIForVertex(l3interipv6addresslist_3).toString());
        subnet_4.property(AAIProperties.AAI_URI, dbser.getURIForVertex(subnet_4).toString());
        subnet_5.property(AAIProperties.AAI_URI, dbser.getURIForVertex(subnet_5).toString());
        l3network_6.property(AAIProperties.AAI_URI, dbser.getURIForVertex(l3network_6).toString());

    }

    private void l3NetworkSetup() throws AAIException, UnsupportedEncodingException {
        /*
         * This setus up the test graph, For future junits , add more vertices
         * and edges
         */

        Vertex l3network1 = graph.addVertex("aai-node-type", "l3-network", "network-id", "network-id-v1",
                "network-name", "network-name-v1", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex l3network2 = graph.addVertex("aai-node-type", "l3-network", "network-id", "network-id-v2",
                "network-name", "network-name-v2", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex subnet1 = graph.addVertex("aai-node-type", "subnet", "subnet-id", "subnet-id-v1", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex subnet2 = graph.addVertex("aai-node-type", "subnet", "subnet-id", "subnet-id-v2", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);

        Vertex l3interipv4addresslist_1 = graph.addVertex("aai-node-type", "l3-interface-ipv4-address-list",
                "l3-interface-ipv4-address", "l3-intr-v1", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex l3interipv6addresslist_1 = graph.addVertex("aai-node-type", "l3-interface-ipv6-address-list",
                "l3-interface-ipv6-address", "l3-interface-ipv6-v1", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);

        GraphTraversalSource g = graph.traversal();
        edgeSer.addTreeEdge(g, subnet1, l3network1);
        edgeSer.addEdge(g, l3interipv4addresslist_1, subnet1);
        edgeSer.addEdge(g, l3interipv6addresslist_1, subnet1);

        edgeSer.addTreeEdge(g, subnet2, l3network2);

        subnet1.property(AAIProperties.AAI_URI, dbser.getURIForVertex(subnet1).toString());
        l3interipv4addresslist_1.property(AAIProperties.AAI_URI,
                dbser.getURIForVertex(l3interipv4addresslist_1).toString());
        l3network1.property(AAIProperties.AAI_URI, dbser.getURIForVertex(l3network1).toString());
        subnet2.property(AAIProperties.AAI_URI, dbser.getURIForVertex(subnet2).toString());
        l3network2.property(AAIProperties.AAI_URI, dbser.getURIForVertex(l3network2).toString());

    }

    private void vserverSetup() throws AAIException, UnsupportedEncodingException {
        /*
         * This setus up the test graph, For future junits , add more vertices
         * and edges
         */

        Vertex vserver1 = graph.addVertex("aai-node-type", "vserver", "vserver-id", "vss1", AAIProperties.AAI_URI,
                "/cloud-infrastructure/cloud-regions/cloud-region/me/123/tenants/tenant/453/vservers/vserver/vss1",
                AAIProperties.AAI_UUID, UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        Vertex lInterface1 = graph.addVertex("aai-node-type", "l-interface", "interface-name", "lIntr1",
                AAIProperties.AAI_UUID, UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex lInterface2 = graph.addVertex("aai-node-type", "l-interface", "interface-name", "lIntr2",
                AAIProperties.AAI_UUID, UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        Vertex logicalLink1 = graph.addVertex("aai-node-type", "logical-link", "link-name", "logLink1",
                AAIProperties.AAI_UUID, UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex logicalLink2 = graph.addVertex("aai-node-type", "logical-link", "link-name", "logLink2",
                AAIProperties.AAI_UUID, UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        Vertex l3interipv4addresslist_1 = graph.addVertex("aai-node-type", "l3-interface-ipv4-address-list",
                "l3-interface-ipv4-address", "l3-intr-ipv4-address-1", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);
        Vertex l3interipv6addresslist_2 = graph.addVertex("aai-node-type", "l3-interface-ipv6-address-list",
                "l3-interface-ipv4-address", "l3-intr-ipv6-address-1", AAIProperties.AAI_UUID,
                UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot",
                AAIProperties.RESOURCE_VERSION, "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot",
                AAIProperties.LAST_MOD_TS, 333L);

        GraphTraversalSource g = graph.traversal();

        edgeSer.addTreeEdge(g, lInterface1, vserver1);
        edgeSer.addTreeEdge(g, lInterface2, vserver1);
        edgeSer.addTreeEdge(g, l3interipv4addresslist_1, lInterface1);
        edgeSer.addTreeEdge(g, l3interipv6addresslist_2, lInterface2);

        edgeSer.addEdge(g, lInterface1, logicalLink1);
        edgeSer.addEdge(g, lInterface2, logicalLink2);

        vserver1.property(AAIProperties.AAI_URI, dbser.getURIForVertex(vserver1).toString());
        lInterface1.property(AAIProperties.AAI_URI, dbser.getURIForVertex(lInterface1).toString());
        lInterface2.property(AAIProperties.AAI_URI, dbser.getURIForVertex(lInterface2).toString());
        l3interipv4addresslist_1.property(AAIProperties.AAI_URI,
                dbser.getURIForVertex(l3interipv4addresslist_1).toString());
        l3interipv6addresslist_2.property(AAIProperties.AAI_URI,
                dbser.getURIForVertex(l3interipv6addresslist_2).toString());
        logicalLink1.property(AAIProperties.AAI_URI, dbser.getURIForVertex(logicalLink1).toString());
        logicalLink2.property(AAIProperties.AAI_URI, dbser.getURIForVertex(logicalLink2).toString());
    }

    @Test
    public void subnetDelWithInEdgesIpv4Test() throws AAIException, UnsupportedEncodingException {
        subnetSetup();
        String expected_message =
                "Object is being reference by additional objects preventing it from being deleted. Please clean up references from the following types [l3-interface-ipv4-address-list]";

        /*
         * This subnet has in-edges with l3-ipv4 and NOT ok to delete
         */
        Vertex subnet = graph.traversal().V().has("aai-node-type", "subnet").has("subnet-id", "subnet-id-2").next();

        String exceptionMessage = testCascadeDelete(subnet);
        assertEquals(expected_message, exceptionMessage);

    }

    @Test
    public void subnetDelWithInEdgesIpv6Test() throws AAIException, UnsupportedEncodingException {
        subnetSetup();
        String expected_message =
                "Object is being reference by additional objects preventing it from being deleted. Please clean up references from the following types [l3-interface-ipv6-address-list]";

        /*
         * This subnet has in-edges with l3-ipv6 and NOT ok to delete
         */
        Vertex subnet = graph.traversal().V().has("aai-node-type", "subnet").has("subnet-id", "subnet-id-4").next();
        String exceptionMessage = testCascadeDelete(subnet);
        assertEquals(expected_message, exceptionMessage);

    }

    @Test
    public void subnetDelWithInEdgesL3network() throws AAIException, UnsupportedEncodingException {
        subnetSetup();
        String expected_message = "";

        /*
         * This subnet has in-edges with l3-network and ok to delete
         */
        Vertex subnet = graph.traversal().V().has("aai-node-type", "subnet").has("subnet-id", "subnet-id-5").next();

        String exceptionMessage = testCascadeDelete(subnet);
        assertEquals(expected_message, exceptionMessage);

    }

    private String testCascadeDelete(Vertex v) throws AAIException {

        GraphTraversalSource traversal = graph.traversal();
        when(spy.asAdmin()).thenReturn(adminSpy);
        when(adminSpy.getTraversalSource()).thenReturn(traversal);
        when(adminSpy.getReadOnlyTraversalSource()).thenReturn(traversal);

        String exceptionMessage = "";
        DBSerializer serializer = new DBSerializer(version, spy, introspectorFactoryType, "AAI_TEST");
        List<Vertex> deletableVertices = spy.getQueryEngine().findDeletable(v);

        try {
            serializer.delete(v, deletableVertices, "resourceVersion", false);
        } catch (AAIException exception) {
            exception.printStackTrace();
            exceptionMessage = exception.getMessage();
        }
        return exceptionMessage;

    }

    @Test
    public void createNewVertexTest() throws AAIException {
        engine.startTransaction();

        Introspector testObj = loader.introspectorFromName("generic-vnf");

        Vertex testVertex = dbser.createNewVertex(testObj);
        Vertex fromGraph = engine.tx().traversal().V().has("aai-node-type", "generic-vnf").toList().get(0);
        assertEquals(testVertex.id(), fromGraph.id());
        assertEquals("AAI-TEST", fromGraph.property(AAIProperties.SOURCE_OF_TRUTH).value());

    }

    @Test
    public void touchStandardVertexPropertiesTest() throws AAIException, InterruptedException {
        engine.startTransaction();

        // if this test runs through too fast the value may not change, causing the test to fail. sleeping ensures a
        // different value
        Thread.sleep(2);
        DBSerializer dbser2 = new DBSerializer(version, engine, introspectorFactoryType, "AAI-TEST-2");
        Vertex vert = graph.addVertex("aai-node-type", "generic-vnf", "aai-uri", "a");

        // Upon first creation of the Vertex and the DBSerializer
        // the source of truth and created-ts should be the same as their modified counterparts
        dbser2.touchStandardVertexProperties(vert, true);
        String createTS = String.valueOf(vert.property(AAIProperties.CREATED_TS).value());
        String modTS = String.valueOf(vert.property(AAIProperties.LAST_MOD_TS).value());
        String sot = (String) vert.property(AAIProperties.SOURCE_OF_TRUTH).value();
        String lastModSOT = (String) vert.property(AAIProperties.LAST_MOD_SOURCE_OF_TRUTH).value();
        assertEquals(createTS, modTS);
        assertEquals(sot, lastModSOT);

        // if this test runs through too fast the value may not change, causing the test to fail. sleeping ensures a
        // different value
        Thread.sleep(2);

        // Not new vertex && new DBSerializer (A new serializer since a new one will be created per transaction)
        // Here the vertex will be modified by a different source of truth
        DBSerializer dbser3 = new DBSerializer(version, engine, introspectorFactoryType, "AAI-TEST-3");
        dbser3.touchStandardVertexProperties(vert, false);
        createTS = String.valueOf(vert.property(AAIProperties.CREATED_TS).value());
        modTS = String.valueOf(vert.property(AAIProperties.LAST_MOD_TS).value());
        sot = (String) vert.property(AAIProperties.SOURCE_OF_TRUTH).value();
        lastModSOT = (String) vert.property(AAIProperties.LAST_MOD_SOURCE_OF_TRUTH).value();
        assertNotEquals(createTS, modTS);
        assertNotEquals(sot, lastModSOT);

        // if this test runs through too fast the value may not change, causing the test to fail. sleeping ensures a
        // different value
        Thread.sleep(2);

        // The currentTimeMillis used for the created-ts and modified-ts is created at DBSerializer instantiation
        // Every REST transaction should create a new DBSerializer - thus a new currentTimeMillis is used at the time of
        // transaction.
        // Using an existing vertex, but treating it as new && using an older DBSerializer
        dbser.touchStandardVertexProperties(vert, true);
        String resverStart = (String) vert.property(AAIProperties.RESOURCE_VERSION).value();
        String lastModTimeStart = String.valueOf(vert.property(AAIProperties.LAST_MOD_TS).value());
        createTS = String.valueOf(vert.property(AAIProperties.CREATED_TS).value());
        modTS = String.valueOf(vert.property(AAIProperties.LAST_MOD_TS).value());
        assertEquals(createTS, modTS);
        assertEquals("AAI-TEST", vert.property(AAIProperties.LAST_MOD_SOURCE_OF_TRUTH).value());

        // if this test runs through too fast the value may not change, causing the test to fail. sleeping ensures a
        // different value
        Thread.sleep(2);

        dbser2.touchStandardVertexProperties(vert, false);
        String resourceVer = (String) vert.property(AAIProperties.RESOURCE_VERSION).value();
        String lastModTs = String.valueOf(vert.property(AAIProperties.LAST_MOD_TS).value());
        String lastModSoT = (String) vert.property(AAIProperties.LAST_MOD_SOURCE_OF_TRUTH).value();

        assertNotEquals(resverStart, resourceVer);
        assertNotEquals(lastModTimeStart, lastModTs);
        assertEquals("AAI-TEST-2", lastModSoT);
    }

    @Test
    public void touchStandardVertexPropertiesAAIUUIDTest() {
        engine.startTransaction();

        Graph graph = TinkerGraph.open();
        Vertex v = graph.addVertex("aai-node-type", "generic-vnf");

        dbser.touchStandardVertexProperties(v, true);

        assertTrue(v.property(AAIProperties.AAI_UUID).isPresent());
        try {
            UUID.fromString((String) v.property(AAIProperties.AAI_UUID).value());
        } catch (IllegalArgumentException e) {
            fail("Vertex uuid is not valid uuid");
        }
    }

    @Test
    public void verifyResourceVersion_SunnyDayTest() throws AAIException {
        engine.startTransaction();

        assertTrue(dbser.verifyResourceVersion("delete", "vnfc", "abc", "abc", "vnfcs/vnfc/vnfcId"));

    }

    @Test
    public void verifyResourceVersion_CreateWithRVTest() throws AAIException {
        engine.startTransaction();

        thrown.expect(AAIException.class);
        thrown.expectMessage("resource-version passed for create of generic-vnfs/generic-vnf/myid");
        dbser.verifyResourceVersion("create", "generic-vnf", null, "old-res-ver", "generic-vnfs/generic-vnf/myid");

    }

    @Test
    public void verifyResourceVersion_MissingRVTest() throws AAIException {
        engine.startTransaction();

        thrown.expect(AAIException.class);
        thrown.expectMessage("resource-version not passed for update of generic-vnfs/generic-vnf/myid");
        dbser.verifyResourceVersion("update", "generic-vnf", "current-res-ver", null, "generic-vnfs/generic-vnf/myid");

    }

    @Test
    public void verifyResourceVersion_MismatchRVTest() throws AAIException {
        engine.startTransaction();

        thrown.expect(AAIException.class);
        thrown.expectMessage("resource-version MISMATCH for update of generic-vnfs/generic-vnf/myid");
        dbser.verifyResourceVersion("update", "generic-vnf", "current-res-ver", "old-res-ver",
                "generic-vnfs/generic-vnf/myid");

    }

    @Test
    public void verifyResourceVersion_DeleteTest() throws AAIException {
        engine.startTransaction();

        assertTrue(dbser.verifyResourceVersion("delete", "generic-vnf", "current-res-ver",
                AAIConstants.AAI_RESVERSION_DISABLED_UUID_DEFAULT, "generic-vnfs/generic-vnf/myid"));

    }

    @Test
    public void trimClassNameTest() {
        assertEquals("GenericVnf", dbser.trimClassName("GenericVnf"));
        assertEquals("GenericVnf", dbser.trimClassName("org.onap.aai.GenericVnf"));
    }

    @Test
    public void getURIForVertexTest() throws AAIException, URISyntaxException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex cr = engine.tx().addVertex("aai-node-type", "cloud-region", "cloud-owner", "me", "cloud-region-id",
                "123", "aai-uri", "/cloud-infrastructure/cloud-regions/cloud-region/me/123");
        Vertex ten = engine.tx().addVertex("aai-node-type", "tenant", "tenant-id", "453");

        edgeSer.addTreeEdge(engine.tx().traversal(), cr, ten);

        ten.property("aai-uri", "/cloud-infrastructure/cloud-regions/cloud-region/me/123/tenants/tenant/453");

        URI compare = new URI("/cloud-infrastructure/cloud-regions/cloud-region/me/123/tenants/tenant/453");
        assertEquals(compare, dbser.getURIForVertex(ten));

        URI compareFailure = new URI("/unknown-uri");
        ten.property("aai-uri").remove();
        assertEquals(compareFailure, dbser.getURIForVertex(ten));

    }

    @Test
    public void getVertexPropertiesTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex vnfc = engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "a-name", "aai-uri",
                "/network/vnfcs/vnfc/a-name", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        edgeSer.addEdge(engine.tx().traversal(), gvnf, vnfc);

        Introspector vnf = dbser.getVertexProperties(gvnf);
        assertEquals("generic-vnf", vnf.getDbName());
        assertEquals("myvnf", vnf.getValue("vnf-id"));

        assertFalse(vnf.marshal(false).contains("relationship-list"));

    }

    @Test
    public void getEdgeBetweenTest() throws AAIException {
        engine.startTransaction();

        Vertex cr =
                engine.tx().addVertex("aai-node-type", "cloud-region", "cloud-owner", "me", "cloud-region-id", "123");
        Vertex ten = engine.tx().addVertex("aai-node-type", "tenant", "tenant-id", "453");

        edgeSer.addTreeEdge(engine.tx().traversal(), cr, ten);

        Edge e = dbser.getEdgeBetween(EdgeType.TREE, ten, cr, null);
        assertEquals("org.onap.relationships.inventory.BelongsTo", e.label());

    }

    @Test
    public void deleteEdgeTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex vnfc = engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "a-name", "aai-uri",
                "/network/vnfcs/vnfc/a-name", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        edgeSer.addEdge(engine.tx().traversal(), gvnf, vnfc);

        Introspector relData = loader.introspectorFromName("relationship-data");
        relData.setValue("relationship-key", "vnfc.vnfc-name");
        relData.setValue("relationship-value", "a-name");
        Introspector relationship = loader.introspectorFromName("relationship");
        relationship.setValue("related-to", "vnfc");
        relationship.setValue("related-link", "/network/vnfcs/vnfc/a-name");
        relationship.setValue("relationship-data", relData);

        assertTrue(dbser.deleteEdge(relationship, gvnf).isPresent());

        assertFalse(engine.tx().traversal().V(gvnf).both("uses").hasNext());
        assertFalse(engine.tx().traversal().V(vnfc).both("uses").hasNext());

    }

    @Test
    public void createEdgeTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf", "aai-uuid", "a");
        Vertex vnfc = engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "a-name", "aai-uri",
                "/network/vnfcs/vnfc/a-name", "aai-uuid", "b");

        // sunny day case
        Introspector relData = loader.introspectorFromName("relationship-data");
        relData.setValue("relationship-key", "vnfc.vnfc-name");
        relData.setValue("relationship-value", "a-name");
        Introspector relationship = loader.introspectorFromName("relationship");
        relationship.setValue("related-to", "vnfc");
        relationship.setValue("related-link", "/network/vnfcs/vnfc/a-name");
        relationship.setValue("relationship-data", relData);

        assertNotNull(dbser.createEdge(relationship, gvnf));
        assertTrue(engine.tx().traversal().V(gvnf).both("org.onap.relationships.inventory.BelongsTo").hasNext());
        assertTrue(engine.tx().traversal().V(vnfc).both("org.onap.relationships.inventory.BelongsTo").hasNext());

    }

    @Test
    public void createCousinEdgeThatShouldBeTreeTest()
            throws AAIException, UnsupportedEncodingException, URISyntaxException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf");
        Vertex vf = engine.tx().addVertex("aai-node-type", "vf-module", "vf-module-id", "vf-id", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf/vf-modules/vf-module/vf-id");

        edgeSer.addTreeEdge(engine.tx().traversal(), gvnf, vf);

        Introspector relationship = loader.introspectorFromName("relationship");
        relationship.setValue("related-to", "vf-module");
        relationship.setValue("related-link", dbser.getURIForVertex(vf).toString());
        Introspector relationshipList = loader.introspectorFromName("relationship-list");
        relationshipList.setValue("relationship", Collections.singletonList(relationship.getUnderlyingObject()));

        Introspector gvnfObj = loader.introspectorFromName("generic-vnf");
        Vertex gvnf2 = dbser.createNewVertex(gvnfObj);
        gvnfObj.setValue("relationship-list", relationshipList.getUnderlyingObject());
        gvnfObj.setValue("vnf-id", "myvnf-1");

        QueryParser uriQuery =
                dbEngine.getQueryBuilder().createQueryFromURI(new URI("/network/generic-vnfs/generic-vnf/myvnf-1"));

        try {
            dbser.serializeToDb(gvnfObj, gvnf2, uriQuery, null, "test");
        } catch (AAIException e) {
            assertEquals("AAI_6145", e.getCode());
        }
    }

    @Test
    public void createEdgeNodeDoesNotExistExceptionTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf");

        // rainy day case, edge to non-existent object
        Introspector relData = loader.introspectorFromName("relationship-data");
        relData.setValue("relationship-key", "vnfc.vnfc-name");
        relData.setValue("relationship-value", "b-name");
        Introspector relationship = loader.introspectorFromName("relationship");
        relationship.setValue("related-to", "vnfc");
        relationship.setValue("related-link", "/network/vnfcs/vnfc/b-name");
        relationship.setValue("relationship-data", relData);

        thrown.expect(AAIException.class);
        thrown.expectMessage("Node of type vnfc. Could not find object at: /network/vnfcs/vnfc/b-name");
        dbser.createEdge(relationship, gvnf);

    }

    @Test
    public void serializeSingleVertexTopLevelTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Introspector gvnf = loader.introspectorFromName("generic-vnf");
        Vertex gvnfVert = dbser.createNewVertex(gvnf);

        gvnf.setValue("vnf-id", "myvnf");
        gvnf.setValue("vnf-type", "typo");
        dbser.serializeSingleVertex(gvnfVert, gvnf, "test");
        assertTrue(engine.tx().traversal().V().has("aai-node-type", "generic-vnf").has("vnf-id", "myvnf").hasNext());
    }

    @Test
    public void serializeSingleVertexChildTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex cr = engine.tx().addVertex("aai-node-type", "cloud-region", "cloud-owner", "me", "cloud-region-id",
                "123", "aai-uri", "/cloud-infrastructure/cloud-regions/cloud-region/me/123");
        Introspector tenIn = loader.introspectorFromName("tenant");
        Vertex ten = dbser.createNewVertex(tenIn);
        ten.property("aai-uri", cr.property("aai-uri").value().toString() + "/tenants/tenant/453");

        edgeSer.addTreeEdge(engine.tx().traversal(), cr, ten);

        tenIn.setValue("tenant-id", "453");
        tenIn.setValue("tenant-name", "mytenant");

        dbser.serializeSingleVertex(ten, tenIn, "test");

        assertTrue(engine.tx().traversal().V().has("aai-node-type", "tenant").has("tenant-id", "453")
                .has("tenant-name", "mytenant").hasNext());

    }

    @Test
    public void getVertexPropertiesRelationshipHasLabelTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "vnf-123", "aai-uri",
                "/network/generic-vnfs/generic-vnf/vnf-123", "aai-uuid", "a");
        Vertex vnfc = engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "vnfc-123", "aai-uri",
                "/network/vnfcs/vnfc/vnfc-123", "aai-uuid", "b");

        edgeSer.addEdge(engine.tx().traversal(), gvnf, vnfc);

        Introspector obj = loader.introspectorFromName("generic-vnf");
        obj = this.dbser.dbToObject(Collections.singletonList(gvnf), obj, AAIProperties.MAXIMUM_DEPTH, false, "false");

        assertEquals("edge label between generic-vnf and vnfs is uses", "org.onap.relationships.inventory.BelongsTo",
                obj.getWrappedValue("relationship-list").getWrappedListValue("relationship").get(0)
                        .getValue("relationship-label"));

    }

    @Test
    public void getVertexPropertiesRelationshipOldVersionNoEdgeLabelTest()
            throws AAIException, UnsupportedEncodingException {

        SchemaVersion version = schemaVersions.getAppRootVersion();
        DBSerializer dbser = new DBSerializer(version, engine, introspectorFactoryType, "AAI-TEST");
        Loader loader = loaderFactory.createLoaderForVersion(introspectorFactoryType, version);

        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "vnf-123", "aai-uri",
                "/network/generic-vnfs/generic-vnf/vnf-123");
        Vertex vnfc = engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "vnfc-123", "aai-uri",
                "/network/vnfcs/vnfc/vnfc-123");

        edgeSer.addEdge(engine.tx().traversal(), gvnf, vnfc);

        Introspector obj = loader.introspectorFromName("generic-vnf");
        obj = dbser.dbToObject(Collections.singletonList(gvnf), obj, AAIProperties.MAXIMUM_DEPTH, false, "false");

        assertFalse("Relationship does not contain edge-property", obj.getWrappedValue("relationship-list")
                .getWrappedListValue("relationship").get(0).hasProperty("relationship-label"));

    }

    @Test
    public void createEdgeWithInvalidLabelTest()
            throws AAIException, UnsupportedEncodingException, SecurityException, IllegalArgumentException {

        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf", "aai-uuid", "a");
        engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "a-name", "aai-uri", "/network/vnfcs/vnfc/a-name",
                "aai-uuid", "b");

        Introspector relData = loader.introspectorFromName("relationship-data");
        relData.setValue("relationship-key", "vnfc.vnfc-name");
        relData.setValue("relationship-value", "a-name");
        Introspector relationship = loader.introspectorFromName("relationship");
        relationship.setValue("related-to", "vnfc");
        relationship.setValue("related-link", "/network/vnfcs/vnfc/a-name");
        relationship.setValue("relationship-data", relData);
        relationship.setValue("relationship-label", "NA");

        thrown.expect(AAIException.class);
        thrown.expectMessage("No rule found");
        thrown.expectMessage("node type: generic-vnf, node type: vnfc, label: NA, type: COUSIN");
        dbser.createEdge(relationship, gvnf);

    }

    @Test
    public void createEdgeUsingIntrospectorTest()
            throws AAIException, UnsupportedEncodingException, SecurityException, IllegalArgumentException {

        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myvnf", "aai-uri",
                "/network/generic-vnfs/generic-vnf/myvnf", "aai-uuid", "a");
        engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "a-name", "aai-uri", "/network/vnfcs/vnfc/a-name",
                "aai-uuid", "b");

        Introspector relData = loader.introspectorFromName("relationship-data");
        relData.setValue("relationship-key", "vnfc.vnfc-name");
        relData.setValue("relationship-value", "a-name");
        Introspector relationship = loader.introspectorFromName("relationship");
        relationship.setValue("related-to", "vnfc");
        relationship.setValue("related-link", "/network/vnfcs/vnfc/a-name");
        relationship.setValue("relationship-data", relData);

        assertEquals("/network/vnfcs/vnfc/a-name", relationship.getValue("related-link"));

        dbser.createEdge(relationship, gvnf);
    }

    @Test
    public void addRelatedToPropertyTest() throws AAIException {
        engine.startTransaction();

        Vertex gvnf = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "myname", "vnf-name", "myname",
                "aai-uri", "/network/generic-vnfs/generic-vnf/myname");
        engine.tx().addVertex("aai-node-type", "vnfc", "vnfc-name", "a-name", "aai-uri", "/network/vnfcs/vnfc/a-name");
        Loader loader = loaderFactory.createLoaderForVersion(ModelType.MOXY, schemaVersions.getAppRootVersion());
        Introspector gv = loader.introspectorFromName("generic-vnf");
        gv.setValue("vnf-name", "myname");

        Introspector rel = loader.introspectorFromName("relationship");
        DBSerializer dbser = new DBSerializer(schemaVersions.getAppRootVersion(), dbEngine, ModelType.MOXY, "AAI-TEST");
        dbser.addRelatedToProperty(rel, gvnf, "generic-vnf");
        List<Introspector> relToProps = rel.getWrappedListValue("related-to-property");
        assertThat(relToProps.size(), is(1));
        Introspector relToProp = relToProps.get(0);
        assertThat(relToProp.getValue("property-key"), is("generic-vnf.vnf-name"));
        assertThat(relToProp.getValue("property-value"), is("myname"));
    }

    @Test
    public void dbToObjectContainerMismatchTest() throws AAIException, UnsupportedEncodingException {
        DBSerializer dbser = new DBSerializer(schemaVersions.getAppRootVersion(), dbEngine, ModelType.MOXY, "AAI-TEST");
        Graph vertexMaker = TinkerGraph.open();
        Vertex a = vertexMaker.addVertex(T.id, "0");
        Vertex b = vertexMaker.addVertex(T.id, "1");
        List<Vertex> vertices = Arrays.asList(a, b);

        Loader loader = loaderFactory.createLoaderForVersion(ModelType.MOXY, schemaVersions.getAppRootVersion());
        Introspector intro = loader.introspectorFromName("image"); // just need any non-container object

        thrown.expect(AAIException.class);
        thrown.expectMessage("query object mismatch: this object cannot hold multiple items.");

        dbser.dbToObject(vertices, intro, Integer.MAX_VALUE, true, "doesn't matter");
    }

    @Test
    public void dbToObjectTest() throws AAIException, UnsupportedEncodingException {
        engine.startTransaction();

        DBSerializer dbser = new DBSerializer(version, engine, ModelType.MOXY, "AAI-TEST");
        Vertex gv1 = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "id1");
        Vertex gv2 = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "id2");
        List<Vertex> vertices = Arrays.asList(gv1, gv2);

        Loader loader = loaderFactory.createLoaderForVersion(ModelType.MOXY, version);
        Introspector gvContainer = loader.introspectorFromName("generic-vnfs");

        Introspector res = dbser.dbToObject(vertices, gvContainer, 0, true, "true");
        List<Introspector> gvs = res.getWrappedListValue("generic-vnf");
        assertEquals(2, gvs.size());
        for (Introspector i : gvs) {
            String vnfId = i.getValue("vnf-id");
            assertTrue("id1".equals(vnfId) || "id2".equals(vnfId));
        }

    }

    @Test
    public void getEdgeBetweenNoLabelTest() throws AAIException {
        DBSerializer dbser = new DBSerializer(version, engine, ModelType.MOXY, "AAI-TEST");
        engine.startTransaction();
        Vertex gv = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "id1");
        Vertex lint = engine.tx().addVertex("aai-node-type", "l-interface", "interface-name", "name1");
        edgeSer.addTreeEdge(engine.tx().traversal(), gv, lint);

        Edge res = dbser.getEdgeBetween(EdgeType.TREE, gv, lint);
        assertEquals("org.onap.relationships.inventory.BelongsTo", res.label());

    }

    @Test
    public void deleteItemsWithTraversal() throws AAIException {
        DBSerializer dbser = new DBSerializer(version, engine, ModelType.MOXY, "AAI-TEST");
        engine.startTransaction();
        Vertex gv = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "id1", AAIProperties.AAI_URI,
                "/network/generic-vnfs/generic-vnf/id1", AAIProperties.AAI_UUID, UUID.randomUUID().toString(),
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex lint = engine.tx().addVertex("aai-node-type", "l-interface", "interface-name", "name1",
                AAIProperties.AAI_URI, "/network/generic-vnfs/generic-vnf/id1/l-interfaces/l-interface/name1",
                AAIProperties.AAI_UUID, UUID.randomUUID().toString(), AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);

        assertTrue(engine.tx().traversal().V().has("vnf-id", "id1").hasNext());
        assertTrue(engine.tx().traversal().V().has("interface-name", "name1").hasNext());

        dbser.deleteWithTraversal(gv);
        dbser.deleteWithTraversal(lint);

        assertFalse(engine.tx().traversal().V().has("vnf-id", "id1").hasNext());
        assertFalse(engine.tx().traversal().V().has("interface-name", "name1").hasNext());

    }

    @Test
    public void serializeToDbWithParentTest() throws AAIException, UnsupportedEncodingException, URISyntaxException {
        DBSerializer dbser = new DBSerializer(version, engine, ModelType.MOXY, "AAI-TEST");
        engine.startTransaction();
        Vertex gv = engine.tx().addVertex("aai-node-type", "generic-vnf", "vnf-id", "id1", "aai-uri",
                "/network/generic-vnfs/generic-vnf/id1", "aai-uuid", "a", AAIProperties.CREATED_TS, 123L,
                AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION, "123",
                AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        Vertex lint = engine.tx().addVertex("aai-node-type", "l-interface", "aai-uri", "abc", "aai-uuid", "b",
                AAIProperties.CREATED_TS, 123L, AAIProperties.SOURCE_OF_TRUTH, "sot", AAIProperties.RESOURCE_VERSION,
                "123", AAIProperties.LAST_MOD_SOURCE_OF_TRUTH, "lmsot", AAIProperties.LAST_MOD_TS, 333L);
        edgeSer.addTreeEdge(engine.tx().traversal(), gv, lint);

        Introspector lintIntro = loader.introspectorFromName("l-interface");
        lintIntro.setValue("interface-name", "name1");
        lintIntro.setValue("interface-role", "actor");
        URI lintURI = new URI("/network/generic-vnfs/generic-vnf/id1/l-interfaces/l-interface/name1");
        QueryParser uriQuery = engine.getQueryBuilder(gv).createQueryFromURI(lintURI);
        dbser.serializeToDb(lintIntro, lint, uriQuery, "test-identifier", "AAI-TEST");

        assertTrue(engine.tx().traversal().V(lint).has("interface-role", "actor").hasNext());

    }

    @Test
    public void getLatestVersionViewTest() throws AAIException, UnsupportedEncodingException {
        DBSerializer dbser = new DBSerializer(version, engine, ModelType.MOXY, "AAI-TEST");
        engine.startTransaction();
        Vertex phys = engine.tx().addVertex("aai-node-type", "physical-link", "link-name", "zaldo", "speed-value",
                "very-fast", "service-provider-bandwidth-up-units", "things");

        Introspector res = dbser.getLatestVersionView(phys);
        assertEquals("zaldo", res.getValue("link-name"));
        assertEquals("very-fast", res.getValue("speed-value"));
        assertEquals("things", res.getValue("service-provider-bandwidth-up-units"));
    }

    @Test
    public void cascadeVserverDeleteTest() throws AAIException, UnsupportedEncodingException {
        vserverSetup();
        String expected_message = "";

        /*
         * vserver-->l-interface -->logical-link
         * -->l3-ipvx-list
         */
        Vertex vserver = graph.traversal().V().has("aai-node-type", "vserver").has("vserver-id", "vss1").next();

        String exceptionMessage = testCascadeDelete(vserver);
        assertEquals(expected_message, exceptionMessage);

    }

    @Test
    public void cascadeL3NetworkPreventDeleteTest() throws AAIException, UnsupportedEncodingException {
        l3NetworkSetup();
        ArrayList expected_messages = new ArrayList<String>();
        expected_messages.add(
                "Object is being reference by additional objects preventing it from being deleted. Please clean up references from the following types [l3-interface-ipv4-address-list, l3-interface-ipv6-address-list]");
        expected_messages.add(
                "Object is being reference by additional objects preventing it from being deleted. Please clean up references from the following types [l3-interface-ipv6-address-list, l3-interface-ipv4-address-list]");

        /*
         * vserver-->l-interface -->logical-link
         * -->l3-ipvx-list
         */
        Vertex l3network =
                graph.traversal().V().has("aai-node-type", "l3-network").has("network-id", "network-id-v1").next();

        String exceptionMessage = testCascadeDelete(l3network);
        assertTrue(expected_messages.contains(exceptionMessage));

    }

    @Test
    public void cascadeL3NetworkDeleteTest() throws AAIException, UnsupportedEncodingException {
        l3NetworkSetup();
        String expected_message = "";

        /*
         * vserver-->l-interface -->logical-link
         * -->l3-ipvx-list
         */
        Vertex l3network =
                graph.traversal().V().has("aai-node-type", "l3-network").has("network-id", "network-id-v2").next();

        String exceptionMessage = testCascadeDelete(l3network);
        assertEquals(expected_message, exceptionMessage);

    }

}