added new tests

Co-authored-by: Pranav Mishra <mishrap@dickinson.edu>
This commit is contained in:
Shahir Ahmed
2025-04-10 21:04:55 -04:00
parent a2bf5103ce
commit dff00f2c4f

View File

@@ -441,7 +441,7 @@ describe('XY Chart', () => {
);
});
it('should render data labels within the bar in the horizontal xy-chart', () => {
it('should render data labels within each bar in the horizontal xy-chart', () => {
imgSnapshotTest(
`
---
@@ -459,35 +459,29 @@ describe('XY Chart', () => {
{}
);
let textProps, barProps;
cy.get('g.bar-plot-0').within(() => {
cy.get('rect').each(($rect, index) => {
// Extract bar properties
const barProps = {
x: parseFloat($rect.attr('x')),
y: parseFloat($rect.attr('y')),
width: parseFloat($rect.attr('width')),
height: parseFloat($rect.attr('height')),
};
// Get the text element corresponding to this bar by index.
cy.get('text')
.contains('5000')
.then(($el) => {
const bbox = $el[0].getBBox();
textProps = {
.eq(index)
.then(($text) => {
const bbox = $text[0].getBBox();
const textProps = {
x: bbox.x,
y: bbox.y,
width: bbox.width,
height: bbox.height,
};
console.log('textProps', textProps);
});
cy.get('g.bar-plot-0')
.find('rect')
.first()
.then((rect) => {
barProps = {
x: parseFloat(rect.attr('x')),
y: parseFloat(rect.attr('y')),
width: parseFloat(rect.attr('width')),
height: parseFloat(rect.attr('height')),
};
console.log('barProps', barProps);
})
.then(() => {
// Ensure that both textProps and barProps are defined before the assertion
// Verify that the text label is positioned within the boundaries of the bar.
expect(textProps.x).to.be.greaterThan(barProps.x);
expect(textProps.x + textProps.width).to.be.lessThan(barProps.x + barProps.width);
@@ -499,8 +493,10 @@ describe('XY Chart', () => {
);
});
});
});
});
it('should render data labels within the bar in the horizontal xy-chart', () => {
it('should render data labels within each bar in the vertical xy-chart', () => {
imgSnapshotTest(
`
---
@@ -516,39 +512,43 @@ describe('XY Chart', () => {
`,
{}
);
let textProps, barProps;
cy.get('g.bar-plot-0').within(() => {
cy.get('rect').each(($rect, index) => {
// Extract bar properties
const barProps = {
x: parseFloat($rect.attr('x')),
y: parseFloat($rect.attr('y')),
width: parseFloat($rect.attr('width')),
height: parseFloat($rect.attr('height')),
};
// Get the text element corresponding to this bar by index.
cy.get('text')
.contains('5000')
.then(($el) => {
const bbox = $el[0].getBBox();
textProps = {
.eq(index)
.then(($text) => {
const bbox = $text[0].getBBox();
const textProps = {
x: bbox.x,
y: bbox.y,
width: bbox.width,
height: bbox.height,
};
console.log('textProps', textProps);
});
cy.get('g.bar-plot-0')
.find('rect')
.first()
.then((rect) => {
barProps = {
x: parseFloat(rect.attr('x')),
y: parseFloat(rect.attr('y')),
width: parseFloat(rect.attr('width')),
height: parseFloat(rect.attr('height')),
};
console.log('barProps', barProps);
})
.then(() => {
// Ensure that both textProps and barProps are defined before the assertion
// Verify that the text label is positioned within the boundaries of the bar.
expect(textProps.x).to.be.greaterThan(barProps.x);
expect(textProps.x + textProps.width).to.be.lessThan(barProps.x + barProps.width);
expect(textProps.x + textProps.width / 2).to.be.closeTo(barProps.x + barProps.width / 2, 1);
// Check horizontal alignment (within tolerance)
expect(textProps.x + textProps.width / 2).to.be.closeTo(
barProps.x + barProps.width / 2,
1
);
expect(textProps.y).to.be.greaterThan(barProps.y);
expect(textProps.y + textProps.height).to.be.lessThan(barProps.y + barProps.height);
});
});
});
});
});