open-nomad/ui/tests/unit/helpers/format-bytes-test.js

34 lines
1.1 KiB
JavaScript
Raw Normal View History

import { module, test } from 'ember-qunit';
import { formatBytes } from 'nomad-ui/helpers/format-bytes';
2017-11-21 19:22:17 +00:00
module('Unit | Helper | format-bytes');
2017-10-20 00:14:55 +00:00
test('formats null/undefined as 0 bytes', function(assert) {
assert.equal(formatBytes([undefined]), '0 Bytes');
assert.equal(formatBytes([null]), '0 Bytes');
});
test('formats x < 1024 as bytes', function(assert) {
assert.equal(formatBytes([0]), '0 Bytes');
assert.equal(formatBytes([100]), '100 Bytes');
assert.equal(formatBytes([1023]), '1023 Bytes');
});
test('formats 1024 <= x < 1024 * 1024 as KiB', function(assert) {
assert.equal(formatBytes([1024]), '1 KiB');
assert.equal(formatBytes([125952]), '123 KiB');
assert.equal(formatBytes([1024 * 1024 - 1]), '1023 KiB');
});
test('formats 1024 * 1024 <= x < 1024 * 1024 * 1024 as MiB', function(assert) {
assert.equal(formatBytes([1024 * 1024]), '1 MiB');
assert.equal(formatBytes([128974848]), '123 MiB');
});
test('formats x > 1024 * 1024 * 1024 as MiB, since it is the highest allowed unit', function(
assert
) {
assert.equal(formatBytes([1024 * 1024 * 1024]), '1024 MiB');
assert.equal(formatBytes([1024 * 1024 * 1024 * 4]), '4096 MiB');
});