Initial commit for AAI-UI(sparky-backend)
[aai/sparky-be.git] / src / test / java / org / openecomp / sparky / viewandinspect / ViewAndInspectSearchRequestTest.java
1 /* 
2 * ============LICENSE_START=======================================================
3 * SPARKY (AAI UI service)
4 * ================================================================================
5 * Copyright © 2017 AT&T Intellectual Property.
6 * Copyright © 2017 Amdocs
7 * All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12
13 *      http://www.apache.org/licenses/LICENSE-2.0
14
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21
22 * ECOMP and OpenECOMP are trademarks
23 * and service marks of AT&T Intellectual Property.
24 */
25
26 package org.openecomp.sparky.viewandinspect;
27
28
29 import static org.junit.Assert.assertEquals;
30 import static org.junit.Assert.assertNull;
31
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.junit.runner.RunWith;
35 import org.openecomp.sparky.viewandinspect.entity.QuerySearchEntity;
36 import org.powermock.modules.junit4.PowerMockRunner;
37
38 /**
39  * The Class ViewAndInspectSearchRequestTest.
40  */
41 @RunWith(PowerMockRunner.class)
42 public class ViewAndInspectSearchRequestTest {
43
44   /**
45    * Inits the.
46    *
47    * @throws Exception the exception
48    */
49   @Before
50   public void init() throws Exception {}
51
52   /**
53    * Validate basic construction.
54    */
55   @Test
56   public void validateBasicConstruction() {
57
58     QuerySearchEntity request = new QuerySearchEntity();
59
60     // test constructor defaults
61     assertNull(request.getQueryStr());
62     assertEquals("10", request.getMaxResults());
63
64     request.setMaxResults("500");
65     assertEquals("500", request.getMaxResults());
66
67     assertNull(request.getSearchTerms());
68
69     request.setQueryStr("");
70     assertEquals(1, request.getSearchTerms().length);
71
72     request.setQueryStr("t1");
73     assertEquals(1, request.getSearchTerms().length);
74
75     request.setQueryStr("t1 t2 t3");
76     assertEquals(3, request.getSearchTerms().length);
77
78   }
79
80 }
81