summaryrefslogtreecommitdiffstats
path: root/csit/tests/cps-data-sync/cps-data-sync.robot
diff options
context:
space:
mode:
authorToine Siebelink <toine.siebelink@est.tech>2024-01-11 14:25:42 +0000
committerGerrit Code Review <gerrit@onap.org>2024-01-11 14:25:42 +0000
commit65700dea9c6d8332c27ad649566ee817e479fe0b (patch)
tree803f87df3c816b8027f57a5ac1ebedb8c2df0b01 /csit/tests/cps-data-sync/cps-data-sync.robot
parent37c6d4dfd45afda49042da455f3bcb572dbad7a2 (diff)
parent02d8bf8c8a3469f75ef841c9d8c72349c51f3330 (diff)
Merge "Improve dmi plugin csit stub - Modified dmi plugin stub to return diff. modules based on cm handle id"
Diffstat (limited to 'csit/tests/cps-data-sync/cps-data-sync.robot')
-rw-r--r--csit/tests/cps-data-sync/cps-data-sync.robot8
1 files changed, 4 insertions, 4 deletions
diff --git a/csit/tests/cps-data-sync/cps-data-sync.robot b/csit/tests/cps-data-sync/cps-data-sync.robot
index e96e10a42f..71de4be1fe 100644
--- a/csit/tests/cps-data-sync/cps-data-sync.robot
+++ b/csit/tests/cps-data-sync/cps-data-sync.robot
@@ -1,6 +1,6 @@
/*
* ============LICENSE_START=======================================================
- * Copyright (C) 2022 Nordix Foundation
+ * Copyright (C) 2022-2024 Nordix Foundation
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,19 +35,19 @@ ${ncmpBasePath} /ncmp
*** Test Cases ***
Operational state goes to UNSYNCHRONIZED when data sync (flag) is enabled
- ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data-sync
+ ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/data-sync
${params}= Create Dictionary dataSyncEnabled=true
${headers}= Create Dictionary Authorization=${auth}
${response}= PUT On Session CPS_URL ${uri} params=${params} headers=${headers}
Should Be Equal As Strings ${response.status_code} 200
- ${verifyUri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/state
+ ${verifyUri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/state
${verifyHeaders}= Create Dictionary Authorization=${auth}
${verifyResponse}= GET On Session CPS_URL ${verifyUri} headers=${verifyHeaders}
Should Be Equal As Strings ${verifyResponse.json()['state']['dataSyncState']['operational']['syncState']} UNSYNCHRONIZED
Sleep 5
Operational state goes to SYNCHRONIZED after sometime when data sync (flag) is enabled
- ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/state
+ ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/state
${headers}= Create Dictionary Authorization=${auth}
${response}= GET On Session CPS_URL ${uri} headers=${headers}
Should Be Equal As Strings ${response.json()['state']['dataSyncState']['operational']['syncState']} SYNCHRONIZED \ No newline at end of file