Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CTI] bring back skipped cypress tests #108978

Merged
merged 9 commits into from
Aug 18, 2021
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ import {
import { ALERTS_URL } from '../../urls/navigation';
import { addsFieldsToTimeline } from '../../tasks/rule_details';

// TODO: Doesn't look like the roll over is happening for these tests. 'indicator' is still referenced in the fields browser
describe.skip('CTI Enrichment', () => {
describe('CTI Enrichment', () => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😉

before(() => {
cleanKibana();
esArchiverLoad('threat_indicator');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('indicator match', () => {
const expectedTags = getNewThreatIndicatorRule().tags.join('');
const expectedMitre = formatMitreAttackDescription(getNewThreatIndicatorRule().mitre);
const expectedNumberOfRules = 1;
const expectedNumberOfAlerts = 1;
const expectedNumberOfAlerts = '1 alert';

before(() => {
cleanKibana();
Expand All @@ -139,8 +139,7 @@ describe('indicator match', () => {
getIndicatorIndex().should('have.text', getIndexPatterns().join(''));
});

// TODO: Need to fix
it.skip('Does NOT show invalidation text on initial page load if indicator index pattern is filled out', () => {
it('Does NOT show invalidation text on initial page load if indicator index pattern is filled out', () => {
getDefineContinueButton().click();
getIndexPatternInvalidationText().should('not.exist');
});
Expand All @@ -154,8 +153,7 @@ describe('indicator match', () => {
});

describe('Indicator index patterns', () => {
// TODO: Need to fix
it.skip('Contains a predefined index pattern', () => {
it('Contains a predefined index pattern', () => {
getIndicatorIndicatorIndex().should('have.text', getThreatIndexPatterns().join(''));
});

Expand Down Expand Up @@ -392,8 +390,7 @@ describe('indicator match', () => {
loginAndWaitForPageWithoutDateRange(ALERTS_URL);
});

// TODO: Need to fix
it.skip('Creates and activates a new Indicator Match rule', () => {
it('Creates and activates a new Indicator Match rule', () => {
waitForAlertsPanelToBeLoaded();
waitForAlertsIndexToBeCreated();
goToManageAlertsDetectionRules();
Expand Down Expand Up @@ -491,8 +488,7 @@ describe('indicator match', () => {
.should('have.text', getNewThreatIndicatorRule().riskScore);
});

// TODO: Need to fix
it.skip('Investigate alert in timeline', () => {
it('Investigate alert in timeline', () => {
const accessibilityText = `Press enter for options, or press space to begin dragging.`;

loadPrepackagedTimelineTemplates();
Expand Down
10 changes: 3 additions & 7 deletions x-pack/plugins/security_solution/cypress/screens/alerts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@ export const ALERT_ID = '[data-test-subj="draggable-content-_id"]';
export const ALERT_RISK_SCORE_HEADER =
'[data-test-subj="dataGridHeaderCell-signal.rule.risk_score"]';

export const ALERT_RULE_METHOD = '[data-test-subj="draggable-content-signal.rule.type"]';
export const ALERT_RULE_NAME = '[data-test-subj="formatted-field-signal.rule.name"]';

export const ALERT_RULE_NAME = '[data-test-subj="draggable-content-signal.rule.name"]';
export const ALERT_RULE_RISK_SCORE = '[data-test-subj="formatted-field-signal.rule.risk_score"]';

export const ALERT_RULE_RISK_SCORE = '[data-test-subj="draggable-content-signal.rule.risk_score"]';

export const ALERT_RULE_SEVERITY = '[data-test-subj="draggable-content-signal.rule.severity"]';

export const ALERT_RULE_VERSION = '[data-test-subj="draggable-content-signal.rule.version"]';
export const ALERT_RULE_SEVERITY = '[data-test-subj="formatted-field-signal.rule.severity"]';

export const CLOSE_ALERT_BTN = '[data-test-subj="close-alert-status"]';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const TIMELINE_TEMPLATE_DETAILS = 'Timeline template';
export const TIMESTAMP_OVERRIDE_DETAILS = 'Timestamp override';

export const TIMELINE_FIELD = (field: string) => {
return `[data-test-subj="draggable-content-${field}"]`;
return `[data-test-subj="formatted-field-${field}"]`;
};

export const getDetails = (title: string) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ export const fillIndexAndIndicatorIndexPattern = (
) => {
getIndexPatternClearButton().click();
getIndicatorIndex().type(`${indexPattern}{enter}`);
getIndicatorIndicatorIndex().type(`${indicatorIndex}{enter}`);
getIndicatorIndicatorIndex().type(`{backspace}{enter}${indicatorIndex}{enter}`);
};

export const fillEmailConnectorForm = (connector: EmailConnector = getEmailConnector()) => {
Expand Down Expand Up @@ -437,7 +437,7 @@ export const getIndexPatternInvalidationText = () => cy.contains(AT_LEAST_ONE_IN
export const getAboutContinueButton = () => cy.get(ABOUT_CONTINUE_BTN);

/** Returns the continue button on the step of define */
export const getDefineContinueButton = () => cy.get(DEFINE_CONTINUE_BUTTON);
export const getDefineContinueButton = () => cy.get(DEFINE_CONTINUE_BUTTON).should('exist');

/** Returns the indicator index pattern */
export const getIndicatorIndex = () => cy.get(THREAT_MATCH_INDICATOR_INDEX).eq(0);
Expand All @@ -447,7 +447,7 @@ export const getIndicatorIndicatorIndex = () =>
cy.get(THREAT_MATCH_INDICATOR_INDICATOR_INDEX).eq(0);

/** Returns the index pattern's clear button */
export const getIndexPatternClearButton = () => cy.get(COMBO_BOX_CLEAR_BTN).first();
export const getIndexPatternClearButton = () => cy.get(COMBO_BOX_CLEAR_BTN).should('exist').first();

/** Returns the custom query input */
export const getCustomQueryInput = () => cy.get(THREAT_MATCH_CUSTOM_QUERY_INPUT).eq(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,22 @@ EllipsisText.displayName = 'EllipsisText';
interface Props {
tooltipContent?: React.ReactNode;
children: React.ReactNode;
dataTestSubj?: string;
}

export function TruncatableText({ tooltipContent, children, ...props }: Props) {
if (!tooltipContent) return <EllipsisText {...props}>{children}</EllipsisText>;
export function TruncatableText({ tooltipContent, children, dataTestSubj, ...props }: Props) {
if (!tooltipContent)
return (
<EllipsisText data-test-subj={dataTestSubj} {...props}>
{children}
</EllipsisText>
);

return (
<EuiToolTip display="block" content={tooltipContent}>
<EllipsisText {...props}>{children}</EllipsisText>
<EllipsisText data-test-subj={dataTestSubj} {...props}>
{children}
</EllipsisText>
</EuiToolTip>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ const FormattedFieldValueComponent: React.FC<{
</EuiFlexGroup>
}
>
<>{value}</>
<span data-test-subj={`formatted-field-${fieldName}`}>{value}</span>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you verify that this has no impact to layout?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looked good in the cypress view

</EuiToolTip>
</TruncatableText>
) : (
<>{value}</>
<span data-test-subj={`formatted-field-${fieldName}`}>{value}</span>
);
} else {
const contentValue = getOrEmptyTagFromValue(value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ export const RenderRuleName: React.FC<RenderRuleNameProps> = ({
const ruleId = linkValue;
const { search } = useFormatUrl(SecurityPageName.rules);
const { navigateToApp, getUrlForApp } = useKibana().services.application;
const content = truncate ? <TruncatableText>{value}</TruncatableText> : value;
const content = truncate ? (
<TruncatableText dataTestSubj={`formatted-field-${fieldName}`}>{value}</TruncatableText>
) : (
value
);

const goToRuleDetails = useCallback(
(ev) => {
Expand Down