-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tyler Ohlsen <[email protected]>
- Loading branch information
Showing
17 changed files
with
587 additions
and
504 deletions.
There are no files selected for viewing
10 changes: 0 additions & 10 deletions
10
...ss/fixtures/dashboard/opensearch_dashboards/feature-anywhere/feature-anywhere-sample.json
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
cypress/fixtures/dashboard/opensearch_dashboards/feature-anywhere/index-settings-sample.txt
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
cypress/fixtures/dashboard/opensearch_dashboards/vis-augmenter/sample-data-simple/data.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[ | ||
{ | ||
"value1": 1, | ||
"value2": 10, | ||
"value3": 5 | ||
}, | ||
{ | ||
"value1": 5, | ||
"value2": 1, | ||
"value3": 3 | ||
}, | ||
{ | ||
"value1": 9, | ||
"value2": 6, | ||
"value3": 2 | ||
}, | ||
{ | ||
"value1": 2, | ||
"value2": 1, | ||
"value3": 1 | ||
}, | ||
{ | ||
"value1": 12, | ||
"value2": 5, | ||
"value3": 4 | ||
} | ||
] |
2 changes: 1 addition & 1 deletion
2
...feature-anywhere/index-pattern-fields.txt → ...mple-data-simple/index-pattern-fields.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{"count":0,"name":"@timestamp","type":"date","esTypes":["date"],"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":true},{"count":0,"name":"_id","type":"string","esTypes":["_id"],"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false},{"count":0,"name":"_index","type":"string","esTypes":["_index"],"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false},{"count":0,"name":"_score","type":"number","scripted":false,"searchable":false,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"_source","type":"_source","esTypes":["_source"],"scripted":false,"searchable":false,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"_type","type":"string","scripted":false,"searchable":false,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"lastname","type":"string","esTypes":["text"],"scripted":false,"searchable":true,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"name","type":"string","esTypes":["text"],"scripted":false,"searchable":true,"aggregatable":false,"readFromDocValues":false}] | ||
[{"count":0,"name":"@timestamp","type":"date","esTypes":["date"],"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":true},{"count":0,"name":"_id","type":"string","esTypes":["_id"],"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false},{"count":0,"name":"_index","type":"string","esTypes":["_index"],"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false},{"count":0,"name":"_score","type":"number","scripted":false,"searchable":false,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"_source","type":"_source","esTypes":["_source"],"scripted":false,"searchable":false,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"_type","type":"string","scripted":false,"searchable":false,"aggregatable":false,"readFromDocValues":false},{"count":0,"name":"value1","type":"number","scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false},{"count":0,"name":"value2","type":"number","scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false},{"count":0,"name":"value3","type":"number","scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":false}] |
1 change: 1 addition & 0 deletions
1
...tures/dashboard/opensearch_dashboards/vis-augmenter/sample-data-simple/index-settings.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"mappings":{"properties":{"value1":{"type":"integer"},"value2":{"type":"integer"},"value3":{"type":"integer"},"@timestamp":{"type":"date", "format":"epoch_millis"}}},"settings":{"index":{"number_of_shards":"1","number_of_replicas":"1"}}} |
136 changes: 136 additions & 0 deletions
136
...ion/core-opensearch-dashboards/opensearch-dashboards/apps/vis-augmenter/dashboard_spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { | ||
INDEX_PATTERN_FILEPATH_SIMPLE, | ||
INDEX_SETTINGS_FILEPATH_SIMPLE, | ||
SAMPLE_DATA_FILEPATH_SIMPLE, | ||
} from '../../../../../utils/constants'; | ||
import { | ||
deleteVisAugmenterData, | ||
bootstrapDashboard, | ||
} from '../../../../../utils/dashboards/vis-augmenter/helpers'; | ||
|
||
describe('Vis augmenter - existing dashboards work as expected', () => { | ||
describe('dashboard with ineligible, eligible, and vega visualizations', () => { | ||
const indexName = 'vis-augmenter-sample-index'; | ||
const indexPatternName = 'vis-augmenter-sample-*'; | ||
const dashboardName = 'Vis Augmenter Dashboard'; | ||
const visualizationSpecs = [ | ||
{ | ||
name: 'count-agg-vis', | ||
type: 'line', | ||
indexPattern: indexPatternName, | ||
metrics: [], | ||
}, | ||
{ | ||
name: 'single-metric-vis', | ||
type: 'line', | ||
indexPattern: indexPatternName, | ||
metrics: [ | ||
{ | ||
aggregation: 'Average', | ||
field: 'value1', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'multi-metric-vis', | ||
type: 'line', | ||
indexPattern: indexPatternName, | ||
metrics: [ | ||
{ | ||
aggregation: 'Average', | ||
field: 'value1', | ||
}, | ||
{ | ||
aggregation: 'Average', | ||
field: 'value2', | ||
}, | ||
{ | ||
aggregation: 'Max', | ||
field: 'value3', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'area-vis', | ||
type: 'area', | ||
indexPattern: indexPatternName, | ||
metrics: [ | ||
{ | ||
aggregation: 'Max', | ||
field: 'value2', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'vega-vis', | ||
type: 'vega', | ||
indexPattern: indexPatternName, | ||
metrics: [], | ||
}, | ||
]; | ||
|
||
const visualizationNames = visualizationSpecs.map( | ||
(visualizationSpec) => visualizationSpec.name | ||
); | ||
|
||
before(() => { | ||
// Create a dashboard and add some visualizations | ||
bootstrapDashboard( | ||
INDEX_SETTINGS_FILEPATH_SIMPLE, | ||
INDEX_PATTERN_FILEPATH_SIMPLE, | ||
SAMPLE_DATA_FILEPATH_SIMPLE, | ||
indexName, | ||
indexPatternName, | ||
dashboardName, | ||
visualizationSpecs | ||
); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.visitDashboard(dashboardName); | ||
cy.wait(5000); | ||
}); | ||
|
||
after(() => { | ||
deleteVisAugmenterData( | ||
indexName, | ||
indexPatternName, | ||
visualizationNames, | ||
dashboardName | ||
); | ||
}); | ||
|
||
it('All visualizations should be visible', () => { | ||
visualizationNames.forEach((visualizationName) => | ||
cy.getVisPanelByTitle(visualizationName) | ||
); | ||
}); | ||
|
||
it('View events option does not exist for any visualization', () => { | ||
visualizationNames.forEach((visualizationName) => { | ||
cy.getVisPanelByTitle(visualizationName) | ||
.openVisContextMenu() | ||
.getMenuItems() | ||
.contains('View Events') | ||
.should('not.exist'); | ||
}); | ||
}); | ||
|
||
it('Validate non-vega visualizations are not rendered with vega under the hood', () => { | ||
visualizationSpecs.forEach((visualizationSpec) => { | ||
cy.getVisPanelByTitle(visualizationSpec.name).within(() => { | ||
if (visualizationSpec.type === 'vega') { | ||
cy.get('.vgaVis__view').should('exist'); | ||
} else { | ||
cy.get('.vgaVis__view').should('not.exist'); | ||
} | ||
}); | ||
}); | ||
}); | ||
}); | ||
}); |
139 changes: 0 additions & 139 deletions
139
...arch-dashboards/opensearch-dashboards/feature-anywhere/dashboard_feature_anywhere_spec.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.