chronograf/ui/cypress/integration/dashboard.test.ts

96 lines
3.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import {Source} from '../support/types'
describe('Use Dashboards', () => {
let source: Source
beforeEach(() => {
cy.toInitialState()
cy.createInfluxDBConnection().then((src: Source) => {
source = src
cy.visit(`/sources/${source.id}/dashboards`)
})
})
it('create, rename and delete a dashboard', () => {
const newName = 'DashboardQA'
cy.get('button').contains('Create Dashboard').click()
cy.get('.rename-dashboard')
.should('have.text', 'Name This Dashboard')
.type(`${newName}{enter}`)
.should('have.text', newName)
cy.visit(`/sources/${source.id}/dashboards`)
// DOM Element where the dashboard resides
cy.get('.panel-body > table > tbody')
.should('exist')
.within(() => {
// delete button
cy.get('.confirm-button--confirmation').click({force: true})
})
})
describe('Use Dashboards as reader', () => {
beforeEach(() => {
cy.createChronografUser('Reader', 'oauth-mock', 'oauth2').then(() => {
cy.createDashboard('Reader Dashboard').then(() => {
cy.getByTestID('dashboard-panel')
.should('be.visible')
.then(() => {
cy.OAuthLoginAsDiffUser('Reader')
})
})
})
})
it('ensure that all elements used to edit Chronograf are not visible', () => {
cy.url().should('match', new RegExp(`sources/${source.id}/dashboards`))
cy.getByTestID('sidebar').should('not.exist')
cy.getByTestID('import-dashboard--button').should('not.exist')
cy.getByTestID('create-dashboard-button').should('not.exist')
cy.getByTestID('dashboard-filter--input').type('Empty')
cy.getByTestID('dashboard-panel').should(
'contain.text',
`Looks like you dont have any dashboards`
)
cy.getByTestID('dashboard-filter--input').clear().type('Dashboard')
cy.get('@dashboards').then(dashboards => {
cy.getByTestID(`dashboard-link-${dashboards[0].id}`).click()
})
cy.get('.dashboard-empty--menu').should('not.exist')
cy.getByTestID('add-cell').should('not.exist')
cy.get('.template-control-bar').should('not.exist')
cy.getByTestID('show-variables--button').should('be.visible').click()
cy.get('.template-control-bar').should('exist').and('be.visible')
cy.get('.annotation-control-bar').should('not.exist')
cy.getByTestID('show-annotations--button').should('be.visible').click()
cy.get('.annotation-control-bar')
.should('exist')
.and('be.visible')
.within(() => {
cy.getByTestID('add-template-variable').should('not.exist')
cy.getByTestID('add-annotation--button').should('not.exist')
cy.getByTestID('wizard-bucket-selected').click()
cy.getByTestID('dropdown--item')
.contains('Filter Annotations By Tags')
.click()
cy.getByTestID('add-annotation-filter--button')
.should('exist')
.and('be.visible')
})
cy.get('.autorefresh-dropdown').click()
cy.getByTestID('dropdown--item').contains('5s').click()
cy.get('.autorefresh-dropdown')
.find('.dropdown--selected')
.should('contain.text', '5s')
cy.get('.time-range-dropdown').click()
cy.get('.dropdown-item').contains('Past 5m').click()
cy.get('.time-range-dropdown')
.find('.dropdown-selected')
.should('contain.text', 'Past 5m')
})
})
})