| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- /*
- * 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 { mergeMargin } from '@superset-ui/core';
- describe('mergeMargin(margin1, margin2, mode?)', () => {
- it('combines two given margin', () => {
- expect(
- mergeMargin(
- {
- top: 1,
- left: 1,
- bottom: 2,
- right: 2,
- },
- {
- top: 2,
- left: 2,
- bottom: 1,
- right: 1,
- },
- ),
- ).toEqual({
- top: 2,
- left: 2,
- bottom: 2,
- right: 2,
- });
- });
- describe('default values', () => {
- it('works if margin1 is not defined', () => {
- expect(
- mergeMargin(undefined, {
- top: 2,
- left: 2,
- bottom: 1,
- right: 1,
- }),
- ).toEqual({
- top: 2,
- left: 2,
- bottom: 1,
- right: 1,
- });
- });
- it('works if margin2 is not defined', () => {
- expect(
- mergeMargin(
- {
- top: 1,
- left: 1,
- bottom: 2,
- right: 2,
- },
- undefined,
- ),
- ).toEqual({
- top: 1,
- left: 1,
- bottom: 2,
- right: 2,
- });
- });
- it('use 0 for the side that is not specified', () => {
- expect(mergeMargin({}, {})).toEqual({
- top: 0,
- left: 0,
- bottom: 0,
- right: 0,
- });
- });
- });
- describe('mode', () => {
- it('if mode=expand, returns the larger margin for each side', () => {
- expect(
- mergeMargin(
- {
- top: 1,
- left: 1,
- bottom: 2,
- right: 2,
- },
- {
- top: 2,
- left: 2,
- bottom: 1,
- right: 1,
- },
- 'expand',
- ),
- ).toEqual({
- top: 2,
- left: 2,
- bottom: 2,
- right: 2,
- });
- });
- it('if mode=shrink, returns the smaller margin for each side', () => {
- expect(
- mergeMargin(
- {
- top: 1,
- left: 1,
- bottom: 2,
- right: 2,
- },
- {
- top: 2,
- left: 2,
- bottom: 1,
- right: 1,
- },
- 'shrink',
- ),
- ).toEqual({
- top: 1,
- left: 1,
- bottom: 1,
- right: 1,
- });
- });
- it('expand by default', () => {
- expect(
- mergeMargin(
- {
- top: 1,
- left: 1,
- bottom: 2,
- right: 2,
- },
- {
- top: 2,
- left: 2,
- bottom: 1,
- right: 1,
- },
- ),
- ).toEqual({
- top: 2,
- left: 2,
- bottom: 2,
- right: 2,
- });
- });
- });
- it('works correctly for negative margins', () => {
- expect(
- mergeMargin(
- {
- top: -3,
- left: -3,
- bottom: -2,
- right: -2,
- },
- {
- top: -2,
- left: -2,
- bottom: 0,
- right: -1,
- },
- ),
- ).toEqual({
- top: -2,
- left: -2,
- bottom: 0,
- right: -1,
- });
- });
- it('if there are NaN or null, use another value', () => {
- expect(
- mergeMargin(
- {
- top: 10,
- // @ts-ignore to let us pass `null` for testing
- left: null,
- bottom: 20,
- right: NaN,
- },
- {
- top: NaN,
- left: 30,
- bottom: null,
- right: 40,
- },
- ),
- ).toEqual({
- top: 10,
- left: 30,
- bottom: 20,
- right: 40,
- });
- });
- });
|