|
| 1 | +/* |
| 2 | + * Copyright OpenSearch Contributors |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + */ |
| 5 | + |
| 6 | +/* |
| 7 | + * Copyright OpenSearch Contributors |
| 8 | + * |
| 9 | + * Licensed under the Apache License, Version 2.0 (the "License"). |
| 10 | + * You may not use this file except in compliance with the License. |
| 11 | + * A copy of the License is located at |
| 12 | + * |
| 13 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | + * |
| 15 | + * or in the "license" file accompanying this file. This file is distributed |
| 16 | + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| 17 | + * express or implied. See the License for the specific language governing |
| 18 | + * permissions and limitations under the License. |
| 19 | + */ |
| 20 | + |
| 21 | +import { getDataSourceFromUrl, isDataSourceCompatible } from './datasource-utils'; |
| 22 | + |
| 23 | +describe('Tests datasource utils', () => { |
| 24 | + it('Tests getting the datasource from the url', () => { |
| 25 | + const mockSearchNoDataSourceId = '?foo=bar&baz=qux'; |
| 26 | + Object.defineProperty(window, 'location', { |
| 27 | + value: { search: mockSearchNoDataSourceId }, |
| 28 | + writable: true, |
| 29 | + }); |
| 30 | + expect(getDataSourceFromUrl()).toEqual({}); |
| 31 | + const mockSearchDataSourceIdNotfirst = |
| 32 | + '?foo=bar&baz=qux&dataSource=%7B"id"%3A"94ffa650-f11a-11ee-a585-793f7b098e1a"%2C"label"%3A"9202"%7D'; |
| 33 | + Object.defineProperty(window, 'location', { |
| 34 | + value: { search: mockSearchDataSourceIdNotfirst }, |
| 35 | + writable: true, |
| 36 | + }); |
| 37 | + expect(getDataSourceFromUrl()).toEqual({ |
| 38 | + id: '94ffa650-f11a-11ee-a585-793f7b098e1a', |
| 39 | + label: '9202', |
| 40 | + }); |
| 41 | + const mockSearchDataSourceIdFirst = |
| 42 | + '?dataSource=%7B"id"%3A"94ffa650-f11a-11ee-a585-793f7b098e1a"%2C"label"%3A"9202"%7D'; |
| 43 | + Object.defineProperty(window, 'location', { |
| 44 | + value: { search: mockSearchDataSourceIdFirst }, |
| 45 | + writable: true, |
| 46 | + }); |
| 47 | + expect(getDataSourceFromUrl()).toEqual({ |
| 48 | + id: '94ffa650-f11a-11ee-a585-793f7b098e1a', |
| 49 | + label: '9202', |
| 50 | + }); |
| 51 | + }); |
| 52 | + |
| 53 | + it('Tests getting the datasource from the url with undefined dataSource', () => { |
| 54 | + const mockSearchUndefinedDataSource = '?dataSource=undefined'; |
| 55 | + Object.defineProperty(window, 'location', { |
| 56 | + value: { search: mockSearchUndefinedDataSource }, |
| 57 | + writable: true, |
| 58 | + }); |
| 59 | + expect(getDataSourceFromUrl()).toEqual({}); |
| 60 | + }); |
| 61 | + |
| 62 | + describe('isDataSourceCompatible', () => { |
| 63 | + it('should return true for compatible data sources', () => { |
| 64 | + expect( |
| 65 | + isDataSourceCompatible({ |
| 66 | + attributes: { |
| 67 | + installedPlugins: ['query-insights'], |
| 68 | + dataSourceVersion: '2.19.0', |
| 69 | + title: '', |
| 70 | + endpoint: '', |
| 71 | + auth: { |
| 72 | + type: '', |
| 73 | + credentials: undefined, |
| 74 | + }, |
| 75 | + }, |
| 76 | + id: '', |
| 77 | + type: '', |
| 78 | + references: [], |
| 79 | + }) |
| 80 | + ).toBe(true); |
| 81 | + expect( |
| 82 | + isDataSourceCompatible({ |
| 83 | + attributes: { |
| 84 | + installedPlugins: ['query-insights'], |
| 85 | + dataSourceVersion: '3.0.0', |
| 86 | + title: '', |
| 87 | + endpoint: '', |
| 88 | + auth: { |
| 89 | + type: '', |
| 90 | + credentials: undefined, |
| 91 | + }, |
| 92 | + }, |
| 93 | + id: '', |
| 94 | + type: '', |
| 95 | + references: [], |
| 96 | + }) |
| 97 | + ).toBe(true); |
| 98 | + }); |
| 99 | + |
| 100 | + it('should return false for un-compatible data sources', () => { |
| 101 | + expect( |
| 102 | + isDataSourceCompatible({ |
| 103 | + attributes: { |
| 104 | + installedPlugins: [], |
| 105 | + dataSourceVersion: '2.13.0', |
| 106 | + title: '', |
| 107 | + endpoint: '', |
| 108 | + auth: { |
| 109 | + type: '', |
| 110 | + credentials: undefined, |
| 111 | + }, |
| 112 | + }, |
| 113 | + id: '', |
| 114 | + type: '', |
| 115 | + references: [], |
| 116 | + }) |
| 117 | + ).toBe(false); |
| 118 | + expect( |
| 119 | + isDataSourceCompatible({ |
| 120 | + attributes: { |
| 121 | + installedPlugins: ['query-insights'], |
| 122 | + dataSourceVersion: '2.13.0', |
| 123 | + title: '', |
| 124 | + endpoint: '', |
| 125 | + auth: { |
| 126 | + type: '', |
| 127 | + credentials: undefined, |
| 128 | + }, |
| 129 | + }, |
| 130 | + id: '', |
| 131 | + type: '', |
| 132 | + references: [], |
| 133 | + }) |
| 134 | + ).toBe(false); |
| 135 | + expect( |
| 136 | + isDataSourceCompatible({ |
| 137 | + attributes: { |
| 138 | + title: '', |
| 139 | + endpoint: '', |
| 140 | + dataSourceVersion: '', |
| 141 | + auth: { |
| 142 | + type: '', |
| 143 | + credentials: undefined, |
| 144 | + }, |
| 145 | + }, |
| 146 | + id: '', |
| 147 | + type: '', |
| 148 | + references: [], |
| 149 | + }) |
| 150 | + ).toBe(false); |
| 151 | + expect( |
| 152 | + isDataSourceCompatible({ |
| 153 | + attributes: { |
| 154 | + installedPlugins: ['random'], |
| 155 | + dataSourceVersion: '1.0.0-beta1', |
| 156 | + title: '', |
| 157 | + endpoint: '', |
| 158 | + auth: { |
| 159 | + type: '', |
| 160 | + credentials: undefined, |
| 161 | + }, |
| 162 | + }, |
| 163 | + id: '', |
| 164 | + type: '', |
| 165 | + references: [], |
| 166 | + }) |
| 167 | + ).toBe(false); |
| 168 | + }); |
| 169 | + }); |
| 170 | +}); |
0 commit comments