aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/datasnapshot/DataSnapshotTest4HistInit.java
blob: adcde4e93698e154ddc6bd16bf433cc9ca17c35f (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
/**
 * ============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.datasnapshot;

import org.apache.commons.io.FileUtils;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
import org.apache.tinkerpop.gremlin.structure.Property;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.structure.VertexProperty;

import org.janusgraph.core.JanusGraph;
import org.janusgraph.core.JanusGraphTransaction;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.onap.aai.AAISetup;
import org.onap.aai.datagrooming.DataGrooming;
import org.onap.aai.dbmap.AAIGraph;
import org.onap.aai.exceptions.AAIException;

import org.onap.aai.logging.LogFormatTools;
import org.onap.aai.util.AAISystemExitUtil;
import org.springframework.boot.test.rule.OutputCapture;

import com.beust.jcommander.ParameterException;

import java.lang.NumberFormatException;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.*;


public class DataSnapshotTest4HistInit extends AAISetup {

    private GraphTraversalSource g;
    
    private JanusGraphTransaction currentTransaction;

    private List<Vertex> vertexes;
    
    private DataSnapshot4HistInit dataSnapshot4HistInit;

    @Rule
    public OutputCapture outputCapture = new OutputCapture();

    @Before
    public void setup() throws AAIException {
    	dataSnapshot4HistInit = new DataSnapshot4HistInit(loaderFactory, schemaVersions);
    	
    	JanusGraph graph = AAIGraph.getInstance().getGraph();
        currentTransaction = graph.newTransaction();
        g = currentTransaction.traversal();
        
        // Setup the graph so it has one pserver vertex
        vertexes = setupPserverData(g);
        currentTransaction.commit();
    }

    @After
    public void tearDown(){

        JanusGraph graph = AAIGraph.getInstance().getGraph();
        currentTransaction = graph.newTransaction();
        g = currentTransaction.traversal();

        vertexes.stream().forEach((v) -> g.V(v).next().remove());
        currentTransaction.commit();
    }
    
    @Test
    public void testClearEntireDatabaseAndVerifyDataIsRemoved() throws IOException {

        // Copy the pserver.graphson file from src/test/resoures to ${AJSC_HOME}/logs/data/dataSnapshots/ folder
        String sourceFileName = "src/test/resources/pserver.graphson";
        String destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/pserver.graphson";
        copySnapshotFile(sourceFileName,destFileName);


        // Run the dataSnapshot to clear the graph
        String [] args = {"-c", "CLEAR_ENTIRE_DATABASE", "-f", "pserver.graphson"};
        dataSnapshot4HistInit.executeCommand(args);

        // Since the code doesn't clear the graph using AAIGraph.getInstance().getGraph(), its creating a second inmemory graph
        // so we can't verify this with by counting the vertexes and edges in the graph
        // In the future we could do that but for now we will depend on the following string "All done clearing DB"

        // Capture the standard output and see if the following text is there
        assertThat(outputCapture.toString(), containsString("All done clearing DB"));
    }


    @Test
    public void testClearEntireDatabaseWithEmptyGraphSONFileAndItShouldNotClearDatabase() throws IOException {

        // Create a empty file called empty.graphson in src/test/resources/

        // Copy that file to ${AJSC_HOME}/logs/data/dataSnapshots/
        String sourceFileName = "src/test/resources/empty.graphson";
        String destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/empty.graphson";
        copySnapshotFile(sourceFileName,destFileName);

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","CLEAR_ENTIRE_DATABASE", "-f","empty.graphson"};
        dataSnapshot4HistInit.executeCommand(args);

        // Capture the standard output and see if the following text had no data is there
        // Since the graphson is empty it should output that and not clear the graph
        // Uncomment the following line after the test changes are done
         assertThat(outputCapture.toString(), containsString("graphson had no data."));
    }

    
    @Test
    public void testTakeSnapshotAndItShouldCreateASnapshotFileWithOneVertex() throws IOException, InterruptedException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        Set<Path> preSnapshotFiles = Files.walk(Paths.get(logsFolder)).collect(Collectors.toSet());

        // Run the clear dataSnapshot and this time it should fail
        //String [] args = {"JUST_TAKE_SNAPSHOT"};  >> default behavior is now to use 15 threads
        // To just get one file, you have to tell it to just use one.
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount" ,"1"};

        dataSnapshot4HistInit.executeCommand(args);

        // Add sleep so the file actually gets created with the data

        Set<Path> postSnapshotFiles = Files.walk(Paths.get(logsFolder)).collect(Collectors.toSet());

        assertThat(postSnapshotFiles.size(), is(preSnapshotFiles.size()+1));
        postSnapshotFiles.removeAll(preSnapshotFiles);
        List<Path> snapshotPathList = postSnapshotFiles.stream().collect(Collectors.toList());

        assertThat(snapshotPathList.size(), is(1));

        List<String> fileContents = Files.readAllLines(snapshotPathList.get(0));
        assertThat(fileContents.get(0), containsString("id"));
    }
    

    @Test
    public void testTakeSnapshotMultiAndItShouldCreateMultipleSnapshotFiles() throws IOException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount","2"};

        dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }


    @Test
    public void testTakeSnapshotMultiWithDebugAndItShouldCreateMultipleSnapshotFiles() throws IOException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount","2", "-debugFlag","DEBUG"};

        dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }


    @Test
    public void testTakeSnapshotMultiWithDebugAndInvalidNumberAndItShouldFail() throws IOException {

        boolean thrown = false;
    	String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount","foo","-debugFlag", "DEBUG"};
        
        dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }

    @Test
    public void testTakeSnapshotMultiWithDebugAndTimeDelayAndInvalidNumberAndItShouldFail() throws IOException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT","-threadCount", "foo", "-debugFlag","DEBUG","-debugAddDelayTime", "100"};

       	dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }

    @Test
    public void testTakeSnapshotMultiWithDebugAndTimeDelayAndZeroThreadsAndItShouldFail() throws IOException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount","0", "-debugFlag","DEBUG", "-debugAddDelayTime","100"};

        dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }

    @Test
    public void testTakeSnapshotMultiWithDebugAndTimeDelayIsInvalidNumberAndItShouldFail() throws IOException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT","-threadCount", "0","-debugFlag","DEBUG", "-debugAddDelayTime","foo"};

        dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }

//    @Test
    public void testTakeSnapshotMultiWithMoreParametersThanAllowedAndItShouldFail() throws IOException {

        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount", "0", "-debugFlag","DEBUG",  "-debugAddDelayTime","foo", "bar"};

        dataSnapshot4HistInit.executeCommand(args);

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
    }

    @Test
    public void testTakeSnapshotMultiWithZeroThreadsAndItShouldFail(){

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT", "-threadCount","0"};

        dataSnapshot4HistInit.executeCommand(args);
    }

    @Test
    public void testTakeSnapshotMultiWithInvalidNumberForThreadsAndItShouldFail(){

        // For this test if there is only one vertex in the graph, not sure if it will create multiple files
        // would need to add more data to the janusgraph
        String logsFolder     = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/";

        // Run the clear dataSnapshot and this time it should fail
        String [] args = {"-c","THREADED_SNAPSHOT","-threadCount", "foo"};

        dataSnapshot4HistInit.executeCommand(args);
    }
   

    @Test
    public void testReloadDataAndVerifyDataInGraphMatchesGraphson() throws IOException {

        // Create a graphson file that contains a couple of vertexes in src/test/resources
        // Copy that file to ${AJSC_HOME}/logs/data/dataSnasphots/
        // Run the reload arguments and ensure that the graph was recreated by checking vertexes in graph

        // After reload remove the added vertexes in the graph
        // The reason for this so each test is independent
        // as there shouldn't be dependencies and cause weird issues
        String sourceFileName = "src/test/resources/pserver.graphson";
        String destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/pserver.graphson";
        copySnapshotFile(sourceFileName,destFileName);

        String [] args = {"-c","RELOAD_DATA", "-f","pserver.graphson"};

        dataSnapshot4HistInit.executeCommand(args);
    }

   
    @Test
    public void testMultiReloadDataAndVerifyDataInGraphMatchesGraphson() throws IOException, AAIException {

        // Create multiple graphson files that contains a couple of vertexes in src/test/resources
        // Copy those files to ${AJSC_HOME}/logs/data/dataSnasphots/
        // Run the reload arguments and ensure that the graph was recreated by checking vertexes in graph
        String sourceFileName = "src/test/resources/pserver2.graphson.P0";
        String destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/pserver2.graphson.P0";
        copySnapshotFile(sourceFileName,destFileName);

        sourceFileName = "src/test/resources/pserver2.graphson.P1";
        destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/pserver2.graphson.P1";
        copySnapshotFile(sourceFileName,destFileName);

        // After reload remove the added vertexes in the graph
        // The reason for this so each test is independent
        // as there shouldn't be dependencies and cause weird issues
    	
        String [] args = {"-c","MULTITHREAD_RELOAD","-f", "pserver2.graphson"};
        dataSnapshot4HistInit.executeCommand(args);
        
    }       
    
    @Test
    public void testMultiReloadDataWithNonExistentFilesAndItShouldFail() throws IOException {

        // After reload remove the added vertexes in the graph
        // The reason for this so each test is independent
        // as there shouldn't be dependencies and cause weird issues
        String [] args = {"-c","MULTITHREAD_RELOAD", "-f","emptyfoo2.graphson"};

        dataSnapshot4HistInit.executeCommand(args);
    }

    @Test
    public void testReloadMultiDataAndVerifyDataInGraphMatchesGraphson() throws IOException {

        // Create multiple graphson files that contains a couple of vertexes in src/test/resources
        // Copy those files to ${AJSC_HOME}/logs/data/dataSnasphots/
        // Run the reload arguments and ensure that the graph was recreated by checking vertexes in graph
        String sourceFileName = "src/test/resources/pserver2.graphson.P0";
        String destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/pserver2.graphson.P0";
        copySnapshotFile(sourceFileName,destFileName);

        sourceFileName = "src/test/resources/pserver2.graphson.P1";
        destFileName   = System.getProperty("AJSC_HOME") + "/logs/data/dataSnapshots/pserver2.graphson.P1";
        copySnapshotFile(sourceFileName,destFileName);

        // After reload remove the added vertexes in the graph
        // The reason for this so each test is independent
        // as there shouldn't be dependencies and cause weird issues
        String [] args = {"-c","RELOAD_DATA_MULTI","-f", "pserver2.graphson"};

        dataSnapshot4HistInit.executeCommand(args);
    }
    
    @Test
    public void testCanRetrieveNamesOfKeyProps() throws IOException {

        // Make sure we can get the key names without failing
       	HashMap <String,ArrayList<String>> keyNamesHash = dataSnapshot4HistInit.getNodeKeyNames();
    	Iterator  keyItr = keyNamesHash.entrySet().iterator();
    	while( keyItr.hasNext() ) {
    		Map.Entry entry = (Map.Entry) keyItr.next();
    		String nodeType = (String)entry.getKey();
    		ArrayList<String> keyNames = (ArrayList<String>)entry.getValue();
    		keyNamesHash.put(nodeType,keyNames);
    		System.out.println("DEBUGjojo === for nType " + nodeType + ", got keys = [" + keyNames + "]");
    	}   

    	assertTrue(keyNamesHash != null );
    	assertFalse(keyNamesHash.isEmpty());
    }

    
    private void showVertProperties(String propKey, String propVal)  {
    	
    	Vertex v1 = g.V().has(propKey, propVal).next();
        Iterator<VertexProperty<Object>> pI = v1.properties();
     	while( pI.hasNext() ){
     		VertexProperty<Object> tp = pI.next();
     		String infStr = " [" + tp.key() + "][" + tp.value() + "] ";
     		System.out.println("Regular ole properties are: " + infStr  ); 
     		Iterator<Property<Object>> fullPropI = tp.properties();
     		while( fullPropI.hasNext() ){
     			// Note - the 'real' key/value of a property are not part of this list, just the
     			//    extra stuff beyond those two.
         		Property<Object> propOfProp = fullPropI.next();
         		String infStr2 = " [" + propOfProp.key() + "][" + propOfProp.value() + "] ";
     			System.out.println("For " + infStr + ", got sub-property:" + infStr2 );
     		}
     	}  
    }
    
    
    private List<Vertex> setupOneHistoryNode(GraphTraversalSource g) throws AAIException {
    	
        Vertex v1 = g.addV().property("aai-node-type", "pserver","start-ts", 9988707,"source-of-truth","N/A")
            .property("hostname", "historyHOstGuy--8","start-ts", 9988707,"source-of-truth","N/A")
            .property("equip-vendor", "historyVendor","start-ts", 9988707,"source-of-truth","N/A")
            .property("role", "historyRole","start-ts", 9988707,"source-of-truth","N/A")
            .next();
       List<Vertex> list = new ArrayList<>();
        list.add(v1);
        
        Iterator<VertexProperty<Object>> pI = v1.properties();
     	while( pI.hasNext() ){
     		VertexProperty<Object> tp = pI.next();
     		String infStr = " [" + tp.key() + "|" + tp.value() + "] ";
     		System.out.println("Regular ole properties are: " + infStr  ); 
     		Iterator<Property<Object>> fullPropI = tp.properties();
     		while( fullPropI.hasNext() ){
     			// Note - the 'real' key/value of a property are not part of this list, just the
     			//    extra stuff beyond those two.
         		Property<Object> propOfProp = fullPropI.next();
         		String infStr2 = " [" + propOfProp.key() + "|" + propOfProp.value() + "] ";
     			System.out.println("For " + infStr + ", got sub-property:" + infStr2 );
     		}
     	}    
     	return list;
    }
    
    private List<Vertex> setupPserverData(GraphTraversalSource g) throws AAIException {
        Vertex v1 = g.addV().property("aai-node-type", "pserver")
            .property("hostname", "somerandomhostname")
            .next();
        List<Vertex> list = new ArrayList<>();
        list.add(v1);
        Vertex v2 = g.addV().property("aai-node-type", "pserver")
            .property("hostname", "somerandomhostname2")
            .next();
        Vertex pinterface = g.addV()
                .property("aai-node-type", "p-interface")
                .property("interface-name", "p-interface-name")
                .property("in-maint", false)
                .property("source-of-truth", "JUNIT")
                .next();
        edgeSerializer.addTreeEdge(g, v2, pinterface);
        list.add(v2);
        return list;
    }

    private void copySnapshotFile(String sourceFileName, String destFileName) throws IOException {

        File inputFile = new File(sourceFileName);
        File outputFile = new File(destFileName);

        FileUtils.copyFile(inputFile, outputFile);
    }
}