a2562ad85c4b95eb31e76046cafc60a7dc6de37b
[ric-plt/a1.git] / docs / developer-guide.rst
1 .. ==================================================================================
2 ..       Copyright (c) 2019 Nokia
3 ..       Copyright (c) 2018-2019 AT&T Intellectual Property.
4 ..
5 ..   Licensed under the Apache License, Version 2.0 (the "License");
6 ..   you may not use this file except in compliance with the License.
7 ..   You may obtain a copy of the License at
8 ..
9 ..          http://www.apache.org/licenses/LICENSE-2.0
10 ..
11 ..   Unless required by applicable law or agreed to in writing, software
12 ..   distributed under the License is distributed on an "AS IS" BASIS,
13 ..   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ..   See the License for the specific language governing permissions and
15 ..   limitations under the License.
16 .. ==================================================================================
17
18 A1 Dev Guide
19 ============
20
21 Tech Stack
22 ==========
23
24 -  OpenAPI3
25 -  Connexion
26 -  Flask with Gevent serving
27 -  Python3.7
28
29 Version bumping
30 ===============
31
32 This project follows semver. When changes are made, the versions are in:
33
34 1) ``docs/release-notes.rst``
35
36 2) ``setup.py``
37
38 3) ``container-tag.yaml``
39
40 4) ``a1/openapi.yml``
41
42 Running locally
43 ===============
44
45 1. This requires that RMR is installed on the base system. (the
46    Dockerfile does this when running in Docker)
47
48 2. It also requires rmr-python >= 0.10.1 installed. (The dockerfile also
49    does this)
50
51 3. Create a ``local.rt`` file and copy it into ``/opt/route/local.rt``.
52    Note, the example one in ``local_tests`` will need to be modified for
53    your scenario and machine.
54
55 4. Copy a ric manifest into ``/opt/ricmanifest.json`` and an rmr mapping
56    table into ``/opt/rmr_string_int_mapping.txt``. You can use the test
57    ones packaged if you want:
58
59    ::
60
61      cp tests/fixtures/ricmanifest.json /opt/ricmanifest.json cp
62      tests/fixtures/rmr_string_int_mapping.txt
63      /opt/rmr_string_int_mapping.txt
64
65 5. Then:
66
67    sudo pip install –ignore-installed .; set -x LD_LIBRARY_PATH
68    /usr/local/lib/; set -x RMR_SEED_RT /opt/route/local.rt ; set -x
69    RMR_RCV_RETRY_INTERVAL 500; set -x RMR_RETRY_TIMES 10;
70    /usr/bin/run.py
71
72 Testing locally
73 ===============
74
75 There are also two test receivers in ``localtests`` you can run locally.
76 The first is meant to be used with the ``control_admission`` policy
77 (that comes in test fixture ric manifest):
78
79 ::
80
81    set -x LD_LIBRARY_PATH /usr/local/lib/; set -x RMR_SEED_RT /opt/route/local.rt ; python receiver.py
82
83 The second can be used against the ``test_policy`` policy to test the
84 async nature of A1, and to test race conditions. You can start it with
85 several env variables as follows:
86
87 ::
88
89    set -x LD_LIBRARY_PATH /usr/local/lib/; set -x RMR_SEED_RT /opt/route/local.rt ; set -x TEST_RCV_PORT 4563; set -x TEST_RCV_RETURN_MINT 10001; set -x TEST_RCV_SEC_DELAY 5; set -x TEST_RCV_RETURN_PAYLOAD '{"ACK_FROM": "DELAYED_TEST", "status": "SUCCESS"}' ; python receiver.py
90
91 To test the async nature of A1, trigger a call to ``test_policy``, which
92 will target the delayed receicer, then immediately call
93 ``control_admission``. The ``control_admission`` policy return should be
94 returned immediately, whereas the ``test_policy`` should return after
95 about ``TEST_RCV_SEC_DELAY 5``. The ``test_policy`` should not block A1
96 while it is sleeping, and both responses should be correct.
97
98 ::
99
100    curl -v -X PUT -H "Content-Type: application/json" -d '{}' localhost:10000/ric/policies/test_policy
101    curl -v -X PUT -H "Content-Type: application/json" -d '{"dc_admission_start_time": "10:00:00", "dc_admission_end_time": "11:00:00"}' localhost:10000/ric/policies/control_admission_time
102
103 Finally, there is a test “bombarder” that will flood A1 with messages
104 with good message types but bad transaction IDs, to test A1’s resilience
105 against queue-overflow attacks
106
107 ::
108
109    set -x LD_LIBRARY_PATH /usr/local/lib/; set -x RMR_SEED_RT /opt/route/local.rt ;  python bombard.py