Age | Commit message (Expand) | Author | Files | Lines |
2019-01-21 | Merge "Bug fixes from AT&T January 20th" |  Steve Smokowski | 2 | -4/+145 |
2019-01-21 | Bug fixes from AT&T January 20th |  Benjamin, Max (mb388a) | 2 | -4/+145 |
2019-01-20 | ensure data for si matches on macro requests | .highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */#!/bin/bash
source /var/onap_tests/_test_base
source /var/onap/vfc
covered_functions=(
"clone_all_vfc_repos" "compile_all_vfc_repos" "install_vfc" "get_vfc_images"
)
# test_clone_all_vfc_repos() - Verify cloning and pulling source code from repositories
function test_clone_all_vfc_repos {
clone_all_vfc_repos
#asserts_file_exist $vfc_src_folder/pom.xml
#asserts_file_exist $vfc_src_folder/gvnfm
asserts_file_exist $vfc_src_folder/gvnfm/vnflcm/pom.xml
asserts_file_exist $vfc_src_folder/gvnfm/vnfmgr/pom.xml
asserts_file_exist $vfc_src_folder/gvnfm/vnfres/pom.xml
#asserts_file_exist $vfc_src_folder/nfvo
asserts_file_exist $vfc_src_folder/nfvo/catalog/run.sh
#asserts_file_exist $vfc_src_folder/nfvo/driver
asserts_file_exist $vfc_src_folder/nfvo/driver/ems/pom.xml
asserts_file_exist $vfc_src_folder/nfvo/driver/sfc/pom.xml
#asserts_file_exist $vfc_src_folder/nfvo/driver/vnfm
asserts_file_exist $vfc_src_folder/nfvo/driver/vnfm/gvnfm/pom.xml
asserts_file_exist $vfc_src_folder/nfvo/driver/vnfm/svnfm/pom.xml
asserts_file_exist $vfc_src_folder/nfvo/lcm/pom.xml
asserts_file_exist $vfc_src_folder/nfvo/wfengine/wso2/pom.xml
}
# test_compile_all_vfc_repos() - Verify that all the VFC modules are compiled properly
function test_compile_all_vfc_repos {
clone_all_vfc_repos
compile_all_vfc_repos
# TODO(electrocucaracha): Add asserts_file_exist
}
# test_get_vfc_images() - Verify all VFC images are built correctly.
function test_get_vfc_images {
clone_all_vfc_repos
get_vfc_images
asserts_image onap/gvnfmdriver
asserts_image onap/nslcm
asserts_image onap/vnfres
asserts_image onap/vnfmgr
asserts_image onap/vnflcm
}
# test_install_vfc() - Verify that the VFC are up and running
function test_install_vfc {
clone_all_vfc_repos
get_vfc_images
install_vfc
asserts_image_running onap/nslcm
asserts_image_running onap/gvnfmdriver
asserts_image_running onap/vnfres
asserts_image_running onap/vnfmgr
asserts_image_running onap/vnflcm
}
if [ "$1" != '*' ]; then
unset covered_functions
covered_functions=$1
fi
main "${covered_functions[@]}"
> Benjamin, Max (mb388a) | 1 | -28/+24 |
2018-10-19 | bug fixes october 19th |  Benjamin, Max (mb388a) | 2 | -1/+58 |
2018-09-20 | various bugfixes for casablanca |  Benjamin, Max (mb388a) | 1 | -0/+9 |
2018-09-17 | Accept VNF Recreate Requests |  Benjamin, Max (mb388a) | 10 | -2/+187 |
2018-09-13 | Stability fixes |  Benjamin, Max (mb388a) | 3 | -0/+37 |
2018-09-08 | fixed null pointer on northbound |  Benjamin, Max (mb388a) | 1 | -43/+16 |
2018-09-08 | added generic fabric support to SO |  Benjamin, Max (mb388a) | 5 | -1/+590 |
2018-08-28 | Converted ServiceInstances to catalog db client |  Benjamin, Max (mb388a) | 44 | -11/+1647 |
2018-08-14 | Added vfModule scale out endpoint and validation |  Brittany Plummer (bp896r) | 12 | -3/+579 |
2018-08-13 | Update CatalogDB Logging |  Smokowski, Steve (ss835w) | 1 | -34/+36 |
2018-08-09 | GR-API flow, VF Module, SDNC GR API Fixes |  Benjamin, Max (mb388a) | 6 | -6/+6 |
2018-08-07 | E2EServiceInstances to be free of catalogdb |  Benjamin, Max (mb388a) | 1 | -1/+1 |
2018-08-06 | issue while persisting data |  Benjamin, Max (mb388a) | 1 | -3/+3 |
2018-08-02 | update infra apihandler to utilize rest |  Benjamin, Max (mb388a) | 8 | -0/+416 |
2018-07-31 | Containerization feature of SO |  Benjamin, Max (mb388a) | 280 | -6381/+13086 |
2018-04-03 | Added controllerType to requestParameters |  Brittany Plummer (bp896r) | 1 | -0/+1 |
2018-03-27 | UT Coverage for API Handler |  Abhishek Shekhar | 1 | -1/+1 |
2018-03-14 | AT&T 1712 and 1802 release code |  Rob Daugherty | 162 | -0/+6576 |
2017-09-08 | 1710 Rebase - Second Attempt |  Arthur Martella | 3 | -0/+184 |
2017-05-02 | [MSO-8] Second step of the rebase for MSO |  Determe, Sebastien (sd378r) | 10 | -0/+265 |