aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src/test/java/org/onap/aai/util/genxsd/DeleteFootnoteSetTest.java
blob: 633d7891213fc29a4b20319ecc6fad621ca4b3d1 (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
/**
 * ============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.util.genxsd;

import static org.junit.Assert.*;
import static org.mockito.Mockito.*;

import java.util.Arrays;
import java.util.Collection;

import org.mockito.runners.MockitoJUnitRunner;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.CoreMatchers.is;
import org.mockito.BDDMockito;
import org.mockito.InjectMocks;
import org.hamcrest.Matcher;
import org.junit.runners.*;
import org.junit.runners.Parameterized.Parameters;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(Parameterized.class)
public class DeleteFootnoteSetTest {
	String targetNode;
	String flavor;
	String result;
	DeleteFootnoteSet footnotes = null;
	
	@Parameters
	public static Collection<String[]> testConditions() {
		String inputs [][] = {
		{"vserver","(1)", "\n      -(1) IF this VSERVER node is deleted, this FROM node is DELETED also\n"},
		{"ctag-pool","(2)", "\n      -(2) IF this CTAG-POOL node is deleted, this TO node is DELETED also\n"},
		{"pserver","(3)", "\n      -(3) IF this FROM node is deleted, this PSERVER is DELETED also\n"},
		{"oam-network","(4)", "\n      -(4) IF this TO node is deleted, this OAM-NETWORK is DELETED also\n"},
		{"dvs-switch","(1)", "\n      -(1) IF this DVS-SWITCH node is deleted, this FROM node is DELETED also\n"},
		{"availability-zone","(3)", "\n      -(3) IF this FROM node is deleted, this AVAILABILITY-ZONE is DELETED also\n"}
		};
		return (Arrays.asList(inputs));
	}
	
	public DeleteFootnoteSetTest(String targetNode, String flavor, String result) {
		super();
		this.targetNode = targetNode;
		this.flavor = flavor;
		this.result=result;
	}

	@Before
	public void setUp() throws Exception {
		footnotes = new DeleteFootnoteSet(this.targetNode);
	}

	@Test
	public void testDeleteFootnoteSet() {		
		assertThat(footnotes.targetNode, is(this.targetNode));
	}

	@Test
	public void testAdd() {
		footnotes.add(this.flavor);
		assertThat(footnotes.footnotes.size(), is(1));
	}

	@Test
	public void testToString() {
		footnotes.add(this.flavor);
		assertThat(footnotes.toString(), is(this.result));
	}

}