mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-21 22:07:18 +00:00
157 lines
5.2 KiB
JavaScript
157 lines
5.2 KiB
JavaScript
/*
|
|
* Copyright 2017 balena.io
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const _ = require('lodash')
|
|
const m = require('mochainon')
|
|
const utils = require('../../lib/shared/utils')
|
|
|
|
describe('Shared: Utils', function () {
|
|
describe('.isValidPercentage()', function () {
|
|
it('should return false if percentage is not a number', function () {
|
|
m.chai.expect(utils.isValidPercentage('50')).to.be.false
|
|
})
|
|
|
|
it('should return false if percentage is null', function () {
|
|
m.chai.expect(utils.isValidPercentage(null)).to.be.false
|
|
})
|
|
|
|
it('should return false if percentage is undefined', function () {
|
|
m.chai.expect(utils.isValidPercentage(undefined)).to.be.false
|
|
})
|
|
|
|
it('should return false if percentage is an integer less than 0', function () {
|
|
m.chai.expect(utils.isValidPercentage(-1)).to.be.false
|
|
})
|
|
|
|
it('should return false if percentage is a float less than 0', function () {
|
|
m.chai.expect(utils.isValidPercentage(-0.1)).to.be.false
|
|
})
|
|
|
|
it('should return true if percentage is 0', function () {
|
|
m.chai.expect(utils.isValidPercentage(0)).to.be.true
|
|
})
|
|
|
|
it('should return true if percentage is an integer greater than 0, but less than 100', function () {
|
|
m.chai.expect(utils.isValidPercentage(50)).to.be.true
|
|
})
|
|
|
|
it('should return true if percentage is a float greater than 0, but less than 100', function () {
|
|
m.chai.expect(utils.isValidPercentage(49.55)).to.be.true
|
|
})
|
|
|
|
it('should return true if percentage is 100', function () {
|
|
m.chai.expect(utils.isValidPercentage(100)).to.be.true
|
|
})
|
|
|
|
it('should return false if percentage is an integer greater than 100', function () {
|
|
m.chai.expect(utils.isValidPercentage(101)).to.be.false
|
|
})
|
|
|
|
it('should return false if percentage is a float greater than 100', function () {
|
|
m.chai.expect(utils.isValidPercentage(100.001)).to.be.false
|
|
})
|
|
})
|
|
|
|
describe('.percentageToFloat()', function () {
|
|
it('should throw an error if given a string percentage', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat('50')
|
|
}).to.throw('Invalid percentage: 50')
|
|
})
|
|
|
|
it('should throw an error if given a null percentage', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat(null)
|
|
}).to.throw('Invalid percentage: null')
|
|
})
|
|
|
|
it('should throw an error if given an undefined percentage', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat(undefined)
|
|
}).to.throw('Invalid percentage: undefined')
|
|
})
|
|
|
|
it('should throw an error if given an integer percentage < 0', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat(-1)
|
|
}).to.throw('Invalid percentage: -1')
|
|
})
|
|
|
|
it('should throw an error if given a float percentage < 0', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat(-0.1)
|
|
}).to.throw('Invalid percentage: -0.1')
|
|
})
|
|
|
|
it('should covert a 0 percentage to 0', function () {
|
|
m.chai.expect(utils.percentageToFloat(0)).to.equal(0)
|
|
})
|
|
|
|
it('should covert an integer percentage to a float', function () {
|
|
m.chai.expect(utils.percentageToFloat(50)).to.equal(0.5)
|
|
})
|
|
|
|
it('should covert an float percentage to a float', function () {
|
|
m.chai.expect(utils.percentageToFloat(46.54)).to.equal(0.4654)
|
|
})
|
|
|
|
it('should covert a 100 percentage to 1', function () {
|
|
m.chai.expect(utils.percentageToFloat(100)).to.equal(1)
|
|
})
|
|
|
|
it('should throw an error if given an integer percentage > 100', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat(101)
|
|
}).to.throw('Invalid percentage: 101')
|
|
})
|
|
|
|
it('should throw an error if given a float percentage > 100', function () {
|
|
m.chai.expect(function () {
|
|
utils.percentageToFloat(100.01)
|
|
}).to.throw('Invalid percentage: 100.01')
|
|
})
|
|
})
|
|
|
|
describe('.memoize()', function () {
|
|
it('constant true should return memoized true', function () {
|
|
const memoizedConstTrue = utils.memoize(_.constant(true), _.isEqual)
|
|
m.chai.expect(memoizedConstTrue()).to.be.true
|
|
})
|
|
|
|
it('should reflect state changes', function () {
|
|
let stateA = false
|
|
const memoizedStateA = utils.memoize(() => {
|
|
return stateA
|
|
}, _.isEqual)
|
|
|
|
m.chai.expect(memoizedStateA()).to.be.false
|
|
|
|
stateA = true
|
|
|
|
m.chai.expect(memoizedStateA()).to.be.true
|
|
})
|
|
|
|
it('should reflect different arguments', function () {
|
|
const memoizedParameter = utils.memoize(_.identity, _.isEqual)
|
|
|
|
m.chai.expect(memoizedParameter(false)).to.be.false
|
|
m.chai.expect(memoizedParameter(true)).to.be.true
|
|
})
|
|
})
|
|
})
|