| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- import { NumberFormatter } from '@superset-ui/core';
- describe('NumberFormatter', () => {
- describe('new NumberFormatter(config)', () => {
- it('requires config.id', () => {
- expect(
- () =>
- // @ts-ignore
- new NumberFormatter({
- formatFunc: () => '',
- }),
- ).toThrow();
- });
- it('requires config.formatFunc', () => {
- expect(
- () =>
- // @ts-ignore
- new NumberFormatter({
- id: 'my_format',
- }),
- ).toThrow();
- });
- });
- describe('formatter is also a format function itself', () => {
- const formatter = new NumberFormatter({
- id: 'fixed_3',
- formatFunc: value => value.toFixed(3),
- });
- it('returns formatted value', () => {
- expect(formatter(12345.67)).toEqual('12345.670');
- });
- it('formatter(value) is the same with formatter.format(value)', () => {
- const value = 12345.67;
- expect(formatter(value)).toEqual(formatter.format(value));
- });
- });
- describe('.format(value)', () => {
- const formatter = new NumberFormatter({
- id: 'fixed_3',
- formatFunc: value => value.toFixed(3),
- });
- it('handles null', () => {
- expect(formatter.format(null)).toEqual('null');
- });
- it('handles undefined', () => {
- expect(formatter.format(undefined)).toEqual('undefined');
- });
- it('handles NaN', () => {
- expect(formatter.format(NaN)).toEqual('NaN');
- });
- it('handles positive and negative infinity', () => {
- expect(formatter.format(Number.POSITIVE_INFINITY)).toEqual('∞');
- expect(formatter.format(Number.NEGATIVE_INFINITY)).toEqual('-∞');
- });
- it('otherwise returns formatted value', () => {
- expect(formatter.format(12345.67)).toEqual('12345.670');
- });
- });
- describe('.preview(value)', () => {
- const formatter = new NumberFormatter({
- id: 'fixed_2',
- formatFunc: value => value.toFixed(2),
- });
- it('returns string comparing value before and after formatting', () => {
- expect(formatter.preview(100)).toEqual('100 => 100.00');
- });
- it('uses the default preview value if not specified', () => {
- expect(formatter.preview()).toEqual('12345.432 => 12345.43');
- });
- });
- });
|