0f348f3964ef3d68cd1e34ed2040621003302e5b
[aaf/authz.git] / auth / auth-gui / src / test / java / org / onap / aaf / auth / gui / JU_FormTest.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.hamcrest.CoreMatchers.equalTo;
24 import static org.junit.Assert.assertThat;
25 import static org.mockito.Mockito.when;
26 import static org.mockito.MockitoAnnotations.initMocks;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.mockito.Mock;
31 import org.onap.aaf.misc.xgen.Cache;
32 import org.onap.aaf.misc.xgen.html.HTMLGen;
33
34 public class JU_FormTest {
35
36         @Mock
37         private Cache<HTMLGen> cache;
38
39         @Mock
40         private HTMLGen hgen;
41
42         @Before
43         public void setUp() throws Exception {
44                 initMocks(this);
45         }
46
47         @Test
48         public void test() throws Exception {
49                 when(hgen.incr("p", "class=preamble")).thenReturn(hgen);
50                 when(hgen.text("preamable")).thenReturn(hgen);
51                 when(hgen.tagOnly("input", "type=submit", "value=Submit")).thenReturn(hgen);
52                 when(hgen.tagOnly("input", "type=reset", "value=Reset")).thenReturn(hgen);
53
54                 Form form = new Form(false, new BreadCrumbs(null));
55
56                 assertThat(form.idattrs(), equalTo(new String[] { "breadcrumbs" }));
57
58                 assertThat(form.preamble("preamable"), equalTo(form));
59
60                 form.code(cache, hgen);
61         }
62
63 }