summaryrefslogtreecommitdiffstats
path: root/docs/files/pm-validation.rst
blob: 204a5c75eabaf9e4a5a358060d284bc26c7972de (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
.. Copyright 2020 Nokia

.. _pm-validation:

VNFSDK PM Dictionary Validation User Guide
==========================================

Library was created to validate PM Dictionary YAML files which are used in a xNF ETSI NFV onboarding packages - CSAR files.

Basic information
------------------

The PM Dictionary validation library has two versions:

- validation-pmdictionary-<version>.jar contains PM Dictionary YAML validation logic which can be used by any ONAP component. Currently it is used by VNFSDK and SDC.

- validation-pmdictionary-<version>-standalone.jar contains PM Dictionary YAML validation logic which can be run from command line.

The PM Dictionary validation can be started in the two ways:

- as a standalone application
- using an Oclip command

Release Note
------------

The standalone version of PM Dictionary validation library is available from Honolulu release.

How to download standalone version
----------------------------------

All available jars are available at
::
    https://nexus.onap.org/#nexus-search;quick~validation-pmdictionary

To download a standalone version of PM Dictionary validation library you need to prepare a link for selected version of file or
manually download the file from Nexus (Viewing Repository: Releases).

Template
::
    wget -O validation-pmdictionary-<VERSION>-standalone.jar https://nexus.onap.org/service/local/artifact/maven/redirect?r=releases&g=org.onap.vnfsdk.validation&a=validation-pmdictionary&v=<VERSION>&e=jar&c=standalone

For example link for version 1.2.16 looks like
::
    wget -O validation-pmdictionary-1.2.16-standalone.jar https://nexus.onap.org/service/local/artifact/maven/redirect?r=releases&g=org.onap.vnfsdk.validation&a=validation-pmdictionary&v=1.2.16&e=jar&c=standalone

Application return codes
------------------------

===========  ===========
Return code  Description
===========  ===========
0            No errors, validation passed
1            Validation fails
2            Internal application error
===========  ===========

Application outputs
-------------------

================    ===========
Output              Description
================    ===========
Console             All information's about operation progress, result and errors are logged at user console.
Log file            Application creates a log file where all information's generated by application are logged.
Result json file    Validation result is also available in the file with postfix '-validation-results.json'. The File is stored in a folder with input PM dictionary file.
================    ===========

How to run standalone application?
----------------------------------

1. Install Java 11 JRE
2. Download standalone version of PM Dictionary YAML validation application

For example
::
    wget -O validation-pmdictionary-1.2.16-standalone.jar https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vnfsdk.validation&a=validation-pmdictionary&v=1.2.16&e=jar&c=standalone

3. Go to folder with downloaded application and run it
::
    java -jar validation-pmdictionary-1.2.16-standalone.jar <path to pm_dictionary_file.yaml>

Examples
--------

1. Successful validation
::
    ❯ java -jar validation-pmdictionary-1.2.16-standalone.jar /home/username/yaml_schema/Simple_Valid_Schema.yaml

    # Executing a 'Validate PM Dictionary yaml' operation ...
    # ... Done.

    # Operation result:

    {
        "file": "/home/username/yaml_schema/Simple_Valid_Schema.yaml",
        "status": "PASS",
        "errors": []
    }

    # Result was stored in a file: '/home/username/yaml_schema/Simple_Valid_Schema-validation-results.json'

    # Application exits successfully.

    ❯ echo $?
    0

    ❯ cat Simple_Valid_Schema-validation-results.json

    {
        "file": "/home/username/yaml_schema/Simple_Valid_Schema.yaml",
        "status": "PASS",
        "errors": []
    }


2. Failing validation
::
    ❯ java -jar validation-pmdictionary-1.2.16-standalone.jar /home/username/yaml_schema/PM_Dictionary.yaml

    # Executing a 'Validate PM Dictionary yaml' operation ...
    # ... Done.

    # Operation result:

    {
        "file": "/home/username/yaml_schema/PM_Dictionary.yaml",
        "status": "FAILED",
        "errors": [
                {
                  "yamlDocumentNumber": 1,
                  "path": "/pmMetaData/pmFields/measResultType",
                  "message": "Value(s) is/are not in array of accepted values.\n value(s):  integer\n  accepted value(s):  [float, uint32, uint64]"
                },
                {
                  "yamlDocumentNumber": 1,
                  "path": "/pmMetaData/pmFields/",
                  "message": "Key not found: measChangeType"
                },
                {
                  "yamlDocumentNumber": 2,
                  "path": "/pmMetaData/pmFields/",
                  "message": "Key not found: measChangeType"
                },
                {
                  "yamlDocumentNumber": 3,
                  "path": "/pmMetaData/pmFields/measAdditionalFields/vendorField1",
                  "message": "Value(s) is/are not in array of accepted values.\n value(s):  [Z, A]\n  accepted value(s):  [X, Y, Z]"
                }
        ]
    }

    # Result was stored in a file: '/home/username/yaml_schema/PM_Dictionary-validation-results.json'

    # Application exits successfully.

    ❯ echo $?
    1

    ❯ cat /home/username/yaml_schema/PM_Dictionary-validation-results.json

    {
        "file": "/home/username/yaml_schema/PM_Dictionary.yaml",
        "status": "FAILED",
        "errors": [
                {
                  "yamlDocumentNumber": 1,
                  "path": "/pmMetaData/pmFields/measResultType",
                  "message": "Value(s) is/are not in array of accepted values.\n value(s):  integer\n  accepted value(s):  [float, uint32, uint64]"
                },
                {
                  "yamlDocumentNumber": 1,
                  "path": "/pmMetaData/pmFields/",
                  "message": "Key not found: measChangeType"
                },
                {
                  "yamlDocumentNumber": 2,
                  "path": "/pmMetaData/pmFields/",
                  "message": "Key not found: measChangeType"
                },
                {
                  "yamlDocumentNumber": 3,
                  "path": "/pmMetaData/pmFields/measAdditionalFields/vendorField1",
                  "message": "Value(s) is/are not in array of accepted values.\n value(s):  [Z, A]\n  accepted value(s):  [X, Y, Z]"
                }
        ]
    }

3. Validation internal error
::
    ❯ java -jar validation-pmdictionary-1.2.16-standalone.jar /home/username/Not_Yaml_File.txt

    # Executing a 'Validate PM Dictionary yaml' operation ...
    # Command error:
    Provided yaml file has invalid structure!, more information in log file.

    # Application fails with internal error.

    ❯ echo $?
    2

    ❯ cat pmdictionary-validate.log

    2020-12-14 08:23:31,054 ERROR o.o.v.y.YamlLoader [main] Failed to load multi document YAML file
    ...

How to run PM Dictionary YAML validation as an Oclip command?
-------------------------------------------------------------

1. Run Oclip and execute a command:

Command
::
    oclip --product onap-honolulu pm-dictionary-validate --yaml <path-to-yaml-file>

For example
::
    vnfadmin@ddc559540515:/tmp$ oclip --product onap-honolulu pm-dictionary-validate --yaml /tmp/Simple_Valid_Schema.yaml
    {"file":"/tmp/Simple_Valid_Schema.yaml","date":"Mon Dec 28 07:38:43 UTC 2020","criteria":"PASS","errors":"[]"}

    vnfadmin@ddc559540515:/tmp$ oclip --product onap-honolulu pm-dictionary-validate --yaml /tmp/PM_Dictionary.yaml
    {"file":"/tmp/PM_Dictionary.yaml","date":"Mon Dec 28 07:38:08 UTC 2020","criteria":"FAILED","errors":"
    [{\"yamlDocumentNumber\":1,\"path\":\"/pmMetaData/pmFields/measResultType\",
    \"message\":\"Value(s) is/are not in array of accepted values.\\n value(s):  integer\\n  accepted value(s):
    [float, uint32, uint64]\"},{\"yamlDocumentNumber\":1,\"path\":\"/pmMetaData/pmFields/\",\"message\":\"Key not found: measChangeType\"},
    {\"yamlDocumentNumber\":2,\"path\":\"/pmMetaData/pmFields/\",\"message\":\"Key not found: measChangeType\"},
    {\"yamlDocumentNumber\":3,\"path\":\"/pmMetaData/pmFields/measAdditionalFields/vendorField1\",
    \"message\":\"Value(s) is/are not in array of accepted values.\\n value(s):  [Z, A]\\n  accepted value(s):  [X, Y, Z]\"}]"}