Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Regression test in SB01
    1. An ONAP based on the latest build was installed on 11/12.

    2. Onboarding, service design, service distribution completed in SB01.
    3. SO does not add recipe automatically. Manual insertion was done.
    4. Seems like SDNC does not insert correct data to its DB. 
      1. For ALLOTTED_RESOURCE_MODEL, BRG does not have 'Y' for its ecomp_generated_naming. TunnelXConn is missing.
      2. VF_MODEL is good.
  2. vCpeResCust custom workflow:
    1. Jim fixed xml parsing problem for service delete and now the flow can pick up vgw, tunnelxconn AR, and vbrg AR from the service info returned from AAI. An error was captured when SO requests SDNC for brg deactivate. The request to SDNC is below


      Code Block
      collapsetrue
      <sdncadapterworkflow:SDNCAdapterWorkflowRequest xmlns:ns5="http://org.openecomp/mso/request/types/v1"
                                                                                                              xmlns:sdncadapterworkflow="http://org.openecomp/mso/workflow/schema/v1"
                                                                                                              xmlns:sdncadapter="http://org.openecomp/workflow/sdnc/adapter/schema/v1">
                                         <sdncadapter:RequestHeader>
                                                              <sdncadapter:RequestId>b6106b00-b9f1-418c-9dc3-aca97664cd05</sdncadapter:RequestId>
                                                              <sdncadapter:SvcInstanceId>41235b16-5c38-4c29-82e9-6784d9decf46</sdncadapter:SvcInstanceId>
                                                              <sdncadapter:SvcAction>deactivate</sdncadapter:SvcAction>
                                                              <sdncadapter:SvcOperation>brg-topology-operation</sdncadapter:SvcOperation>
                                                              <sdncadapter:CallbackUrl>http://mso:8080/mso/SDNCAdapterCallbackService</sdncadapter:CallbackUrl>
                                              </sdncadapter:RequestHeader>
                                      <sdncadapterworkflow:SDNCRequestData>
                                              <request-information>
                                                      <request-id>2ba02fea-7a07-4641-87fb-abb10a305b44</request-id>
                                                      <request-action>DeleteBRGInstance</request-action>
                                                      <source>MSO</source>
                                                      <notification-url/>
                                                      <order-number/>
                                                      <order-version/>
                                              </request-information>
                                              <service-information>
                                                      <service-id></service-id>
                                                      <subscription-service-type>vCPE</subscription-service-type>
                                                      <onap-model-information></onap-model-information>
                                                      <service-instance-id>41235b16-5c38-4c29-82e9-6784d9decf46</service-instance-id>
                                                      <subscriber-name/>
                                                      <global-customer-id>SDN-ETHERNET-INTERNET</global-customer-id>
                                              </service-information>
                                              <allotted-resource-information>
                                                      <allotted-resource-id>99dc7978-3efe-4074-805c-2ae5dc785c88</allotted-resource-id>
                                                      <allotted-resource-type>brg</allotted-resource-type>
                                                      <parent-service-instance-id>e565bb6b-de14-4a5c-a992-65a681771a7a</parent-service-instance-id>
                                                      <onap-model-information>
                                                              <model-invariant-uuid></model-invariant-uuid>
                                                              <model-uuid></model-uuid>
                                                              <model-customization-uuid></model-customization-uuid>
                                                              <model-version></model-version>
                                                              <model-name></model-name>
                                                      </onap-model-information>
                                              </allotted-resource-information>
                                              <brg-request-input>
                                              </brg-request-input>
                                      </sdncadapterworkflow:SDNCRequestData>
                                      </sdncadapterworkflow:SDNCAdapterWorkflowRequest>
      
      
      

      The AAI request from SDNC is below. Note that a few values are 'null'

      Code Block
      2017-11-13 17:07:01,916 | INFO  | SvcLogicGraph [module=GENERIC-RESOURCE-API, rpc=brg-topology-operation-deactivate, mode=sync, version=1.2.0-SNAPSHOT] | Request URL : https://aai.api.simpledemo.openecomp.org:8443/aai/v11/business/customers/customer/null/service-subscriptions/service-subscription/null/service-instances/service-instance/null/allotted-resources/allotted-resource/99dc7978-3efe-4074-805c-2ae5dc785c88

...