!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/wincloud_gateway/node_modules/react-virtualized/dist/commonjs/CellMeasurer/   drwxr-xr-x
Free 13.15 GB of 57.97 GB (22.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     CellMeasurerCache.jest.js (9.36 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";

var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");

var _CellMeasurerCache = _interopRequireWildcard(require("./CellMeasurerCache"));

describe('CellMeasurerCache', function () {
  it('should override defaultHeight/defaultWidth if minHeight/minWidth are greater', function () {
    var cache = new _CellMeasurerCache["default"]({
      defaultHeight: 20,
      defaultWidth: 100,
      fixedHeight: true,
      fixedWidth: true,
      minHeight: 30,
      minWidth: 150
    });
    cache.set(0, 0, 50, 10);
    expect(cache.getHeight(0, 0)).toBe(30);
    expect(cache.getWidth(0, 0)).toBe(150);
    expect(cache.rowHeight({
      index: 0
    })).toBe(30);
    expect(cache.columnWidth({
      index: 0
    })).toBe(150);
  });
  it('should correctly report cache status', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true,
      fixedWidth: true
    });
    expect(cache.has(0, 0)).toBe(false);
  });
  it('should cache cells', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true,
      fixedWidth: true
    });
    cache.set(0, 0, 100, 20);
    expect(cache.has(0, 0)).toBe(true);
  });
  it('should return the correct default sizes for uncached cells if specified', function () {
    spyOn(console, 'warn'); // Ignore warning about variable width and height

    var cache = new _CellMeasurerCache["default"]({
      defaultHeight: 20,
      defaultWidth: 100,
      minHeight: 15,
      minWidth: 80
    });
    expect(cache.getWidth(0, 0)).toBe(100);
    expect(cache.getHeight(0, 0)).toBe(20);
    cache.set(0, 0, 70, 10);
    expect(cache.getWidth(0, 0)).toBe(80);
    expect(cache.getHeight(0, 0)).toBe(15);
  });
  it('should clear a single cached cell', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true,
      fixedWidth: true
    });
    cache.set(0, 0, 100, 20);
    cache.set(1, 0, 100, 20);
    expect(cache.has(0, 0)).toBe(true);
    expect(cache.has(1, 0)).toBe(true);
    cache.clear(0, 0);
    expect(cache.has(0, 0)).toBe(false);
    expect(cache.has(1, 0)).toBe(true);
  });
  it('should clear a single cached row cell in column 0 when columnIndex param is absent', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true,
      fixedWidth: true
    });
    cache.set(0, 0, 100, 20);
    cache.set(1, 0, 100, 20);
    expect(cache.has(0, 0)).toBe(true);
    expect(cache.has(1, 0)).toBe(true);
    cache.clear(0);
    expect(cache.has(0, 0)).toBe(false);
    expect(cache.has(1, 0)).toBe(true);
  });
  it('should clear all cached cells', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true,
      fixedWidth: true
    });
    cache.set(0, 0, 100, 20);
    cache.set(1, 0, 100, 20);
    expect(cache.has(0, 0)).toBe(true);
    expect(cache.has(1, 0)).toBe(true);
    cache.clearAll();
    expect(cache.has(0, 0)).toBe(false);
    expect(cache.has(1, 0)).toBe(false);
  });
  it('should clear row and column counts when clearing all cells', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true,
      fixedWidth: true
    });
    cache.set(0, 0, 100, 20);
    cache.set(1, 0, 100, 20);
    expect(cache._rowCount).toBe(2);
    expect(cache._columnCount).toBe(1);
    cache.clearAll();
    expect(cache._rowCount).toBe(0);
    expect(cache._columnCount).toBe(0);
  });
  it('should support a custom :keyMapper', function () {
    var keyMapper = jest.fn();
    keyMapper.mockReturnValue('a');
    spyOn(console, 'warn'); // Ignore warning about variable width and height

    var cache = new _CellMeasurerCache["default"]({
      defaultHeight: 30,
      defaultWidth: 50,
      keyMapper: keyMapper
    });
    cache.set(0, 0, 100, 20);
    expect(cache.has(0, 0)).toBe(true); // Changing the returned key should cause cache misses

    keyMapper.mockReset();
    keyMapper.mockReturnValue('b');
    expect(cache.has(0, 0)).toBe(false);
    expect(cache.columnWidth(0)).toBe(50);
    expect(cache.rowHeight(0)).toBe(30);
    expect(keyMapper.mock.calls).toHaveLength(3); // Restoring it should fix

    keyMapper.mockReset();
    keyMapper.mockReturnValue('a');
    expect(cache.has(0, 0)).toBe(true);
    expect(cache.columnWidth(0)).toBe(100);
    expect(cache.rowHeight(0)).toBe(20);
    expect(keyMapper.mock.calls).toHaveLength(3);
  });
  it('should provide a Grid-compatible :columnWidth method', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true
    });
    expect(cache.columnWidth({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_WIDTH);
    cache.set(0, 0, 100, 50);
    expect(cache.columnWidth({
      index: 0
    })).toBe(100);
    expect(cache.columnWidth({
      index: 1
    })).toBe(_CellMeasurerCache.DEFAULT_WIDTH);
    cache.set(1, 0, 75, 50);
    expect(cache.columnWidth({
      index: 0
    })).toBe(100);
    cache.set(2, 0, 125, 50);
    expect(cache.columnWidth({
      index: 0
    })).toBe(125);
  });
  it('should provide a Grid-compatible :rowHeight method', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedWidth: true
    });
    expect(cache.rowHeight({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_HEIGHT);
    cache.set(0, 0, 100, 50);
    expect(cache.rowHeight({
      index: 0
    })).toBe(50);
    expect(cache.rowHeight({
      index: 1
    })).toBe(_CellMeasurerCache.DEFAULT_HEIGHT);
    cache.set(0, 1, 100, 25);
    expect(cache.rowHeight({
      index: 0
    })).toBe(50);
    cache.set(0, 2, 100, 75);
    expect(cache.rowHeight({
      index: 0
    })).toBe(75);
  });
  it('should return the :defaultWidth for :columnWidth if not measured', function () {
    var cache = new _CellMeasurerCache["default"]({
      defaultWidth: 25,
      fixedHeight: true,
      fixedWidth: true
    });
    expect(cache.columnWidth({
      index: 0
    })).toBe(25);
  });
  it('should return the :defaultHeight for :rowHeight if not measured', function () {
    var cache = new _CellMeasurerCache["default"]({
      defaultHeight: 25,
      fixedHeight: true,
      fixedWidth: true
    });
    expect(cache.rowHeight({
      index: 0
    })).toBe(25);
  });
  it('should recalculate cached :columnWidth when cells are cleared', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedHeight: true
    });
    expect(cache.columnWidth({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_WIDTH);
    cache.set(0, 0, 125, 50);
    expect(cache.columnWidth({
      index: 0
    })).toBe(125);
    cache.set(1, 0, 150, 50);
    expect(cache.columnWidth({
      index: 0
    })).toBe(150);
    cache.clear(1, 0);
    expect(cache.columnWidth({
      index: 0
    })).toBe(125);
    cache.clear(0, 0);
    expect(cache.columnWidth({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_WIDTH);
    cache.set(0, 0, 125, 50);
    expect(cache.columnWidth({
      index: 0
    })).toBe(125);
    cache.clearAll();
    expect(cache.columnWidth({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_WIDTH);
  });
  it('should recalculate cached :rowHeight when cells are cleared', function () {
    var cache = new _CellMeasurerCache["default"]({
      fixedWidth: true
    });
    expect(cache.rowHeight({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_HEIGHT);
    cache.set(0, 0, 125, 50);
    expect(cache.rowHeight({
      index: 0
    })).toBe(50);
    cache.set(0, 1, 150, 75);
    expect(cache.rowHeight({
      index: 0
    })).toBe(75);
    cache.clear(0, 1);
    expect(cache.rowHeight({
      index: 0
    })).toBe(50);
    cache.clear(0, 0);
    expect(cache.rowHeight({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_HEIGHT);
    cache.set(0, 0, 125, 50);
    expect(cache.rowHeight({
      index: 0
    })).toBe(50);
    cache.clearAll();
    expect(cache.rowHeight({
      index: 0
    })).toBe(_CellMeasurerCache.DEFAULT_HEIGHT);
  });
  describe('DEV mode', function () {
    it('should warn about dynamic width and height configurations', function () {
      spyOn(console, 'warn');
      var cache = new _CellMeasurerCache["default"]({
        fixedHeight: false,
        fixedWidth: false
      });
      expect(cache.hasFixedHeight()).toBe(false);
      expect(cache.hasFixedWidth()).toBe(false);
      expect(console.warn).toHaveBeenCalledWith("CellMeasurerCache should only measure a cell's width or height. " + 'You have configured CellMeasurerCache to measure both. ' + 'This will result in poor performance.');
    });
    it('should warn about dynamic width with a defaultWidth of 0', function () {
      spyOn(console, 'warn');
      var cache = new _CellMeasurerCache["default"]({
        defaultWidth: 0,
        fixedHeight: true
      });
      expect(cache.getWidth(0, 0)).toBe(0);
      expect(console.warn).toHaveBeenCalledWith('Fixed width CellMeasurerCache should specify a :defaultWidth greater than 0. ' + 'Failing to do so will lead to unnecessary layout and poor performance.');
    });
    it('should warn about dynamic height with a defaultHeight of 0', function () {
      spyOn(console, 'warn');
      var cache = new _CellMeasurerCache["default"]({
        defaultHeight: 0,
        fixedWidth: true
      });
      expect(cache.getHeight(0, 0)).toBe(0);
      expect(console.warn).toHaveBeenCalledWith('Fixed height CellMeasurerCache should specify a :defaultHeight greater than 0. ' + 'Failing to do so will lead to unnecessary layout and poor performance.');
    });
  });
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0047 ]--