Skip to content

Commit

Permalink
M3-7071 Add Cypress integration tests for NodeBalancer Create tiered …
Browse files Browse the repository at this point in the history
…pricing
  • Loading branch information
cliu-akamai committed Oct 5, 2023
1 parent abe4600 commit 1a8343b
Showing 1 changed file with 74 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ import {
import { apiMatcher } from 'support/util/intercepts';
import { randomLabel } from 'support/util/random';
import { chooseRegion, getRegionById } from 'support/util/regions';
import { dcPricingRegionNotice } from 'support/constants/dc-specific-pricing';
import {
mockAppendFeatureFlags,
mockGetFeatureFlagClientstream,
} from 'support/intercepts/feature-flags';
import { makeFeatureFlagData } from 'support/util/feature-flags';
import { ui } from 'support/ui';
import { cleanUp } from 'support/util/cleanup';
import { authenticate } from 'support/api/authentication';
Expand All @@ -19,13 +25,48 @@ const deployNodeBalancer = () => {
cy.get('[data-qa-deploy-nodebalancer]').click();
};

const createNodeBalancerWithUI = (nodeBal) => {
const createNodeBalancerWithUI = (nodeBal, isTiePricingTest = false) => {
const regionName = getRegionById(nodeBal.region).label;
cy.visitWithLogin('/nodebalancers/create');
getVisible('[id="nodebalancer-label"]').click().clear().type(nodeBal.label);
containsClick('create a tag').type(entityTag);
// this will create the NB in newark, where the default Linode was created
containsClick(selectRegionString).type(`${regionName}{enter}`);

if (isTiePricingTest) {
const newRegion = getRegionById('br-gru');

cy.wait(['@getClientStream', '@getFeatureFlags']);

// Confirms that the price will not display when the region is not selected
cy.get('[data-qa-summary="true"]').within(() => {
cy.findByText('/month').should('not.exist');
});

// Confirms that the price will show up when the region is selected
containsClick(selectRegionString).type(`${regionName}{enter}`);
cy.get('[data-qa-summary="true"]').within(() => {
cy.findByText(`$10.00/month`).should('be.visible');
});

// TODO: DC Pricing - M3-7086: Uncomment docs link assertion when docs links are added.
// cy.findByText(dcPricingDocsLabel)
// .should('be.visible')
// .should('have.attr', 'href', dcPricingDocsUrl);

// Confirms that the summary updates to reflect price changes if the user changes their region.
containsClick(regionName).type(`${newRegion.label} {enter}`);
cy.get('[data-qa-summary="true"]').within(() => {
cy.findByText(`$14.00/month`).should('be.visible');
});

// Confirms that a notice is shown in the "Region" section of the NodeBalancer Create form informing the user of tiered pricing
cy.findByText(dcPricingRegionNotice, { exact: false }).should('be.visible');

// Change back to the initial region to create the Node Balancer
containsClick(newRegion.label).type(`${regionName} {enter}`);
} else {
// this will create the NB in newark, where the default Linode was created
containsClick(selectRegionString).type(`${regionName}{enter}`);
}

// node backend config
fbtClick('Label').type(randomLabel());
Expand All @@ -46,7 +87,7 @@ const createNodeBalancerWithUI = (nodeBal) => {
authenticate();
describe('create NodeBalancer', () => {
before(() => {
cleanUp(['tags', 'node-balancers']);
cleanUp(['tags', 'node-balancers', 'linodes']);
});

it('creates a nodebal - positive', () => {
Expand All @@ -68,6 +109,7 @@ describe('create NodeBalancer', () => {
.should('eq', 200);
});
});

it('API error Handling', () => {
const region = chooseRegion();
createLinode({ region: region.id }).then((linode) => {
Expand Down Expand Up @@ -100,4 +142,32 @@ describe('create NodeBalancer', () => {
fbtVisible(errMessage);
});
});

/*
* - Confirms DC-specific pricing UI flow works as expected during NodeBalancer creation.
* - Confirms that pricing notice is shown in "Region" section.
* - Confirms that notice is shown when selecting a region with a different price structure.
*/
it('shows DC-specific pricing information when creating a NodeBalancer', () => {
const initialRegion = getRegionById('us-west');
createLinode({ region: initialRegion.id }).then((linode) => {
const nodeBal = {
label: randomLabel(),
region: initialRegion.id,
linodePrivateIp: linode.ipv4[1],
};

// catch request
cy.intercept('POST', apiMatcher('nodebalancers')).as(
'createNodeBalancer'
);

mockAppendFeatureFlags({
dcSpecificPricing: makeFeatureFlagData(true),
}).as('getFeatureFlags');
mockGetFeatureFlagClientstream().as('getClientStream');

createNodeBalancerWithUI(nodeBal, true);
});
});
});

0 comments on commit 1a8343b

Please sign in to comment.