From a5fdf72bd6ce042ce7afabcca306ea623697f613 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 7 Nov 2024 08:27:57 +0000 Subject: [PATCH] [Workspace]Fix flights sample data copy in workspace assets page (#8786) * Fix workspace id missing in sample data filter meta index Signed-off-by: Lin Wang * Changeset file for PR #8786 created/updated --------- Signed-off-by: Lin Wang Co-authored-by: opensearch-changeset-bot[bot] <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com> (cherry picked from commit af4943d4c75942d91a72d25b633920488f40b235) Signed-off-by: github-actions[bot] --- changelogs/fragments/8786.yml | 2 + .../sample_data/data_sets/util.test.ts | 107 +++++++++++++++--- .../services/sample_data/data_sets/util.ts | 7 ++ 3 files changed, 99 insertions(+), 17 deletions(-) create mode 100644 changelogs/fragments/8786.yml diff --git a/changelogs/fragments/8786.yml b/changelogs/fragments/8786.yml new file mode 100644 index 000000000000..a41090574c4c --- /dev/null +++ b/changelogs/fragments/8786.yml @@ -0,0 +1,2 @@ +fix: +- [Workspace]Fix flights sample data copy in workspace assets page ([#8786](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8786)) \ No newline at end of file diff --git a/src/plugins/home/server/services/sample_data/data_sets/util.test.ts b/src/plugins/home/server/services/sample_data/data_sets/util.test.ts index 4f3863167004..9fc276e695b8 100644 --- a/src/plugins/home/server/services/sample_data/data_sets/util.test.ts +++ b/src/plugins/home/server/services/sample_data/data_sets/util.test.ts @@ -177,10 +177,25 @@ describe('getSavedObjectsWithDataSource()', () => { }); describe('getFinalSavedObjects()', () => { - const savedObjects = [ - { id: 'saved-object-1', type: 'test', attributes: { title: 'Saved object 1' }, references: [] }, - ]; - const generateTestDataSet = () => { + const generateTestDataSet = ( + savedObjects: Array< + SavedObject<{ + title: string; + kibanaSavedObjectMeta?: { + searchSourceJSON: Record; + }; + visState?: string; + }> + > = [ + { + id: 'saved-object-1', + type: 'search', + attributes: { title: 'Saved object 1' }, + references: [], + }, + ] + ) => { + const getSavedObjects = () => JSON.parse(JSON.stringify(savedObjects)); return { id: 'foo', name: 'Foo', @@ -192,20 +207,11 @@ describe('getFinalSavedObjects()', () => { appLinks: [], defaultIndex: '', getDataSourceIntegratedDefaultIndex: () => '', - savedObjects, + savedObjects: getSavedObjects(), getDataSourceIntegratedSavedObjects: (dataSourceId?: string, dataSourceTitle?: string) => - savedObjects.map((item) => ({ - ...item, - ...(dataSourceId ? { id: `${dataSourceId}_${item.id}` } : {}), - attributes: { - ...item.attributes, - title: dataSourceTitle - ? `${item.attributes.title}_${dataSourceTitle}` - : item.attributes.title, - }, - })), + getSavedObjectsWithDataSource(getSavedObjects(), dataSourceId, dataSourceTitle), getWorkspaceIntegratedSavedObjects: (workspaceId?: string) => - savedObjects.map((item) => ({ + getSavedObjects().map((item) => ({ ...item, ...(workspaceId ? { id: `${workspaceId}_${item.id}` } : {}), })), @@ -269,7 +275,74 @@ describe('getFinalSavedObjects()', () => { getFinalSavedObjects({ dataset, }) - ).toBe(dataset.savedObjects); + ).toEqual(dataset.savedObjects); + }); + + it('should update index in searchSource for visualization and search saved objects', () => { + const dataset = generateTestDataSet([ + { + id: 'saved-object-1', + type: 'visualization', + attributes: { + title: 'Saved object 1', + kibanaSavedObjectMeta: { + searchSourceJSON: JSON.stringify({ + index: 'index-pattern', + filter: [{ meta: { index: 'index-pattern' } }], + }), + }, + visState: JSON.stringify({}), + }, + references: [], + }, + { + id: 'saved-object-2', + type: 'search', + attributes: { + title: 'Saved object 2', + kibanaSavedObjectMeta: { + searchSourceJSON: JSON.stringify({ + index: 'index-pattern', + filter: [{ meta: { index: 'index-pattern' } }], + }), + }, + }, + references: [], + }, + ]); + const UPDATED_SEARCH_JSON = JSON.stringify({ + index: 'workspace-1_datasource-1_index-pattern', + filter: [{ meta: { index: 'workspace-1_datasource-1_index-pattern' } }], + }); + expect( + getFinalSavedObjects({ + dataset, + workspaceId: 'workspace-1', + dataSourceId: 'datasource-1', + dataSourceTitle: 'data source 1', + }) + ).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + id: 'workspace-1_datasource-1_saved-object-1', + type: 'visualization', + attributes: expect.objectContaining({ + kibanaSavedObjectMeta: expect.objectContaining({ + searchSourceJSON: UPDATED_SEARCH_JSON, + }), + }), + }), + expect.objectContaining({ + id: 'workspace-1_datasource-1_saved-object-2', + type: 'search', + attributes: expect.objectContaining({ + kibanaSavedObjectMeta: expect.objectContaining({ + searchSourceJSON: UPDATED_SEARCH_JSON, + }), + }), + }), + ]) + ); }); }); diff --git a/src/plugins/home/server/services/sample_data/data_sets/util.ts b/src/plugins/home/server/services/sample_data/data_sets/util.ts index 77abf6122033..7974c3d90fce 100644 --- a/src/plugins/home/server/services/sample_data/data_sets/util.ts +++ b/src/plugins/home/server/services/sample_data/data_sets/util.ts @@ -42,6 +42,13 @@ const overrideSavedObjectId = (savedObject: SavedObject, idGenerator: (id: strin const searchSource = JSON.parse(searchSourceString); if (searchSource.index) { searchSource.index = idGenerator(searchSource.index); + if (Array.isArray(searchSource.filter)) { + searchSource.filter.forEach((item) => { + if (item.meta?.index) { + item.meta.index = idGenerator(item.meta.index); + } + }); + } savedObject.attributes.kibanaSavedObjectMeta.searchSourceJSON = JSON.stringify( searchSource );