chartUtil.test.ts 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. import { ChartConfig } from '../../src/types';
  20. import { isChartConfigEqual, simplifyConfig } from '../../src/util/chartUtil';
  21. describe('chartUtil', () => {
  22. const configA: ChartConfig = {
  23. type: 'FeatureCollection',
  24. features: [
  25. {
  26. type: 'Feature',
  27. geometry: {
  28. type: 'Point',
  29. coordinates: [],
  30. },
  31. properties: {
  32. refs: 'foo',
  33. },
  34. },
  35. ],
  36. };
  37. const configB: ChartConfig = {
  38. type: 'FeatureCollection',
  39. features: [
  40. {
  41. type: 'Feature',
  42. geometry: {
  43. type: 'Point',
  44. coordinates: [],
  45. },
  46. properties: {
  47. refs: 'foo',
  48. foo: 'bar',
  49. },
  50. },
  51. ],
  52. };
  53. describe('simplifyConfig', () => {
  54. it('removes the refs property from a feature', () => {
  55. const simplifiedConfig = simplifyConfig(configA);
  56. const propKeys = Object.keys(simplifiedConfig.features[0].properties);
  57. expect(propKeys).toHaveLength(0);
  58. });
  59. });
  60. describe('isChartConfigEqual', () => {
  61. it('returns true, if configurations are equal', () => {
  62. const isEqual = isChartConfigEqual(configA, structuredClone(configA));
  63. expect(isEqual).toBe(true);
  64. });
  65. it('returns false if configurations are not equal', () => {
  66. const isEqual = isChartConfigEqual(configA, configB);
  67. expect(isEqual).toBe(false);
  68. });
  69. });
  70. });