You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BarChart-test.tsx 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2021 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. import { shallow } from 'enzyme';
  21. import * as React from 'react';
  22. import BarChart from '../BarChart';
  23. it('should display bars', () => {
  24. const data = [
  25. { x: 1, y: 10 },
  26. { x: 2, y: 30 },
  27. { x: 3, y: 20 },
  28. ];
  29. const chart = shallow(<BarChart barsWidth={20} data={data} height={100} width={100} />);
  30. expect(chart.find('.bar-chart-bar').length).toBe(3);
  31. });
  32. it('should display ticks', () => {
  33. const data = [
  34. { x: 1, y: 10 },
  35. { x: 2, y: 30 },
  36. { x: 3, y: 20 },
  37. ];
  38. const ticks = ['A', 'B', 'C'];
  39. const chart = shallow(
  40. <BarChart barsWidth={20} data={data} height={100} width={100} xTicks={ticks} />
  41. );
  42. expect(chart.find('.bar-chart-tick').length).toBe(3);
  43. });
  44. it('should display values', () => {
  45. const data = [
  46. { x: 1, y: 10 },
  47. { x: 2, y: 30 },
  48. { x: 3, y: 20 },
  49. ];
  50. const values = ['A', 'B', 'C'];
  51. const chart = shallow(
  52. <BarChart barsWidth={20} data={data} height={100} width={100} xValues={values} />
  53. );
  54. expect(chart.find('.bar-chart-tick').length).toBe(3);
  55. });
  56. it('should display bars, ticks and values', () => {
  57. const data = [
  58. { x: 1, y: 10 },
  59. { x: 2, y: 30 },
  60. { x: 3, y: 20 },
  61. ];
  62. const ticks = ['A', 'B', 'C'];
  63. const values = ['A', 'B', 'C'];
  64. const chart = shallow(
  65. <BarChart barsWidth={20} data={data} height={100} width={100} xTicks={ticks} xValues={values} />
  66. );
  67. expect(chart.find('.bar-chart-bar').length).toBe(3);
  68. expect(chart.find('.bar-chart-tick').length).toBe(6);
  69. });