blob: 0fea1a44f2e415993f7aa3285364b1452a88ec9c [file] [log] [blame]
danielhanrahanf66694a2024-06-10 21:32:12 +01001/*
2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2024 Nordix Foundation
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
19 */
20
halil.cakal1745d202024-08-06 14:02:49 +010021import { sleep } from 'k6';
sourabh_sourabh175d12d2024-08-30 16:25:04 +010022import { performPostRequest, NCMP_BASE_URL, DMI_PLUGIN_URL, TOTAL_CM_HANDLES, MODULE_SET_TAGS
halil.cakal1745d202024-08-06 14:02:49 +010023} from './utils.js';
danielhanrahan4e9f68c2024-06-28 13:43:35 +010024import { executeCmHandleIdSearch } from './search-base.js';
danielhanrahanf66694a2024-06-10 21:32:12 +010025
halil.cakal1745d202024-08-06 14:02:49 +010026export function createCmHandles(cmHandleIds) {
danielhanrahanf66694a2024-06-10 21:32:12 +010027 const url = `${NCMP_BASE_URL}/ncmpInventory/v1/ch`;
sourabh_sourabh175d12d2024-08-30 16:25:04 +010028 const payload = JSON.stringify(createCmHandlePayload(cmHandleIds));
29 return performPostRequest(url, payload, 'createCmHandles');
30}
31
32export function deleteCmHandles(cmHandleIds) {
33 const url = `${NCMP_BASE_URL}/ncmpInventory/v1/ch`;
34 const payload = JSON.stringify({
35 "dmiPlugin": DMI_PLUGIN_URL,
36 "removedCmHandles": cmHandleIds,
37 });
38 return performPostRequest(url, payload, 'deleteCmHandles');
39}
40
41export function waitForAllCmHandlesToBeReady() {
42 const POLLING_INTERVAL_SECONDS = 5;
43 let cmHandlesReady = 0;
44 do {
45 sleep(POLLING_INTERVAL_SECONDS);
46 cmHandlesReady = getNumberOfReadyCmHandles();
47 console.log(`${cmHandlesReady}/${TOTAL_CM_HANDLES} CM handles are READY`);
48 } while (cmHandlesReady < TOTAL_CM_HANDLES);
49}
50
51function createCmHandlePayload(cmHandleIds) {
52 return {
danielhanrahanf66694a2024-06-10 21:32:12 +010053 "dmiPlugin": DMI_PLUGIN_URL,
danielhanrahanb12d0c82024-08-15 12:42:21 +010054 "createdCmHandles": cmHandleIds.map((cmHandleId, index) => ({
danielhanrahanf66694a2024-06-10 21:32:12 +010055 "cmHandle": cmHandleId,
danielhanrahanf2e1e252024-08-25 21:35:19 +010056 "alternateId": cmHandleId.replace('ch-', 'alt-'),
emacleef11aad92024-08-14 14:25:33 +010057 "moduleSetTag": MODULE_SET_TAGS[index % MODULE_SET_TAGS.length],
danielhanrahanf66694a2024-06-10 21:32:12 +010058 "cmHandleProperties": {"neType": "RadioNode"},
59 "publicCmHandleProperties": {
60 "Color": "yellow",
61 "Size": "small",
62 "Shape": "cube"
63 }
64 })),
65 };
danielhanrahanf66694a2024-06-10 21:32:12 +010066}
67
68function getNumberOfReadyCmHandles() {
danielhanrahana9de1662024-09-21 16:47:43 +010069 const response = executeCmHandleIdSearch('cps-path-for-ready-cm-handles');
danielhanrahan4e9f68c2024-06-28 13:43:35 +010070 const arrayOfCmHandleIds = JSON.parse(response.body);
71 return arrayOfCmHandleIds.length;
danielhanrahanf2e1e252024-08-25 21:35:19 +010072}