aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/ComponentCacheDataTest.java
blob: bda882e4651c1a0b9b7562056b26e41e48524af0 (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
package org.openecomp.sdc.be.resources.data;

import java.nio.ByteBuffer;
import java.util.Date;

import org.junit.Test;


public class ComponentCacheDataTest {

	private ComponentCacheData createTestSubject() {
		return new ComponentCacheData();
	}
	
	@Test
	public void testCtor() throws Exception {
		new ComponentCacheData("mock");
		new ComponentCacheData("mock", new byte[0]);
		new ComponentCacheData("mock", new byte[0], new Date(), "mock", true, true);
	}
	
	@Test
	public void testGetDataAsArray() throws Exception {
		ComponentCacheData testSubject;
		byte[] result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getDataAsArray();
	}

	
	@Test
	public void testSetDataAsArray() throws Exception {
		ComponentCacheData testSubject;
		byte[] data = new byte[] { ' ' };

		// test 1
		testSubject = createTestSubject();
		data = null;
		testSubject.setDataAsArray(data);

		// test 2
		testSubject = createTestSubject();
		data = new byte[] { ' ' };
		testSubject.setDataAsArray(data);
	}

	
	@Test
	public void testGetData() throws Exception {
		ComponentCacheData testSubject ;
		
		testSubject = createTestSubject();
		
		testSubject.getData();
	}

	@Test
	public void testSetData() throws Exception {
		ComponentCacheData testSubject ;
		
		testSubject = createTestSubject();
		
		ByteBuffer data = ByteBuffer.allocate(0);
		testSubject.setData(data);
	}
	
	@Test
	public void testGetId() throws Exception {
		ComponentCacheData testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getId();
	}

	
	@Test
	public void testSetId() throws Exception {
		ComponentCacheData testSubject;
		String id = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setId(id);
	}

	
	@Test
	public void testGetModificationTime() throws Exception {
		ComponentCacheData testSubject;
		Date result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getModificationTime();
	}

	
	@Test
	public void testSetModificationTime() throws Exception {
		ComponentCacheData testSubject;
		Date modificationTime = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setModificationTime(modificationTime);
	}

	
	@Test
	public void testGetType() throws Exception {
		ComponentCacheData testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getType();
	}

	
	@Test
	public void testSetType() throws Exception {
		ComponentCacheData testSubject;
		String type = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setType(type);
	}

	
	@Test
	public void testGetIsDirty() throws Exception {
		ComponentCacheData testSubject;
		boolean result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getIsDirty();
	}

	
	@Test
	public void testSetIsDirty() throws Exception {
		ComponentCacheData testSubject;
		boolean isDirty = false;

		// default test
		testSubject = createTestSubject();
		testSubject.setIsDirty(isDirty);
	}

	
	@Test
	public void testGetIsZipped() throws Exception {
		ComponentCacheData testSubject;
		boolean result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getIsZipped();
	}

	
	@Test
	public void testSetIsZipped() throws Exception {
		ComponentCacheData testSubject;
		boolean isZipped = false;

		// default test
		testSubject = createTestSubject();
		testSubject.setIsZipped(isZipped);
	}
}