Modify the Ui
[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("permission-type-cl",
38             ImmutableMap.of(DEV_INSTANCE, ALL_ACTION), "permission-type-cl-event",
39             ImmutableMap.of(DEV_INSTANCE, ALL_ACTION, TEST_INSTANCE, READ_UPDATE_ACTION), "permission-type-cl-manage",
40             ImmutableMap.of(DEV_INSTANCE, ALL_ACTION, TEST_INSTANCE, READ_UPDATE_ACTION), "permission-type-filter-vf",
41             ImmutableMap.of(DEV_INSTANCE, ALL_ACTION, TEST_INSTANCE, READ_UPDATE_ACTION), "permission-type-template",
42             ImmutableMap.of(DEV_INSTANCE, ALL_ACTION, TEST_INSTANCE, READ_UPDATE_ACTION));
43
44     /**
45      * Permission test default helper constructor. This class setup the default
46      * permission in the parent PermissionTestHelper class.
47      */
48     public PermissionTestDefaultHelper() {
49         super(defaultPermission);
50     }
51 }