mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
d613f4bd06
* update cypress * really click something that's actually there * obey cypress and use done * run cypress 9 in CI * no need for before each when only one test * no need to set window size to the default * get tests passing file by file * delay checking for a graph in a test * be more specific cypress * use cy command * select text like a human * silly cypress * try and avoid cypress deciding that a visible field is not valid * select delete button correctly * find save button differently * try and avoid not always typing the first character * better trends selections * use cy command to navigate * conitnue trying to get tests to pass in CI * another try at setting feature flag names in CI * can CI find undo button without a wait? * better assertion for cypress * up to v10 * fix splitting specs with v10 path * show cypress how to wait for the test to finish * remove redundant file * change return to satisfy new cypress * move import
141 lines
6.4 KiB
JavaScript
141 lines
6.4 KiB
JavaScript
import { urls } from 'scenes/urls'
|
|
|
|
// For tests related to trends please check trendsElements.js
|
|
describe('Insights', () => {
|
|
beforeEach(() => {
|
|
cy.visit(urls.insightNew())
|
|
})
|
|
|
|
it('Create new insight and save copy', () => {
|
|
cy.visit('/saved_insights/') // Should work with trailing slash just like without it
|
|
cy.get('[data-attr=saved-insights-new-insight-dropdown]').click()
|
|
cy.get('[data-attr-insight-type="TRENDS"').click()
|
|
|
|
// apply filter
|
|
cy.get('[data-attr=trends-filters-add-filter-group]').click()
|
|
cy.get('[data-attr=property-select-toggle-0]').click()
|
|
cy.get('[data-attr=taxonomic-filter-searchfield]').click()
|
|
cy.get('[data-attr=expand-list-event_properties]').click()
|
|
cy.get('[data-attr=prop-filter-event_properties-1]').click({ force: true })
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click({ force: true })
|
|
|
|
// Save
|
|
cy.get('[data-attr="insight-save-button"]').click()
|
|
cy.get('[data-attr="insight-edit-button"]').click()
|
|
|
|
// Breadcrumbs work
|
|
cy.get('[data-attr=breadcrumb-0]').should('contain', 'Hogflix')
|
|
cy.get('[data-attr=breadcrumb-1]').should('contain', 'Hogflix Demo App')
|
|
cy.get('[data-attr=breadcrumb-2]').should('have.text', 'Insights')
|
|
cy.get('[data-attr=breadcrumb-3]').should('not.have.text', '')
|
|
|
|
// Save and continue editing
|
|
cy.get('[data-attr="insight-save-dropdown"]').click()
|
|
cy.get('[data-attr="add-action-event-button"]').click()
|
|
cy.get('[data-attr="insight-save-dropdown"]').click()
|
|
cy.get('[data-attr="insight-save-and-continue"]').click()
|
|
cy.get('[data-attr="add-action-event-button"]').should('exist')
|
|
|
|
// Add another graph series, and save as new insight
|
|
cy.get('[data-attr="add-action-event-button"]').click()
|
|
cy.get('[data-attr="insight-save-dropdown"]').click()
|
|
cy.get('[data-attr="insight-save-as-new-insight"]').click()
|
|
|
|
cy.get('.ant-modal .ant-btn-primary').click()
|
|
cy.get('[data-attr="insight-name"]').should('contain', 'Pageview count (copy)')
|
|
// Check we're in edit mode
|
|
cy.get('[data-attr="insight-save-button"]').should('exist')
|
|
})
|
|
|
|
describe('unsaved insights confirmation', () => {
|
|
it('can move away from an unchanged new insight without confirm()', () => {
|
|
cy.get('[data-attr="menu-item-insight"]').click()
|
|
cy.log('Navigate away')
|
|
cy.get('[data-attr="menu-item-featureflags"]').click()
|
|
cy.log('We should be on the Feature Flags page now')
|
|
cy.url().should('include', '/feature_flags')
|
|
})
|
|
|
|
it('Can navigate away from unchanged saved insight without confirm()', () => {
|
|
cy.get('[data-attr="menu-item-insight"]').click()
|
|
cy.log('Add series')
|
|
cy.get('[data-attr=add-action-event-button]').click()
|
|
cy.log('Save')
|
|
cy.get('[data-attr="insight-save-button"]').click()
|
|
cy.wait(200)
|
|
cy.log('Navigate away')
|
|
cy.get('[data-attr="menu-item-annotations"]').click()
|
|
cy.log('We should be on the Annotations page now')
|
|
cy.url().should('include', '/annotations')
|
|
})
|
|
|
|
it('Can keep editing changed new insight after navigating away with confirm() rejection (case 1)', () => {
|
|
cy.on('window:confirm', () => {
|
|
return false
|
|
})
|
|
|
|
cy.get('[data-attr="menu-item-insight"]').click()
|
|
cy.log('Add series')
|
|
cy.get('[data-attr=add-action-event-button]').click()
|
|
cy.log('Navigate away')
|
|
cy.get('[data-attr="menu-item-featureflags"]').click()
|
|
cy.log('Save button should still be here because case 1 rejects confirm()')
|
|
cy.get('[data-attr="insight-save-button"]').should('exist')
|
|
})
|
|
|
|
it('Can navigate away from changed new insight with confirm() acceptance (case 2)', () => {
|
|
cy.on('window:confirm', () => {
|
|
return true
|
|
})
|
|
cy.get('[data-attr="menu-item-insight"]').click()
|
|
cy.log('Add series')
|
|
cy.get('[data-attr=add-action-event-button]').click()
|
|
cy.log('Navigate away')
|
|
cy.get('[data-attr="menu-item-featureflags"]').click()
|
|
cy.url().should('include', '/feature_flags')
|
|
})
|
|
})
|
|
|
|
it('Shows not found error with invalid short URL', () => {
|
|
cy.visit('/i/i_dont_exist')
|
|
cy.location('pathname').should('eq', '/insights/i_dont_exist')
|
|
cy.get('.ant-skeleton-title').should('exist')
|
|
})
|
|
|
|
it('Stickiness graph', () => {
|
|
cy.get('.ant-tabs-tab').contains('Stickiness').click()
|
|
cy.get('[data-attr=add-action-event-button]').click()
|
|
cy.get('[data-attr=trend-element-subject-1]').should('exist')
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
cy.get('[data-attr=add-breakdown-button]').should('not.exist') // Can't do breakdown on this graph
|
|
})
|
|
|
|
it('Lifecycle graph', () => {
|
|
cy.get('[data-attr=trend-line-graph]').should('exist') // Wait until components are loaded
|
|
cy.get('.ant-tabs-tab').contains('Lifecycle').click()
|
|
cy.get('h4').contains('Lifecycle Toggles').should('exist')
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
cy.get('[data-attr=add-breakdown-button]').should('not.exist') // Can't do breakdown on this graph
|
|
cy.get('[data-attr=add-action-event-button]').should('not.exist') // Can't add multiple series
|
|
})
|
|
|
|
it('Loads default filters correctly', () => {
|
|
// Test that default params are set correctly even if the app doesn't start on insights
|
|
cy.visit('/events/') // Should work with trailing slash just like without it
|
|
cy.reload()
|
|
|
|
cy.clickNavMenu('insight')
|
|
cy.get('[data-attr=trend-element-subject-0] span').should('contain', 'Pageview')
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
cy.contains('Add graph series').click()
|
|
cy.get('[data-attr=trend-element-subject-1]').should('exist')
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('Cannot see tags or description (non-FOSS feature)', () => {
|
|
cy.get('.insight-description').should('not.exist')
|
|
cy.get('[data-attr=insight-tags]').should('not.exist')
|
|
})
|
|
})
|