Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / util / CacheProviderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.aai.util;
22
23 import org.testng.annotations.DataProvider;
24 import org.testng.annotations.Test;
25
26 import java.util.Arrays;
27 import java.util.List;
28
29 import static org.hamcrest.Matchers.is;
30 import static org.hamcrest.MatcherAssert.assertThat;
31 import static org.onap.vid.aai.util.CacheProvider.compileKey;
32 import static org.onap.vid.aai.util.CacheProvider.decompileKey;
33
34 public class CacheProviderTest {
35     @Test(dataProvider = "aaiClientCompileDecompileKeySameData")
36     public void compileDecompileKeySameTest(List<String> args) {
37         assertThat(decompileKey(compileKey(args)), is(args.toArray()));
38     }
39
40     @Test(dataProvider = "aaiClientCompileDecompileKeyDifferentData")
41     public void compileDecompileKeyDifferentTest(List<String> expectedResult, List<String> args) {
42         assertThat(decompileKey(compileKey(args)), is(expectedResult.toArray()));
43     }
44
45     @DataProvider
46     public static Object[][] aaiClientCompileDecompileKeySameData() {
47         return new Object[][] {
48                 {Arrays.asList( "a", "b", "c")},
49                 {Arrays.asList("a")},
50                 {Arrays.asList("a!", "@#?b")},
51                 {Arrays.asList("a", "", "c")}
52         };
53     }
54
55     @DataProvider
56     public static Object[][] aaiClientCompileDecompileKeyDifferentData() {
57         return new Object[][] {
58                 {Arrays.asList("a", "", "c"), Arrays.asList("a", null, "c")}
59         };
60     }
61 }