Merge "Validate ids"
[clamp.git] / src / test / java / org / onap / clamp / clds / it / PermissionTestDefaultHelper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. 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  */
22
23 package org.onap.clamp.clds.it;
24
25 import com.google.common.collect.ImmutableMap;
26
27 import java.util.Map;
28
29 public class PermissionTestDefaultHelper extends PermissionTestHelper {
30
31     private static final String[] ALL_ACTION = new String[] {"*"};
32     private static final String[] READ_UPDATE_ACTION = new String[] {"read", "update"};
33
34     private static final String DEV_INSTANCE = "dev";
35     private static final String TEST_INSTANCE = "test";
36
37     private static final Map<String, Map> defaultPermission = ImmutableMap.of(
38             "permission-type-cl", ImmutableMap.of(
39                 DEV_INSTANCE, ALL_ACTION),
40             "permission-type-cl-event", ImmutableMap.of(
41                 DEV_INSTANCE, ALL_ACTION,
42                 TEST_INSTANCE, READ_UPDATE_ACTION),
43             "permission-type-cl-manage", ImmutableMap.of(
44                 DEV_INSTANCE, ALL_ACTION,
45                 TEST_INSTANCE, READ_UPDATE_ACTION),
46             "permission-type-filter-vf", ImmutableMap.of(
47                 DEV_INSTANCE, ALL_ACTION,
48                 TEST_INSTANCE, READ_UPDATE_ACTION),
49             "permission-type-template", ImmutableMap.of(
50                 DEV_INSTANCE, ALL_ACTION,
51                 TEST_INSTANCE, READ_UPDATE_ACTION)
52     );
53
54     /**
55      * Permission test default helper constructor.
56      * This class setup the default permission in the parent PermissionTestHelper class.
57      */
58     public PermissionTestDefaultHelper() {
59         super(defaultPermission);
60     }
61 }