bf0c57a5f5a3853addfa9d64515f4f223cb9d987
[policy/apex-pdp.git] / testsuites / integration / integration-context-test / src / test / java / org / onap / policy / apex / testsuites / integration / context / utils / Constants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.testsuites.integration.context.utils;
23
24 import java.util.TimeZone;
25
26 import org.onap.policy.apex.context.test.concepts.TestPolicyContextItem;
27 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
28
29 /**
30  * The Class Constants provides constants for context tests.
31  */
32 public class Constants {
33     public static final String MAP_CONTEXT_ALBUM = "MapContextAlbum";
34     public static final String LONG_CONTEXT_ALBUM = "LongContextAlbum";
35     public static final String DATE_CONTEXT_ALBUM = "DateContextAlbum";
36
37     public static final String EXTERNAL_CONTEXT_ALBUM = "ExternalContextAlbum";
38     public static final String GLOBAL_CONTEXT_ALBUM = "GlobalContextAlbum";
39     public static final String POLICY_CONTEXT_ALBUM = "PolicyContextAlbum";
40
41     public static final String APEX_DISTRIBUTOR = "ApexDistributor";
42     public static final String VERSION = "0.0.1";
43     public static final int INT_VAL = 0xFFFFFFFF;
44     public static final int INT_VAL_2 = 2000;
45     public static final int INT_VAL_3 = -1;
46     public static final String EXCEPTION_MESSAGE = "Test should throw an exception";
47     public static final byte BYTE_VAL = (byte) 0xFF;
48     public static final double PI_VAL = Math.PI;
49     public static final float FLOAT_VAL = 3.14159265359F;
50     public static final String EXTERNAL_CONTEXT = "externalContext";
51     public static final String GLOBAL_CONTEXT_KEY = "globalContext";
52     public static final String STRING_GLOBAL_VAL = "This is a global context string";
53     public static final String STRING_VAL = "This is a policy context string";
54     public static final String STRING_EXT_VAL = "This is an external context string";
55     public static final long LONG_VAL = 0xFFFFFFFFFFFFFFFFL;
56     public static final String TEST_POLICY_CONTEXT_ITEM = TestPolicyContextItem.class.getName();
57     public static final TimeZone TIME_ZONE = TimeZone.getTimeZone("Europe/Dublin");
58
59     public static final AxArtifactKey L_TYPE_CONTEXT_ALBUM = new AxArtifactKey("LTypeContextAlbum", VERSION);
60     public static final String TEST_VALUE = "testValue";
61
62     private static final AxArtifactKey KEY = new AxArtifactKey("testC-top", VERSION);
63     private static final AxArtifactKey KEY3 = new AxArtifactKey("testC-bot", VERSION);
64     private static final AxArtifactKey KEY2 = new AxArtifactKey("testC-next", VERSION);
65
66     private static final AxArtifactKey[] USED_ARTIFACT_STACK_ARRAY = new AxArtifactKey[] {KEY, KEY2, KEY3};
67
68     /**
69      * Instantiates a new constants.
70      */
71     private Constants() {
72         // Private constructor to block subclassing
73     }
74
75     /**
76      * Gets the ax artifact key array.
77      *
78      * @return the ax artifact key array
79      */
80     public static final AxArtifactKey[] getAxArtifactKeyArray() {
81         return USED_ARTIFACT_STACK_ARRAY;
82     }
83 }