From 7306a2b43b75a4db5d21f95d9bd96ea7d59a50cf Mon Sep 17 00:00:00 2001 From: "stark, steven" Date: Tue, 2 Oct 2018 12:39:27 -0700 Subject: [VVP] update VVP documentation update the documentation and release notes Change-Id: I3dba97ff17119b90de119ba0a3e4a2aa41a05fd4 Issue-ID: VVP-110 Signed-off-by: stark, steven --- docs/index.rst | 1 + docs/release-notes.rst | 7 +++ docs/validation-scripts.rst | 113 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 121 insertions(+) create mode 100644 docs/validation-scripts.rst (limited to 'docs') diff --git a/docs/index.rst b/docs/index.rst index 1c510e1..e139e9d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,6 +14,7 @@ ONAP for use by the VNF provider & any other validation authority. .. toctree:: :maxdepth: 1 + validation-scripts.rst administration.rst architecture.rst configuration.rst diff --git a/docs/release-notes.rst b/docs/release-notes.rst index d031d21..bfd3991 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -15,6 +15,13 @@ Release Notes Version: 2.0.0 --------------- +:Release Date: 2018-10-02 + +**New Features** + +- Created mapping of validation scripts to VNF Guidelines +- Increase validation script test coverage +- Created HTML report generation in validation scripts repository :Release Date: 2018-06-07 diff --git a/docs/validation-scripts.rst b/docs/validation-scripts.rst new file mode 100644 index 0000000..0ff6e32 --- /dev/null +++ b/docs/validation-scripts.rst @@ -0,0 +1,113 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. http://creativecommons.org/licenses/by/4.0 +.. Copyright 2018 AT&T Intellectual Property. All rights reserved. + +Manual Heat Template Validation +=============================== + +validation-scripts +------------------ + +This project contains validation scripts to test +that a set of Heat Templates adheres to +the ONAP VNF Heat Orchestration Template guidelines. + +For more information on the ONAP Heat Orchestration +Template Guidelines, vist the `Heat Guidelines `__ + +About +_____ + +The validation scripts project allows performing heat template +validation without installing the full VVP platform. The following +instructions apply to running these validation scripts in that manner. + + +Installation +____________ + +This software is not platform dependent and can be run in a Windows, Unix or +OS X environment. + +Satisfy Dependencies +#################### + + + These can be installed using pip (assuming pip is installed) with the command: + +``$ pip install -r requirements.txt`` + +Use +___ + +Clone this project. + +To validate Heat templates just run this the command under the folder ``ice_validator``: + +``$ pytest --tap-stream --template-directory=`` + +where ```` is the full path to a folder containing heat templates. + +Output +______ + +After performing a validation, an output folder will be created. + +``/path/to/validation-scripts/ice_validator/output/`` + +This folder will contain a file ``report.html`` which contains a list of all +of the ONAP VNF Heat Template Guideline violations. If there are no violations, +the report will say ``No validation errors found.`` + +Interpreting the Output +_______________________ + +The report file will have 4 columns for details about a violation, and one +row for each violation. Below contains details about each column. + +File +#### + +This is the file(s) that contained the violation + +Error Message +############# + +This shows the test and brief error message from the validation script that +contained the violation. There is a ``Full Details`` button to show the +complete raw test output. The error message will also contain details +about what element is involved with the violation (such as the parameter +name, resource id, etc...). + +Requirement(s) +############## + +This column contains the requirement(s) that each test/violation is +mapped to. These requirements are taken directly from the VNF Requirements +project Heat Orchestration Template Guidelines section. + + +Resolution Steps +################ + +For some violations, there are pre-defined resolution steps that +indicate what action the user should take to resolve the violation. + +**Note**: Not all violations will have resolution steps. Most violations +can be resolved simply by reviewing the requirements that have been violated +in the previous column. + + +Self-Test Suite +_______________ + +The ``ice_validator`` includes an extensive self-test suite. It is a +**requirement** for any additions or changes to the test suite to +successfully and cleanly complete a tox run. Simply run ``tox`` from +the project root as: + +``$ tox`` + +You can also run it under the folder ``ice_validator``: + +``$ pytest --self-test`` -- cgit 1.2.3-korg