summaryrefslogtreecommitdiffstats
path: root/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/viewandinspect/entity/NodeProcessingTransactionTest.java
blob: a50ea3be9b846f5773e2c7b240d69e39b5b14014 (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
package org.onap.aai.sparky.viewandinspect.entity;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import java.util.ArrayList;

import org.junit.Before;
import org.junit.Test;
import org.onap.aai.restclient.client.OperationResult;
import org.onap.aai.sparky.config.oxm.OxmEntityLookup;
import org.onap.aai.sparky.viewandinspect.config.VisualizationConfigs;

public class NodeProcessingTransactionTest {
	

	private NodeProcessingTransaction nodeProcessingTransaction;
	 private ActiveInventoryNode activeInventoryNode; 
		private ArrayList<String> lst = new ArrayList<String>();
		 private OperationResult opResult; 
		 private VisualizationConfigs visualConfig; 
		 private OxmEntityLookup oxmEntityLookup;
	
	@Before
	  public void init() throws Exception {
		
		 visualConfig = new VisualizationConfigs(); 
		 oxmEntityLookup = new OxmEntityLookup();
		 opResult = new OperationResult();
		activeInventoryNode = new ActiveInventoryNode(visualConfig,oxmEntityLookup);
		nodeProcessingTransaction = new NodeProcessingTransaction();
	      
	  }
	
	
	@Test 
	public void updateValues() {
		
		nodeProcessingTransaction.setRequestParameters("");
		assertNotNull(nodeProcessingTransaction.getRequestParameters());
		nodeProcessingTransaction.setProcessingNode(activeInventoryNode);
		assertNotNull(nodeProcessingTransaction.getProcessingNode());
		nodeProcessingTransaction.setOpResult(opResult);
		assertNotNull(nodeProcessingTransaction.getOpResult());
		assertNull(nodeProcessingTransaction.getSelfLink());
		assertNotNull(nodeProcessingTransaction.getSelfLinkWithModifiers());
		assertTrue(nodeProcessingTransaction.processingErrorOccurred());
		assertNotNull(nodeProcessingTransaction.toString());
		nodeProcessingTransaction.setProcessingNode(null);
		assertNull(nodeProcessingTransaction.getProcessingNode());
		nodeProcessingTransaction.setOpResult(null);
		assertNull(nodeProcessingTransaction.getOpResult());
		assertNull(nodeProcessingTransaction.getSelfLink());
		assertNull(nodeProcessingTransaction.getSelfLinkWithModifiers());
		assertNotNull(nodeProcessingTransaction.toString());
		
	}

}