aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/migration/v15/MigrateInMaintDefaultToFalseTest.java
blob: d02368554a8f460b8cf3190b81139e2168f7b45f (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
/**
 * ============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.migration.v15;

import org.onap.aai.edges.EdgeIngestor;
import org.onap.aai.serialization.db.EdgeSerializer;
import org.onap.aai.serialization.engines.TransactionalGraphEngine;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;

import org.janusgraph.core.JanusGraph;
import org.janusgraph.core.JanusGraphFactory;
import org.janusgraph.core.JanusGraphTransaction;
import org.janusgraph.core.schema.JanusGraphManagement;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
import org.junit.Before;
import org.junit.Test;
import org.onap.aai.AAISetup;
import org.onap.aai.dbmap.DBConnectionType;
import org.onap.aai.introspection.Loader;
import org.onap.aai.introspection.LoaderFactory;
import org.onap.aai.introspection.ModelType;
import org.onap.aai.setup.SchemaVersions;
import org.onap.aai.setup.SchemaVersion;
import org.onap.aai.migration.Status;
import org.onap.aai.migration.v15.MigrateInMaintDefaultToFalse;
import org.onap.aai.migration.v15.MigrateInMaintDefaultToFalseTest.InMaintDefaultMigrator;
import org.onap.aai.serialization.engines.QueryStyle;
import org.onap.aai.serialization.engines.JanusGraphDBEngine;
import org.onap.aai.serialization.engines.TransactionalGraphEngine;

import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.when;

import java.util.HashMap;
import java.util.Map;
import java.util.Optional;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertEquals;

public class MigrateInMaintDefaultToFalseTest extends
		AAISetup {
	protected static final String VNF_NODE_TYPE = "generic-vnf";
	protected static final String LINTERFACE_NODE_TYPE = "l-interface";
	protected static final String LAG_INTERFACE_NODE_TYPE = "lag-interface";
	protected static final String LOGICAL_LINK_NODE_TYPE = "logical-link";
	protected static final String PINTERFACE_NODE_TYPE = "p-interface";
	protected static final String VLAN_NODE_TYPE = "vlan";
	protected static final String VNFC_NODE_TYPE = "vnfc";
	protected static final String VSERVER_NODE_TYPE = "vserver";
	protected static final String PSERVER_NODE_TYPE = "pserver";
	protected static final String PNF_NODE_TYPE = "pnf";
	protected static final String NOS_SERVER_NODE_TYPE = "nos-server";

	public static class InMaintDefaultMigrator extends MigrateInMaintDefaultToFalse {
        public InMaintDefaultMigrator(TransactionalGraphEngine engine, LoaderFactory loaderFactory, EdgeIngestor edgeIngestor, EdgeSerializer edgeSerializer, SchemaVersions schemaVersions){
            super(engine, loaderFactory, edgeIngestor, edgeSerializer, schemaVersions);
        }
        @Override
        public Status getStatus() {
            return Status.SUCCESS;
        }
        @Override
        public Optional<String[]> getAffectedNodeTypes() {
        	return Optional.of(new String[]{VNF_NODE_TYPE,LINTERFACE_NODE_TYPE,LAG_INTERFACE_NODE_TYPE,LOGICAL_LINK_NODE_TYPE,PINTERFACE_NODE_TYPE,VLAN_NODE_TYPE,VNFC_NODE_TYPE,VSERVER_NODE_TYPE,PSERVER_NODE_TYPE,PNF_NODE_TYPE,NOS_SERVER_NODE_TYPE});
        }
        @Override
        public String getMigrationName() {
            return "MockInMaintDefaultMigrator";
        }
    }

    private final static ModelType introspectorFactoryType = ModelType.MOXY;
    private final static QueryStyle queryStyle = QueryStyle.TRAVERSAL;
    private Loader loader;
    private TransactionalGraphEngine dbEngine;
    private InMaintDefaultMigrator migration;
    private GraphTraversalSource g;

    @Before
    public void setup() throws Exception{
        g = tx.traversal();
        loader = loaderFactory.createLoaderForVersion(introspectorFactoryType, schemaVersions.getDefaultVersion());
        dbEngine = new JanusGraphDBEngine(
                queryStyle,
                loader);

        //generic-vnf
        g.addV().property("aai-node-type", "generic-vnf")
                .property("vnf-id", "generic-vnf0")
                .next();
        g.addV().property("aai-node-type", "generic-vnf")
                .property("vnf-id", "generic-vnf1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "generic-vnf")
                .property("vnf-id", "generic-vnf2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "generic-vnf")
        		.property("vnf-id", "generic-vnf3")
        		.property("in-maint", false)
        		.next();        
      //l-interface
        g.addV().property("aai-node-type", "l-interface")
                .property("interface-name", "l-interface0")
                .next();
        g.addV().property("aai-node-type", "l-interface")
                .property("interface-name", "l-interface1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "l-interface")
                .property("interface-name", "l-interface2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "l-interface")
        		.property("interface-name", "l-interface3")
        		.property("in-maint", false)
        		.next();         
      //lag-interface
        g.addV().property("aai-node-type", "lag-interface")
                .property("interface-name", "lag-interface0")
                .next();
        g.addV().property("aai-node-type", "lag-interface")
                .property("interface-name", "lag-interface1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "lag-interface")
                .property("interface-name", "lag-interface2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "lag-interface")
        		.property("interface-name", "lag-interface3")
        		.property("in-maint", false)
        		.next();        
      //logical-link
        g.addV().property("aai-node-type", "logical-link")
                .property("link-name", "logical-link0")
                .next();
        g.addV().property("aai-node-type", "logical-link")
                .property("link-name", "logical-link1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "logical-link")
                .property("link-name", "logical-link2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "logical-link")
        		.property("link-name", "logical-link3")
        		.property("in-maint", false)
        		.next();      
      //p-interface
        g.addV().property("aai-node-type", "p-interface")
                .property("interface-name", "p-interface0")
                .next();
        g.addV().property("aai-node-type", "p-interface")
                .property("interface-name", "p-interface1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "p-interface")
                .property("interface-name", "p-interface2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "p-interface")
        		.property("interface-name", "p-interface3")
        		.property("in-maint", false)
        		.next();        
      //pnf
        g.addV().property("aai-node-type", "pnf")
                .property("pnf-name", "pnf0")
                .next();
        g.addV().property("aai-node-type", "pnf")
                .property("pnf-name", "pnf1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "pnf")
                .property("pnf-name", "pnf2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "pnf")
        		.property("pnf-name", "pnf3")
        		.property("in-maint", false)
        		.next();        
      //pserver
        g.addV().property("aai-node-type", "pserver")
                .property("pserver-id", "pserver0")
                .next();
        g.addV().property("aai-node-type", "pserver")
                .property("pserver-id", "pserver1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "pserver")
                .property("pserver-id", "pserver2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "pserver")
        		.property("pserver-id", "pserver3")
        		.property("in-maint", false)
        		.next();       
      //vlan
        g.addV().property("aai-node-type", "vlan")
                .property("vlan-interface", "vlan0")
                .next();
        g.addV().property("aai-node-type", "vlan")
                .property("vlan-interface", "vlan1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "vlan")
                .property("vlan-interface", "vlan2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "vlan")
        		.property("vlan-interface", "vlan3")
        		.property("in-maint", false)
        		.next();
      //vnfc
        g.addV().property("aai-node-type", "vnfc")
                .property("vnfc-name", "vnfc0")
                .next();
        g.addV().property("aai-node-type", "vnfc")
                .property("vnfc-name", "vnfc1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "vnfc")
                .property("vnfc-name", "vnfc2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "vnfc")
        		.property("vnfc-name", "vnfc3")
        		.property("in-maint", false)
        		.next();
      //vserver
        g.addV().property("aai-node-type", "vserver")
                .property("vserver-id", "vserver0")
                .next();
        g.addV().property("aai-node-type", "vserver")
                .property("vserver-id", "vserver1")
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "vserver")
                .property("vserver-id", "vserver2")
                .property("in-maint", true)
                .property("is-closed-loop-disabled", true)
                .next();
        g.addV().property("aai-node-type", "vserver")
        		.property("vserver-id", "vserver3")
        		.property("in-maint", false)
        		.next();
      //nos-server
        g.addV().property("aai-node-type", "nos-server")
                .property("nos-server-id", "nos-server0")
				.property("nos-server-name", "nos-server-name0")
				.property("vendor", "vendor0")
				.property("nos-server-selflink", "nos-server-selflink0")
                .next();
        g.addV().property("aai-node-type", "nos-server")
                .property("nos-server-id", "nos-server1")
				.property("nos-server-name", "nos-server-name1")
				.property("vendor", "vendor1")
				.property("nos-server-selflink", "nos-server-selflink1")				
                .property("in-maint", "")
                .next();
        g.addV().property("aai-node-type", "nos-server")
                .property("nos-server-id", "nos-server2")
				.property("nos-server-name", "nos-server-name2")
				.property("vendor", "vendor2")
				.property("nos-server-selflink", "nos-server-selflink2")
                .property("in-maint", true)
                .next();
        g.addV().property("aai-node-type", "nos-server")
        		.property("nos-server-id", "nos-server3")
				.property("nos-server-name", "nos-server-name3")
				.property("vendor", "vendor3")
				.property("nos-server-selflink", "nos-server-selflink3")
        		.property("in-maint", false)
        		.next();
        
        TransactionalGraphEngine spy = spy(dbEngine);
        TransactionalGraphEngine.Admin adminSpy = spy(dbEngine.asAdmin());
        GraphTraversalSource traversal = g;
        when(spy.asAdmin()).thenReturn(adminSpy);
        when(adminSpy.getTraversalSource()).thenReturn(traversal);
        migration = new InMaintDefaultMigrator(spy, loaderFactory, edgeIngestor, edgeSerializer, schemaVersions);
        migration.run();
    }

    @Test
    public void testMissingProperty(){
        assertTrue("Value of generic-vnf should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "generic-vnf").has("vnf-id", "generic-vnf0").has("in-maint", false).hasNext());
        assertTrue("Value of l-interface should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "l-interface").has("interface-name", "l-interface0").has("in-maint", false).hasNext());
        assertTrue("Value of lag-interface should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "lag-interface").has("interface-name", "lag-interface0").has("in-maint", false).hasNext());
        assertTrue("Value of logical-link should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "logical-link").has("link-name", "logical-link0").has("in-maint", false).hasNext());
        assertTrue("Value of p-interface should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "p-interface").has("interface-name", "p-interface0").has("in-maint", false).hasNext());
        assertTrue("Value of pnf should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "pnf").has("pnf-name", "pnf0").has("in-maint", false).hasNext());
        assertTrue("Value of pserver should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "pserver").has("pserver-id", "pserver0").has("in-maint", false).hasNext());
        assertTrue("Value of vlan should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "vlan").has("vlan-interface", "vlan0").has("in-maint", false).hasNext());
        assertTrue("Value of vnfc should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "vnfc").has("vnfc-name", "vnfc0").has("in-maint", false).hasNext());
        assertTrue("Value of vserver should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "vserver").has("vserver-id", "vserver0").has("in-maint", false).hasNext());    
        assertTrue("Value of nos-server should be updated since the property in-maint doesn't exist",
                g.V().has("aai-node-type", "nos-server").has("nos-server-id", "nos-server0").has("in-maint", false).hasNext()); 
    }

    @Test
    public void testEmptyValue() {                
        assertTrue("Value of generic-vnf should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "generic-vnf").has("vnf-id", "generic-vnf1").has("in-maint", false).hasNext());
        assertTrue("Value of l-interface should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "l-interface").has("interface-name", "l-interface1").has("in-maint", false).hasNext());
        assertTrue("Value of lag-interface should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "lag-interface").has("interface-name", "lag-interface1").has("in-maint", false).hasNext());
        assertTrue("Value of logical-link should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "logical-link").has("link-name", "logical-link1").has("in-maint", false).hasNext());
        assertTrue("Value of p-interface should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "p-interface").has("interface-name", "p-interface1").has("in-maint", false).hasNext());
        assertTrue("Value of pnf should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "pnf").has("pnf-name", "pnf1").has("in-maint", false).hasNext());
        assertTrue("Value of pserver should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "pserver").has("pserver-id", "pserver1").has("in-maint", false).hasNext());
        assertTrue("Value of vlan should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "vlan").has("vlan-interface", "vlan1").has("in-maint", false).hasNext());
        assertTrue("Value of vnfc should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "vnfc").has("vnfc-name", "vnfc1").has("in-maint", false).hasNext());
        assertTrue("Value of vserver should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "vserver").has("vserver-id", "vserver1").has("in-maint", false).hasNext());
        assertTrue("Value of nos-server should be updated since the value for in-maint is an empty string",
                g.V().has("aai-node-type", "nos-server").has("nos-server-id", "nos-server1").has("in-maint", false).hasNext());
    }
    
    @Test
    public void testExistingTrueValues() {
        assertTrue("Value of generic-vnf shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "generic-vnf").has("vnf-id", "generic-vnf2").has("in-maint", true).hasNext());
        assertTrue("Value of l-interface shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "l-interface").has("interface-name", "l-interface2").has("in-maint", true).hasNext());
        assertTrue("Value of lag-interface shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "lag-interface").has("interface-name", "lag-interface2").has("in-maint", true).hasNext());
        assertTrue("Value of logical-link shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "logical-link").has("link-name", "logical-link2").has("in-maint", true).hasNext());
        assertTrue("Value of p-interface shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "p-interface").has("interface-name", "p-interface2").has("in-maint", true).hasNext());
        assertTrue("Value of pnf shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "pnf").has("pnf-name", "pnf2").has("in-maint", true).hasNext());
        assertTrue("Value of pserver shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "pserver").has("pserver-id", "pserver2").has("in-maint", true).hasNext());
        assertTrue("Value of vlan shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "vlan").has("vlan-interface", "vlan2").has("in-maint", true).hasNext());
        assertTrue("Value of vnfc shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "vnfc").has("vnfc-name", "vnfc2").has("in-maint", true).hasNext());
        assertTrue("Value of vserver shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "vserver").has("vserver-id", "vserver2").has("in-maint", true).hasNext());
        assertTrue("Value of nos-server shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "nos-server").has("nos-server-id", "nos-server2").has("in-maint", true).hasNext());
    }
    
    @Test
    public void testExistingFalseValues() {
        assertTrue("Value of generic-vnf shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "generic-vnf").has("vnf-id", "generic-vnf3").has("in-maint", false).hasNext());
        assertTrue("Value of l-interface shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "l-interface").has("interface-name", "l-interface3").has("in-maint", false).hasNext());
        assertTrue("Value of lag-interface shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "lag-interface").has("interface-name", "lag-interface3").has("in-maint", false).hasNext());
        assertTrue("Value of logical-link shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "logical-link").has("link-name", "logical-link3").has("in-maint", false).hasNext());
        assertTrue("Value of p-interface shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "p-interface").has("interface-name", "p-interface3").has("in-maint", false).hasNext());
        assertTrue("Value of pnf shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "pnf").has("pnf-name", "pnf3").has("in-maint", false).hasNext());
        assertTrue("Value of pserver shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "pserver").has("pserver-id", "pserver3").has("in-maint", false).hasNext());
        assertTrue("Value of vlan shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "vlan").has("vlan-interface", "vlan3").has("in-maint", false).hasNext());
        assertTrue("Value of vnfc shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "vnfc").has("vnfc-name", "vnfc3").has("in-maint", false).hasNext());
        assertTrue("Value of vserver shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "vserver").has("vserver-id", "vserver3").has("in-maint", false).hasNext());
        assertTrue("Value of nos-server shouldn't be updated since in-maint already exists",
                g.V().has("aai-node-type", "nos-server").has("nos-server-id", "nos-server3").has("in-maint", false).hasNext());
    }
}