/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Any modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import React from 'react'; import { GettingStarted } from './getting_started'; import { shallowWithIntl } from 'test_utils/enzyme_helpers'; import { FeatureCatalogueCategory } from 'src/plugins/home/public'; const addBasePathMock = jest.fn((path: string) => (path ? path : 'path')); const mockApps = [ { category: FeatureCatalogueCategory.DATA, description: 'Display and share a collection of visualizations and saved searches.', icon: 'dashboardApp', id: 'dashboard', order: 100, path: 'path-to-dashboard', showOnHomePage: false, solutionId: 'opensearchDashboards', subtitle: 'Analyze data in dashboards.', title: 'Dashboard', }, { category: FeatureCatalogueCategory.DATA, description: 'Interactively explore your data by querying and filtering raw documents.', icon: 'discoverApp', id: 'discover', order: 200, path: 'path-to-discover', showOnHomePage: false, solutionId: 'opensearchDashboards', subtitle: 'Search and find insights.', title: 'Discover', }, { category: FeatureCatalogueCategory.DATA, description: 'Showcase your data in a pixel-perfect way.', icon: 'canvasApp', id: 'canvas', order: 300, path: 'path-to-canvas', showOnHomePage: false, solutionId: 'opensearchDashboards', subtitle: 'Design pixel-perfect reports.', title: 'Canvas', }, { category: FeatureCatalogueCategory.DATA, description: 'Explore geospatial data from OpenSearch and the Elastic Maps Service.', icon: 'gisApp', id: 'maps', order: 400, path: 'path-to-maps', showOnHomePage: false, solutionId: 'opensearchDashboards', subtitle: 'Plot geographic data.', title: 'Maps', }, { category: FeatureCatalogueCategory.DATA, description: 'Automatically model the normal behavior of your time series data to detect anomalies.', icon: 'machineLearningApp', id: 'ml', order: 500, path: 'path-to-ml', showOnHomePage: false, solutionId: 'opensearchDashboards', subtitle: 'Model, predict, and detect.', title: 'Machine Learning', }, { category: FeatureCatalogueCategory.DATA, description: 'Surface and analyze relevant relationships in your OpenSearch data.', icon: 'graphApp', id: 'graph', order: 600, path: 'path-to-graph', showOnHomePage: false, solutionId: 'opensearchDashboards', subtitle: 'Reveal patterns and relationships.', title: 'Graph', }, ]; describe('GettingStarted', () => { test('render', () => { const component = shallowWithIntl( ); expect(component).toMatchSnapshot(); }); test('dark mode on', () => { const component = shallowWithIntl( ); expect(component).toMatchSnapshot(); }); });