danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 21 | import http from 'k6/http'; |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 22 | import { check, sleep } from 'k6'; |
emaclee | f11aad9 | 2024-08-14 14:25:33 +0100 | [diff] [blame] | 23 | import { NCMP_BASE_URL, DMI_PLUGIN_URL, TOTAL_CM_HANDLES, MODULE_SET_TAGS, REGISTRATION_BATCH_SIZE, CONTENT_TYPE_JSON_PARAM, makeBatchOfCmHandleIds } from './utils.js'; |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 24 | import { executeCmHandleIdSearch } from './search-base.js'; |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 25 | |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 26 | export function registerAllCmHandles() { |
| 27 | forEachBatchOfCmHandles(createCmHandles); |
| 28 | waitForAllCmHandlesToBeReady(); |
| 29 | } |
| 30 | |
| 31 | export function deregisterAllCmHandles() { |
| 32 | forEachBatchOfCmHandles(deleteCmHandles); |
| 33 | } |
| 34 | |
| 35 | function forEachBatchOfCmHandles(functionToExecute) { |
| 36 | const TOTAL_BATCHES = Math.ceil(TOTAL_CM_HANDLES / REGISTRATION_BATCH_SIZE); |
| 37 | for (let batchNumber = 0; batchNumber < TOTAL_BATCHES; batchNumber++) { |
| 38 | const nextBatchOfCmHandleIds = makeBatchOfCmHandleIds(REGISTRATION_BATCH_SIZE, batchNumber); |
| 39 | functionToExecute(nextBatchOfCmHandleIds); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | function createCmHandles(cmHandleIds) { |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 44 | const url = `${NCMP_BASE_URL}/ncmpInventory/v1/ch`; |
| 45 | const payload = { |
| 46 | "dmiPlugin": DMI_PLUGIN_URL, |
danielhanrahan | b12d0c8 | 2024-08-15 12:42:21 +0100 | [diff] [blame] | 47 | "createdCmHandles": cmHandleIds.map((cmHandleId, index) => ({ |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 48 | "cmHandle": cmHandleId, |
seanbeirne | 2855952 | 2024-07-19 16:55:06 +0100 | [diff] [blame] | 49 | "alternateId": `alt-${cmHandleId}`, |
emaclee | f11aad9 | 2024-08-14 14:25:33 +0100 | [diff] [blame] | 50 | "moduleSetTag": MODULE_SET_TAGS[index % MODULE_SET_TAGS.length], |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 51 | "cmHandleProperties": {"neType": "RadioNode"}, |
| 52 | "publicCmHandleProperties": { |
| 53 | "Color": "yellow", |
| 54 | "Size": "small", |
| 55 | "Shape": "cube" |
| 56 | } |
| 57 | })), |
| 58 | }; |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 59 | const response = http.post(url, JSON.stringify(payload), CONTENT_TYPE_JSON_PARAM); |
| 60 | check(response, { 'create CM-handles status equals 200': (r) => r.status === 200 }); |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 61 | return response; |
| 62 | } |
| 63 | |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 64 | function deleteCmHandles(cmHandleIds) { |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 65 | const url = `${NCMP_BASE_URL}/ncmpInventory/v1/ch`; |
| 66 | const payload = { |
| 67 | "dmiPlugin": DMI_PLUGIN_URL, |
| 68 | "removedCmHandles": cmHandleIds, |
| 69 | }; |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 70 | const response = http.post(url, JSON.stringify(payload), CONTENT_TYPE_JSON_PARAM); |
| 71 | check(response, { 'delete CM-handles status equals 200': (r) => r.status === 200 }); |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 72 | return response; |
| 73 | } |
| 74 | |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 75 | function waitForAllCmHandlesToBeReady() { |
| 76 | const POLLING_INTERVAL_SECONDS = 5; |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 77 | let cmHandlesReady = 0; |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 78 | do { |
| 79 | sleep(POLLING_INTERVAL_SECONDS); |
| 80 | cmHandlesReady = getNumberOfReadyCmHandles(); |
| 81 | console.log(`${cmHandlesReady}/${TOTAL_CM_HANDLES} CM handles are READY`); |
| 82 | } while (cmHandlesReady < TOTAL_CM_HANDLES); |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | function getNumberOfReadyCmHandles() { |
danielhanrahan | 4e9f68c | 2024-06-28 13:43:35 +0100 | [diff] [blame] | 86 | const response = executeCmHandleIdSearch('readyCmHandles'); |
| 87 | const arrayOfCmHandleIds = JSON.parse(response.body); |
| 88 | return arrayOfCmHandleIds.length; |
danielhanrahan | f66694a | 2024-06-10 21:32:12 +0100 | [diff] [blame] | 89 | } |