From 0e006004acf07ee044c9a4c258cee5518ffd0988 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Thu, 6 Jun 2024 20:43:21 +0100 Subject: [k6] Refactor k6 tests for CM handle searches A cleanup of the k6 tests to avoid code duplication Issue-ID: CPS-2208 Signed-off-by: danielhanrahan Change-Id: If1e58ee87300cd28ed72b365d9a86e2709dc6c13 --- k6-tests/ncmp/7-search-public-property.js | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'k6-tests/ncmp/7-search-public-property.js') diff --git a/k6-tests/ncmp/7-search-public-property.js b/k6-tests/ncmp/7-search-public-property.js index 6a46a03290..cb39b54d9c 100644 --- a/k6-tests/ncmp/7-search-public-property.js +++ b/k6-tests/ncmp/7-search-public-property.js @@ -18,7 +18,7 @@ * ============LICENSE_END========================================================= */ -import { searchRequest } from './search-base.js'; +import { executeCmHandleSearch } from './search-base.js'; import { makeCustomSummaryReport } from "./utils.js"; export const options = { @@ -31,15 +31,7 @@ export const options = { }; export default function () { - const search_filter = { - "cmHandleQueryParameters": [ - { - "conditionName": "hasAllProperties", - "conditionParameters": [{"Color": "yellow"}, {"Size": "small"}] - } - ] - }; - searchRequest('searches', JSON.stringify(search_filter)); + executeCmHandleSearch('property'); } export function handleSummary(data) { -- cgit 1.2.3-korg