aboutsummaryrefslogtreecommitdiffstats
path: root/config/pe/brmsgw.conf
blob: a14a03d68487f4bdfe88045393b40ad861f0337e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# BRMSpep component installation configuration parameters
BRMSGW_JMX_PORT=9989

COMPONENT_X_MX_MB=1024
COMPONENT_X_MS_MB=1024

REST_PAP_URL=http://pap:9091/pap/
REST_PDP_ID=http://pdp:8081/pdp/

PDP_HTTP_USER_ID=testpdp
PDP_HTTP_PASSWORD=alpha123
PDP_PAP_PDP_HTTP_USER_ID=testpap
PDP_PAP_PDP_HTTP_PASSWORD=alpha123

M2_HOME=/usr/share/maven
snapshotRepositoryID=policy-nexus-snapshots
snapshotRepositoryName=Snapshots
snapshotRepositoryURL=http://nexus:8081/nexus/content/repositories/snapshots
releaseRepositoryID=policy-nexus-releases
releaseRepositoryName=Releases
releaseRepositoryURL=http://nexus:8081/nexus/content/repositories/releases
repositoryUsername=admin
repositoryPassword=admin123
UEB_URL=vm1.mr.simpledemo.openecomp.org
UEB_TOPIC=PDPD-CONFIGURATION
UEB_API_KEY=
UEB_API_SECRET=

groupID=org.openecomp.policy-engine
artifactID=drlPDPGroup
VFW_GROUP_ID=org.openecomp.policy-engine.drools.vFW
VFW_ARTIFACT_ID=policy-vFW-rules
VDNS_GROUP_ID=org.openecomp.policy-engine.drools.vDNS
VDNS_ARTIFACT_ID=policy-vDNS-rules


# the java property is RESOURCE_NAME (uppercase), but the conf parameter is lowercase
resource_name=brmsgw_1
node_type=brms_gateway

#Environment should be Set either DEV, TEST or PROD
ENVIRONMENT=TEST

#Notification Properties... type can be either websocket, ueb, or dmaap
BRMS_NOTIFICATION_TYPE=websocket
BRMS_UEB_URL=
BRMS_UEB_TOPIC=
BRMS_UEB_DELAY=
BRMS_CLIENT_ID=python
BRMS_CLIENT_KEY=test
BRMS_UEB_API_KEY=
BRMS_UEB_API_SECRET=

#Dependency.json file version
BRMS_DEPENDENCY_VERSION=1.1.0-SNAPSHOT
204'>204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
/*-
 * ============LICENSE_START=======================================================
 * ONAP
 * ================================================================================
 * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.xacml.pdp.application.guard;

import static org.assertj.core.api.Assertions.assertThat;

import com.att.research.xacml.api.Response;
import java.io.File;
import java.io.IOException;
import java.time.Instant;
import java.util.Date;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
import java.util.ServiceLoader;
import java.util.UUID;
import javax.persistence.EntityManager;
import javax.persistence.Persistence;
import org.apache.commons.lang3.tuple.Pair;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.junit.runners.MethodSorters;
import org.onap.policy.common.utils.coder.CoderException;
import org.onap.policy.common.utils.coder.StandardCoder;
import org.onap.policy.common.utils.resources.TextFileUtils;
import org.onap.policy.guard.OperationsHistory;
import org.onap.policy.models.decisions.concepts.DecisionRequest;
import org.onap.policy.models.decisions.concepts.DecisionResponse;
import org.onap.policy.pdp.xacml.application.common.XacmlApplicationException;
import org.onap.policy.pdp.xacml.application.common.XacmlApplicationServiceProvider;
import org.onap.policy.pdp.xacml.application.common.XacmlPolicyUtils;
import org.onap.policy.pdp.xacml.application.common.operationshistory.CountRecentOperationsPip;
import org.onap.policy.pdp.xacml.xacmltest.TestUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class SonCoordinationTest {

    private static final Logger LOGGER = LoggerFactory.getLogger(SonCoordinationTest.class);
    private static Properties properties = new Properties();
    private static File propertiesFile;
    private static XacmlApplicationServiceProvider service;
    private static DecisionRequest requestVpciNode1;
    private static DecisionRequest requestVsonhNode1;
    private static StandardCoder gson = new StandardCoder();
    private static EntityManager em;
    private static final String DENY = "Deny";
    private static final String PERMIT = "Permit";

    @ClassRule
    public static final TemporaryFolder policyFolder = new TemporaryFolder();

    /**
     * Copies the xacml.properties and policies files into
     * temporary folder and loads the service provider saving
     * instance of provider off for other tests to use.
     */
    @BeforeClass
    public static void setup() throws Exception {
        LOGGER.info("Setting up class");
        //
        // Setup our temporary folder
        //
        XacmlPolicyUtils.FileCreator myCreator =
            (String filename) -> policyFolder.newFile(filename);
        propertiesFile = XacmlPolicyUtils.copyXacmlPropertiesContents(
            "src/test/resources/xacml.properties", properties, myCreator);
        //
        // Load service
        //
        ServiceLoader<XacmlApplicationServiceProvider> applicationLoader =
            ServiceLoader.load(XacmlApplicationServiceProvider.class);
        //
        // Find the guard service application and save for use in all the tests
        //
        StringBuilder strDump =
            new StringBuilder("Loaded applications:" + XacmlPolicyUtils.LINE_SEPARATOR);
        Iterator<XacmlApplicationServiceProvider> iterator = applicationLoader.iterator();
        while (iterator.hasNext()) {
            XacmlApplicationServiceProvider application = iterator.next();
            //
            // Is it our service?
            //
            if (application instanceof GuardPdpApplication) {
                //
                // Should be the first and only one
                //
                assertThat(service).isNull();
                service = application;
            }
            strDump.append(application.applicationName());
            strDump.append(" supports ");
            strDump.append(application.supportedPolicyTypes());
            strDump.append(XacmlPolicyUtils.LINE_SEPARATOR);
        }
        LOGGER.info("{}", strDump);
        //
        // Tell it to initialize based on the properties file
        // we just built for it.
        //
        service.initialize(propertiesFile.toPath().getParent(), null);
        //
        // Load Decision Requests
        //
        requestVpciNode1 = gson.decode(
            TextFileUtils.getTextFileAsString(
                "src/test/resources/requests/coordination.cl.vPci.node.1.json"),
            DecisionRequest.class);
        requestVsonhNode1 = gson.decode(
            TextFileUtils.getTextFileAsString(
                "src/test/resources/requests/coordination.cl.vSonh.node.1.json"),
            DecisionRequest.class);
        String persistenceUnit = CountRecentOperationsPip.ISSUER_NAME + ".persistenceunit";
        em = Persistence
            .createEntityManagerFactory(SonCoordinationTest.properties.getProperty(persistenceUnit),
                properties)
            .createEntityManager();
    }

    /**
     * Clears the database before each test.
     *
     */
    @Before
    public void startClean() throws Exception {
        em.getTransaction().begin();
        em.createQuery("DELETE FROM OperationsHistory").executeUpdate();
        em.getTransaction().commit();
    }

    /**
     * Close the entity manager.
     */
    @AfterClass
    public static void cleanup() throws Exception {
        if (em != null) {
            em.close();
        }
    }

    /**
     * Check that decision matches expectation.
     *
     * @param expected from the response
     * @param response received
     *
     **/
    public void checkDecision(String expected, DecisionResponse response) throws CoderException {
        LOGGER.info("Looking for {} Decision", expected);
        assertThat(response).isNotNull();
        assertThat(response.getStatus()).isNotNull();
        assertThat(response.getStatus()).isEqualTo(expected);
        //
        // Dump it out as Json
        //
        LOGGER.info(gson.encode(response));
    }

    /**
     * Request a decision and check that it matches expectation.
     *
     * @param request to send to Xacml PDP
     * @param expected from the response
     *
     **/
    public void requestAndCheckDecision(DecisionRequest request, String expected)
        throws CoderException {

        //
        // Ask for a decision
        //
        Pair<DecisionResponse, Response> decision = service.makeDecision(request, null);
        //
        // Check decision
        //
        checkDecision(expected, decision.getKey());
    }

    @Test
    public void test1() throws CoderException, IOException, XacmlApplicationException {
        LOGGER.info("**************** Running vPci and vSonh Control Loops ****************");
        //
        // Now load the test coordination policy - make sure
        // the pdp can support it and have it load
        // into the PDP.
        //
        TestUtils.loadPolicies(
            "src/test/resources/test.policy.guard.coordination.vPciBlocksVsonh.tosca.yaml",
            service);
        TestUtils.loadPolicies(
            "src/test/resources/test.policy.guard.coordination.vSonhBlocksVpci.tosca.yaml",
            service);
        //
        // vSonh doesn't have open action: vPci should get permit
        //
        requestAndCheckDecision(requestVpciNode1, PERMIT);
        //
        // vPci doesn't have open action: vSonh should get permit
        //
        requestAndCheckDecision(requestVsonhNode1, PERMIT);
        //
        // Open vSonh on node1
        //
        long vsonhId = insertOperationEvent(requestVsonhNode1, "Started");
        //
        // Under current coordination policy vPci should get a deny
        //
        requestAndCheckDecision(requestVpciNode1, DENY);
        //
        // Close vSonh on node1
        //
        updateOperationEvent(vsonhId, "Success");
        //
        // With vSonh closed on node 1, vPci now should get a permit
        //
        requestAndCheckDecision(requestVpciNode1, PERMIT);
        //
        // Open vPci on node1
        //
        long vpciId = insertOperationEvent(requestVpciNode1, "Started");
        //
        // Under current coordination policy vSonh should get a deny
        //
        requestAndCheckDecision(requestVsonhNode1, DENY);
        //
        // Close cl1 on node1
        //
        updateOperationEvent(vpciId, "Failed");
        //
        // With vPci closed on node 1, vSonh now should get a permit
        //
        requestAndCheckDecision(requestVsonhNode1, PERMIT);
    }

    @SuppressWarnings("unchecked")
    private long insertOperationEvent(DecisionRequest request, String outcome) {
        //
        // Get the properties
        //
        Map<String, Object> properties = (Map<String, Object>) request.getResource().get("guard");
        //
        // Add an entry
        //
        OperationsHistory newEntry = new OperationsHistory();
        newEntry.setActor(properties.get("actor").toString());
        newEntry.setOperation(properties.get("operation").toString());
        newEntry.setClosedLoopName(properties.get("clname").toString());
        newEntry.setOutcome(outcome);
        newEntry.setStarttime(Date.from(Instant.now().minusMillis(20000)));
        newEntry.setEndtime(Date.from(Instant.now()));
        newEntry.setRequestId(UUID.randomUUID().toString());
        newEntry.setTarget(properties.get("target").toString());
        em.getTransaction().begin();
        em.persist(newEntry);
        em.getTransaction().commit();
        return newEntry.getId();
    }

    private void updateOperationEvent(long id, String outcome) {

        OperationsHistory updateEntry = em.find(OperationsHistory.class, id);
        updateEntry.setOutcome(outcome);
        updateEntry.setEndtime(Date.from(Instant.now()));
        em.getTransaction().begin();
        em.persist(updateEntry);
        em.getTransaction().commit();
    }

}