blob: 1e2fd49f8d05dd81501172ad6ef27c75f380bd68 [file] [log] [blame]
Rashmi Pujar451a53a2019-12-10 17:10:55 -05001.. This work is licensed under a
2.. Creative Commons Attribution 4.0 International License.
3.. http://creativecommons.org/licenses/by/4.0
4
Pamela Dragoshb4a8ef22020-04-21 15:30:35 -04005.. _policy-development-tools-label:
Rashmi Pujar451a53a2019-12-10 17:10:55 -05006
7Policy Platform Development Tools
8#################################
9
10.. contents::
11 :depth: 3
12
13
14This article explains how to build the ONAP Policy Framework for development purposes and how to run stability/performance tests for a variety of components. To start, the developer should consult the latest ONAP Wiki to familiarize themselves with developer best practices and how-tos to setup their environment, see `https://wiki.onap.org/display/DW/Developer+Best+Practices`.
15
16
17This article assumes that:
18
19* You are using a *\*nix* operating system such as linux or macOS.
20* You are using a directory called *git* off your home directory *(~/git)* for your git repositories
21* Your local maven repository is in the location *~/.m2/repository*
Pamela Dragoshba45dc62020-04-16 09:27:44 -040022* You have copied the settings.xml from oparent to *~/.m2/* directory
Rashmi Pujar451a53a2019-12-10 17:10:55 -050023* You have added settings to access the ONAP Nexus to your M2 configuration, see `Maven Settings Example <https://wiki.onap.org/display/DW/Setting+Up+Your+Development+Environment>`_ (bottom of the linked page)
24
Pamela Dragoshba45dc62020-04-16 09:27:44 -040025The procedure documented in this article has been verified to work on a MacBook laptop running macOS Mojave Version 10.14.6 and an Unbuntu 18.06 VM.
Rashmi Pujar451a53a2019-12-10 17:10:55 -050026
27Cloning All The Policy Repositories
28***********************************
29
30Run a script such as the script below to clone the required modules from the `ONAP git repository <https://gerrit.onap.org/r/#/admin/projects/?filter=policy>`_. This script clones all the ONAP Policy Framework repositories.
31
32ONAP Policy Framework has dependencies to the ONAP Parent *oparent* module, the ONAP ECOMP SDK *ecompsdkos* module, and the A&AI Schema module.
33
34
35.. code-block:: bash
36 :caption: Typical ONAP Policy Framework Clone Script
37 :linenos:
38
39 #!/usr/bin/env bash
40
41 ## script name for output
42 MOD_SCRIPT_NAME=`basename $0`
43
44 ## the ONAP clone directory, defaults to "onap"
45 clone_dir="onap"
46
47 ## the ONAP repos to clone
48 onap_repos="\
49 policy/parent \
50 policy/common \
51 policy/models \
52 policy/docker \
53 policy/api \
54 policy/pap \
55 policy/apex-pdp \
56 policy/drools-pdp \
57 policy/drools-applications \
58 policy/xacml-pdp \
Pamela Dragoshba45dc62020-04-16 09:27:44 -040059 policy/distribution \
60 policy/gui \
61 policy/engine "
Rashmi Pujar451a53a2019-12-10 17:10:55 -050062
63 ##
64 ## Help screen and exit condition (i.e. too few arguments)
65 ##
66 Help()
67 {
68 echo ""
69 echo "$MOD_SCRIPT_NAME - clones all required ONAP git repositories"
70 echo ""
71 echo " Usage: $MOD_SCRIPT_NAME [-options]"
72 echo ""
73 echo " Options"
74 echo " -d - the ONAP clone directory, defaults to '.'"
75 echo " -h - this help screen"
76 echo ""
77 exit 255;
78 }
79
80 ##
81 ## read command line
82 ##
83 while [ $# -gt 0 ]
84 do
85 case $1 in
86 #-d ONAP clone directory
87 -d)
88 shift
89 if [ -z "$1" ]; then
90 echo "$MOD_SCRIPT_NAME: no clone directory"
91 exit 1
92 fi
93 clone_dir=$1
94 shift
95 ;;
96
97 #-h prints help and exists
98 -h)
99 Help;exit 0;;
100
101 *) echo "$MOD_SCRIPT_NAME: undefined CLI option - $1"; exit 255;;
102 esac
103 done
104
105 if [ -f "$clone_dir" ]; then
106 echo "$MOD_SCRIPT_NAME: requested clone directory '$clone_dir' exists as file"
107 exit 2
108 fi
109 if [ -d "$clone_dir" ]; then
110 echo "$MOD_SCRIPT_NAME: requested clone directory '$clone_dir' exists as directory"
111 exit 2
112 fi
113
114 mkdir $clone_dir
115 if [ $? != 0 ]
116 then
117 echo cannot clone ONAP repositories, could not create directory '"'$clone_dir'"'
118 exit 3
119 fi
120
121 for repo in $onap_repos
122 do
123 repoDir=`dirname "$repo"`
124 repoName=`basename "$repo"`
125
126 if [ ! -z $dirName ]
127 then
128 mkdir "$clone_dir/$repoDir"
129 if [ $? != 0 ]
130 then
131 echo cannot clone ONAP repositories, could not create directory '"'$clone_dir/repoDir'"'
132 exit 4
133 fi
134 fi
135
136 git clone https://gerrit.onap.org/r/${repo} $clone_dir/$repo
137 done
138
139 echo ONAP has been cloned into '"'$clone_dir'"'
140
141
142Execution of the script above results in the following directory hierarchy in your *~/git* directory:
143
144 * ~/git/onap
145 * ~/git/onap/policy
146 * ~/git/onap/policy/parent
147 * ~/git/onap/policy/common
148 * ~/git/onap/policy/models
149 * ~/git/onap/policy/api
150 * ~/git/onap/policy/pap
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400151 * ~/git/onap/policy/gui
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500152 * ~/git/onap/policy/docker
153 * ~/git/onap/policy/drools-applications
154 * ~/git/onap/policy/drools-pdp
155 * ~/git/onap/policy/engine
156 * ~/git/onap/policy/apex-pdp
157 * ~/git/onap/policy/xacml-pdp
158 * ~/git/onap/policy/distribution
159
160
161Building ONAP Policy Framework Components
162*****************************************
163
164**Step 1:** Optionally, for a completely clean build, remove the ONAP built modules from your local repository.
165
166 .. code-block:: bash
167
168 rm -fr ~/.m2/repository/org/onap
169
170
171**Step 2:** A pom such as the one below can be used to build the ONAP Policy Framework modules. Create the *pom.xml* file in the directory *~/git/onap/policy*.
172
173.. code-block:: xml
174 :caption: Typical pom.xml to build the ONAP Policy Framework
175 :linenos:
176
177 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
178 <modelVersion>4.0.0</modelVersion>
179 <groupId>org.onap</groupId>
180 <artifactId>onap-policy</artifactId>
181 <version>1.0.0-SNAPSHOT</version>
182 <packaging>pom</packaging>
183 <name>${project.artifactId}</name>
184 <inceptionYear>2017</inceptionYear>
185 <organization>
186 <name>ONAP</name>
187 </organization>
188
189 <modules>
190 <module>parent</module>
191 <module>common</module>
192 <module>models</module>
193 <module>api</module>
194 <module>pap</module>
195 <module>apex-pdp</module>
196 <module>xacml-pdp</module>
197 <module>drools-pdp</module>
198 <module>drools-applications</module>
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400199 <module>distribution</module>
200 <module>gui</module>
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500201 <!-- The engine repo is being deprecated,
202 and can be ommitted if not working with
203 legacy api and components. -->
204 <module>engine</module>
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500205 </modules>
206 </project>
207
208**Policy Architecture/API Transition**
209
210In Dublin, a new Policy Architecture was introduced. The legacy architecture runs in parallel with the new architecture. It will be deprecated after Frankfurt release.
211If the developer is only interested in working with the new architecture components, the engine sub-module can be ommitted.
212
213
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400214**Step 3:** You can now build the Policy framework.
215
216Java artifacts only:
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500217
218 .. code-block:: bash
219
220 cd ~/git/onap
221 mvn clean install
222
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400223With docker images:
224
225 .. code-block:: bash
226
227 cd ~/git/onap
228 mvn clean install -P docker
229
230Developing and Debugging each Policy Component
231**********************************************
232
233Running a MariaDb Instance
234++++++++++++++++++++++++++
235
236The Policy Framework requires a MariaDb instance running. The easiest way to do this is to run a docker image locally.
237
238One example on how to do this is to use the scripts used by the policy/api S3P tests.
239
240`Simulator Setup Script Example <https://gerrit.onap.org/r/gitweb?p=policy/api.git;a=tree;f=testsuites/stability/src/main/resources/simulatorsetup;h=9038413f67cff2e2a79d6345f198f96ee0c57de1;hb=refs/heads/master>`_
241
242 .. code-block:: bash
243
244 cd ~/git/onap/api/testsuites/stability/src/main/resources/simulatorsetup
245 ./setup_components.sh
246
247Another example on how to run the MariaDb is using the docker compose file used by the Policy API CSITs:
248
249`Example Compose Script to run MariaDB <https://gerrit.onap.org/r/gitweb?p=integration/csit.git;a=blob;f=scripts/policy/docker-compose-api.yml;h=e32190f1e6cb6d9b64ddf53a2db2c746723a0c6a;hb=refs/heads/master>`_
250
251Running the API component standalone
252+++++++++++++++++++++++++++++++++++++
253
254Assuming you have successfully built the codebase using the instructions above. The only requirement for the API component to run is a
255running MariaDb database instance. The easiest way to do this is to run the docker image, please see the mariadb documentation for the latest
256information on doing so. Once the mariadb is up and running, a configuration file must be provided to the api in order for it to know how to
257connect to the mariadb. You can locate the default configuration file in the packaging of the api component:
258
259`Default API Configuration <https://gerrit.onap.org/r/gitweb?p=policy/api.git;a=blob;f=packages/policy-api-tarball/src/main/resources/etc/defaultConfig.json;h=042fb9d54c79ce4dad517e2564636632a8ecc550;hb=refs/heads/master>`_
260
261You will want to change the fields pertaining to "host", "port" and "databaseUrl" to your local environment settings.
262
263Running the API component using Docker Compose
264++++++++++++++++++++++++++++++++++++++++++++++
265
266An example of running the api using a docker compose script is located in the Policy Integration CSIT test repository.
267
268`Policy CSIT API Docker Compose <https://gerrit.onap.org/r/gitweb?p=integration/csit.git;a=blob;f=scripts/policy/docker-compose-api.yml;h=e32190f1e6cb6d9b64ddf53a2db2c746723a0c6a;hb=refs/heads/master>`_
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500269
270Running the Stability/Performance Tests
271***************************************
272
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400273The following links contain instructions on how to run the S3P Stability and Performance tests. These may be helpful to developers to become
274familiar with the Policy Framework components and test any local changes.
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500275
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400276.. toctree::
Pamela Dragoshb4a8ef22020-04-21 15:30:35 -0400277 :maxdepth: 1
Rashmi Pujar451a53a2019-12-10 17:10:55 -0500278
Pamela Dragoshba45dc62020-04-16 09:27:44 -0400279 api-s3p.rst
280 pap-s3p.rst
281 apex-s3p.rst
282 drools-s3p.rst
283 xacml-s3p.rst
Pamela Dragosh6eec8752020-05-21 11:06:03 -0400284 distribution-s3p.rst
285