Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-gui / src / test / java / org / onap / aaf / auth / gui / JU_TableTest.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21 package org.onap.aaf.auth.gui;
22
23 import static org.mockito.Mockito.verify;
24 import static org.mockito.Mockito.when;
25 import static org.mockito.MockitoAnnotations.initMocks;
26
27 import java.io.IOException;
28 import java.util.ArrayList;
29
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.mockito.Mock;
33 import org.onap.aaf.auth.gui.Table.Data;
34 import org.onap.aaf.misc.env.APIException;
35 import org.onap.aaf.misc.env.TransStore;
36 import org.onap.aaf.misc.xgen.Cache;
37 import org.onap.aaf.misc.xgen.Code;
38 import org.onap.aaf.misc.xgen.html.HTMLGen;
39
40 public class JU_TableTest {
41
42     @Mock
43     private TransStore trans;
44     private Code<HTMLGen> other;
45     @Mock
46     private Data data;
47     @Mock
48     private Cache cache;
49     @Mock
50     private HTMLGen hgen;
51
52     @Before
53     public void setUp() throws Exception {
54         initMocks(this);
55     }
56
57     @Test
58     public void test() throws APIException, IOException {
59         when(hgen.leaf("caption", "class=title")).thenReturn(hgen);
60         when(hgen.text("title")).thenReturn(hgen);
61         when(data.headers()).thenReturn(new String[0]);
62
63         Table table = new Table("title", trans, data, other, "name", "attr1", "attr1");
64         Table.Cells cells = new Table.Cells(new ArrayList(), "");
65
66         table.code(cache, hgen);
67
68         verify(hgen).end();
69     }
70
71 }