You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Table of Contents

Scenario Scope In Frankfurt

This scenario will demonstrate PNF SW upgrade with netconf/yang interface with EM. The E2E procedure is VID→ SO→ CDS→ EMS → PNF.  Beyond the work of scenario 1, it also need:

  • Support SS REST API for PNF S/W upgrade, downloadNESw and activateNESw
  • Provide controller blueprint file for CDS to trigger downloadNESw and activateNESw actions

  • Enhance EMS simulator for integration test

Impacts

Project/ComponentStory
SO

Common task with Scenario 1: PNF Software Upgrade using direct Netconf/Yang interface

No additional impacts

CDS

Common task with Scenario 1: PNF Software Upgrade using direct Netconf/Yang interface

Additional impact: EMS-compatiable CBA  file for integration test

Integration

1) EMS simulator extension

2) Integration document revision for PNF Sw Upgrade UC

JIRA Status Tracking

Key Summary T Created Updated Due Assignee Reporter P Status Resolution
Loading...
Refresh


Test Status

NoTest CaseTest Status
1Download NE SW for PNF instance 1 from CDS to EM using SS REST APICOMPLETE
2Activate NE SW for PNF instance 1 from CDS to EM using SS REST APICOMPLETE
3Download NE SW for PNF instance 2 from CDS to EM using SS REST APCOMPLETE
4Activate NE SW for PNF instance 2 from CDS to EM using SS REST APICOMPLETE
5Test PNF SW upgrade Workflow for PNF instance 1 from SO to CDS (using SS gRPC API) to EM

COMPLETE

With Exception: WF was executed as expected (SW version was changed) but not right response from SO.


Initial Status


Initial Status of EMS Simulator

<software-management xmlns="http://onap.org/pnf-swm">
  <pnf-software-package>
    <neIdentifier>5gDU0001</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0002</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0003</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
</software-management>


Detailed Description of Integration Testcases and Results


Test case ID1
NameDownload NE SW for PNF instance 1 from CDS to EM using SS REST API
DescriptionDownload NE SW for PNF instance 1 from CDS to EM using SS REST API
ReleaseFrankfurt
Pre-conditions
Testing Steps


Test Command
curl -s -u "ccsdkapps:ccsdkapps" -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://cds.onap:30499/api/v1/execution-service/process -d @downloadNESw-request-body.json | python -m json.tool


Contents of downloadNESw-request-body.json

{
  "commonHeader": {
    "originatorId": "CurlTest",
    "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
    "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54"
  },
  "actionIdentifiers": {
    "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
    "blueprintVersion": "1.0.0",
    "actionName": "downloadNESw",
    "mode": "sync"
  },
  "payload": {
    "downloadNESw-request": {
      "downloadNESw-properties": {
        "pnf-id": "5gDU0001",
        "target-software-version": "v2"
      }
    }
  }
}

Response of CDS

{
    "commonHeader": {
        "timestamp": "2020-03-12T09:18:44.898Z",
        "originatorId": "CurlTest",
        "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
        "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54",
        "flags": null
    },
    "actionIdentifiers": {
        "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
        "blueprintVersion": "1.0.0",
        "actionName": "downloadNESw",
        "mode": "sync"
    },
    "status": {
        "code": 200,
        "eventType": "EVENT_COMPONENT_EXECUTED",
        "timestamp": "2020-03-12T09:18:54.770Z",
        "errorMessage": null,
        "message": "success"
    },
    "payload": {
        "downloadNESw-response": {}
    }
}

Status of EMS Simulator

<software-management xmlns="http://onap.org/pnf-swm">
  <pnf-software-package>
    <neIdentifier>5gDU0001</neIdentifier>
    <current-status>DOWNLOAD_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:18:54Z</state-change-time>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0002</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0003</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
</software-management>

Conclusion (Pass/Fail)Pass
Test Lab
Test case ID2
NameActivate NE SW for PNF instance 1 from CDS to EM using SS REST API
DescriptionActivate NE SW for PNF instance 1 from CDS to EM using SS REST API
ReleaseFrankfurt
Pre-conditions
Testing Steps


Test Command
curl -s -u "ccsdkapps:ccsdkapps" -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://cds.onap:30499/api/v1/execution-service/process -d @activateNESw-request-body.json | python -m json.tool


Contents of activateNESw-request-body.json
{
  "commonHeader": {
    "originatorId": "CurlTest",
    "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
    "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54"
  },
  "actionIdentifiers": {
    "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
    "blueprintVersion": "1.0.0",
    "actionName": "activateNESw",
    "mode": "sync"
  },
  "payload": {
    "activateNESw-request": {
      "activateNESw-properties": {
        "pnf-id": "5gDU0001",
        "target-software-version": "v2"
      }
    }
  }
}
Response of CDS
{
    "commonHeader": {
        "timestamp": "2020-03-12T09:29:23.915Z",
        "originatorId": "CurlTest",
        "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
        "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54",
        "flags": null
    },
    "actionIdentifiers": {
        "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
        "blueprintVersion": "1.0.0",
        "actionName": "activateNESw",
        "mode": "sync"
    },
    "status": {
        "code": 200,
        "eventType": "EVENT_COMPONENT_EXECUTED",
        "timestamp": "2020-03-12T09:29:33.731Z",
        "errorMessage": null,
        "message": "success"
    },
    "payload": {
        "activateNESw-response": {}
    }
}
Status of EMS Simulator
<software-management xmlns="http://onap.org/pnf-swm">
  <pnf-software-package>
    <neIdentifier>5gDU0001</neIdentifier>
    <current-status>ACTIVATION_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:29:33Z</state-change-time>
    <swVersionToBeActivated>v2</swVersionToBeActivated>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0002</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0003</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
</software-management>
Conclusion (Pass/Fail)Pass
Test Lab
Test case ID3
NameDownload NE SW for PNF instance 2 from CDS to EM using SS REST AP
DescriptionDownload NE SW for PNF instance 2 from CDS to EM using SS REST AP
ReleaseFrankfurt
Pre-conditions
Testing Steps


Test Command
curl -s -u "ccsdkapps:ccsdkapps" -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://cds.onap:30499/api/v1/execution-service/process -d @downloadNESw-request-body.json | python -m json.tool
Contents of downloadNESw-request-body.json
{
  "commonHeader": {
    "originatorId": "CurlTest",
    "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
    "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54"
  },
  "actionIdentifiers": {
    "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
    "blueprintVersion": "1.0.0",
    "actionName": "downloadNESw",
    "mode": "sync"
  },
  "payload": {
    "downloadNESw-request": {
      "downloadNESw-properties": {
        "pnf-id": "5gDU0003",
        "target-software-version": "v2"
      }
    }
  }
}


Response of CDS
{
    "commonHeader": {
        "timestamp": "2020-03-12T09:40:48.712Z",
        "originatorId": "CurlTest",
        "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
        "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54",
        "flags": null
    },
    "actionIdentifiers": {
        "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
        "blueprintVersion": "1.0.0",
        "actionName": "downloadNESw",
        "mode": "sync"
    },
    "status": {
        "code": 200,
        "eventType": "EVENT_COMPONENT_EXECUTED",
        "timestamp": "2020-03-12T09:40:58.742Z",
        "errorMessage": null,
        "message": "success"
    },
    "payload": {
        "downloadNESw-response": {}
    }
}


Status of EMS Simulator
<software-management xmlns="http://onap.org/pnf-swm">
  <pnf-software-package>
    <neIdentifier>5gDU0001</neIdentifier>
    <current-status>ACTIVATION_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:29:33Z</state-change-time>
    <swVersionToBeActivated>v2</swVersionToBeActivated>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0002</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0003</neIdentifier>
    <current-status>DOWNLOAD_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:40:58Z</state-change-time>
  </pnf-software-package>
</software-management>
Conclusion (Pass/Fail)Pass
Test Lab
Test case ID4
NameActivate NE SW for PNF instance 2 from CDS to EM using SS REST API
DescriptionActivate NE SW for PNF instance 2 from CDS to EM using SS REST API
ReleaseFrankfurt
Pre-conditions
Testing Steps


Test Command
curl -s -u "ccsdkapps:ccsdkapps" -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://cds.onap:30499/api/v1/execution-service/process -d @activateNESw-request-body.json | python -m json.tool
Contents of activateNESw-request-body.json
{
  "commonHeader": {
    "originatorId": "CurlTest",
    "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
    "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54"
  },
  "actionIdentifiers": {
    "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
    "blueprintVersion": "1.0.0",
    "actionName": "activateNESw",
    "mode": "sync"
  },
  "payload": {
    "activateNESw-request": {
      "activateNESw-properties": {
        "pnf-id": "5gDU0003",
        "target-software-version": "v2"
      }
    }
  }
}


Response of CDS
{
    "commonHeader": {
        "timestamp": "2020-03-12T09:42:11.587Z",
        "originatorId": "CurlTest",
        "requestId": "59374d97-d3bb-44b1-a808-f5a28347a10b",
        "subRequestId": "98d8be21-6e31-4044-985a-a58583dc5c54",
        "flags": null
    },
    "actionIdentifiers": {
        "blueprintName": "PNF_SW_UPGRADE_WITH_EM",
        "blueprintVersion": "1.0.0",
        "actionName": "activateNESw",
        "mode": "sync"
    },
    "status": {
        "code": 200,
        "eventType": "EVENT_COMPONENT_EXECUTED",
        "timestamp": "2020-03-12T09:42:21.153Z",
        "errorMessage": null,
        "message": "success"
    },
    "payload": {
        "activateNESw-response": {}
    }
}


Status of EMS Simulator
<software-management xmlns="http://onap.org/pnf-swm">
  <pnf-software-package>
    <neIdentifier>5gDU0001</neIdentifier>
    <current-status>ACTIVATION_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:29:33Z</state-change-time>
    <swVersionToBeActivated>v2</swVersionToBeActivated>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0002</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0003</neIdentifier>
    <current-status>ACTIVATION_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:42:20Z</state-change-time>
    <swVersionToBeActivated>v2</swVersionToBeActivated>
  </pnf-software-package>
</software-management>
Conclusion (Pass/Fail)Pass
Test Lab
Test case ID5
NameTest PNF SW upgrade Workflow for PNF instance 1 from SO to CDS (using SS gRPC API) to EM
DescriptionTest PNF SW upgrade Workflow for PNF instance 1 from SO to CDS (using SS gRPC API) to EM
ReleaseFrankfurt
Pre-conditions
Testing Steps


Test Command
curl -s -u "InfraPortalClient:password1$" -H "Content-Type: application/json" -H "Accept: application/json" -H "X-ONAP-RequestID: a903813b-b9d7-446f-a9dd-56ae6c2a4d89" -H "X-ONAP-PartnerName: SO-REST" -H "X-RequestorID: so-rest" -X POST http://so.onap:30277/onap/so/infra/instanceManagement/v1/serviceInstances/25c651cb-4ddb-4755-9aea-42e36ea34442/pnfs/5gDU0001/workflows/245a0bca-3816-45c6-9270-1de25d27fc56 -d @PNFSoftwareUpgrade-cds.json | python -m json.tool
Contents of PNFSoftwareUpgrade-cds.json
{
  "requestDetails": {
    "modelInfo": {
      "modelUuid": "df91c347-4452-4d2e-9cfc-9ac3fe2a2a1b"
    },
    "requestInfo": {
      "instanceName": "104cdc86-ac3b-4775-8b99-409bf1c29c65"
    },
    "requestParameters": {
      "userParams": [
        {
          "name": "pnfName",
          "value": "5gDU0001"
        },
        {
          "name": "targetSoftwareVersion",
          "value": "v5"
        }
      ]
    }
  }
}


Status of EMS Simulator
<software-management xmlns="http://onap.org/pnf-swm">
  <pnf-software-package>
    <neIdentifier>5gDU0001</neIdentifier>
    <current-status>ACTIVATION_COMPLETED</current-status>
    <software-version>v5</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:50:13Z</state-change-time>
    <swVersionToBeActivated>v5</swVersionToBeActivated>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0002</neIdentifier>
    <current-status>CREATED</current-status>
    <software-version>v1</software-version>
  </pnf-software-package>
  <pnf-software-package>
    <neIdentifier>5gDU0003</neIdentifier>
    <current-status>ACTIVATION_COMPLETED</current-status>
    <software-version>v2</software-version>
    <swToBeDownloaded>
      <swLocation>http://192.168.35.96:10080/ran_du_pkg1-v2.zip</swLocation>
      <swFileCompression>ZIP</swFileCompression>
      <swFileFormat>binary</swFileFormat>
      <swFileSize>12345678</swFileSize>
    </swToBeDownloaded>
    <state-change-time>2020-03-12T09:42:20Z</state-change-time>
    <swVersionToBeActivated>v2</swVersionToBeActivated>
  </pnf-software-package>
</software-management>
Conclusion (Pass/Fail)
Test Lab
  • No labels