84 lines
2.8 KiB
JavaScript
84 lines
2.8 KiB
JavaScript
/* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. */
|
|
|
|
/******************************************************************************
|
|
*
|
|
* You may not use the identified files except in compliance with the Apache
|
|
* License, Version 2.0 (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.
|
|
*
|
|
* The node-oracledb test suite uses 'mocha', 'should' and 'async'.
|
|
* See LICENSE.md for relevant licenses.
|
|
*
|
|
* NAME
|
|
* random.js
|
|
*
|
|
* DESCRIPTION
|
|
* generate a random string which length is 'length', with specialStr
|
|
* in it's head and tail
|
|
*
|
|
*****************************************************************************/
|
|
'use strict';
|
|
|
|
var random = exports;
|
|
module.exports = random;
|
|
|
|
// generate a random string which length is 'length', with specialStr in it's head and tail
|
|
random.getRandomString = function(length, specialStr) {
|
|
var str='';
|
|
var strLength = length - specialStr.length * 2;
|
|
for( ; str.length < strLength; str += Math.random().toString(36).slice(2));
|
|
str = str.substr(0, strLength);
|
|
str = specialStr + str + specialStr;
|
|
return str;
|
|
};
|
|
|
|
random.getRandomLengthString = function (length) {
|
|
var str='';
|
|
for( ; str.length < length; str += Math.random().toString(36).slice(2));
|
|
str = str.substr(0, length);
|
|
return str;
|
|
};
|
|
|
|
random.getRandomNumArray = function(size) {
|
|
var numbers = new Array(size);
|
|
for (var i = 0; i < numbers.length; i++) {
|
|
numbers[i] = this.getRandomInt(1,9999999);
|
|
}
|
|
return numbers;
|
|
};
|
|
|
|
random.getRandomInt = function(min, max) {
|
|
min = Math.ceil(min);
|
|
max = Math.floor(max);
|
|
return Math.floor(Math.random() * (max - min)) + min;
|
|
};
|
|
|
|
random.getIntArray = function(N) {
|
|
var arr = Array.apply(null, Array(N));
|
|
// The map() method creates a new array with the results of calling a provided function on every element in this array.
|
|
// var new_array = arr.map(callback[, thisArg])
|
|
// Parameters
|
|
// callback
|
|
// Function that produces an element of the new Array, taking three arguments:
|
|
// currentValue
|
|
// The current element being processed in the array.
|
|
// index
|
|
// The index of the current element being processed in the array.
|
|
// array
|
|
// The array map was called upon.
|
|
// thisArg
|
|
// Optional. Value to use as this when executing callback.
|
|
// Return value
|
|
// A new array with each element being the result of the callback function.
|
|
return arr.map(function (x, i) { return i; });
|
|
};
|