HEX
Server: Apache
System: Linux server.instantlogomakers.com 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: s2spw (1156)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //usr/lib/node_modules/forever/node_modules/utile/test/random-string-test.js
/*
 * common-test.js : testing common.js for expected functionality
 *
 * (C) 2011, Nodejitsu Inc.
 *
 */

var assert = require('assert'),
    vows = require('vows'),
    utile = require('../lib');

vows.describe('utile/randomString').addBatch({
  "When using utile": {
    "the randomString() function": {
      topic: function () {
        return utile.randomString();
      },
      "should return 16 characters that are actually random by default": function (random) {
        assert.isString(random);
        assert.lengthOf(random, 16);
        assert.notEqual(random, utile.randomString());
      },
      "when you can asked for different length strings": {
        topic: function () {
          return [utile.randomString(4), utile.randomString(128)];
        },
        "where they actually are of length 4, 128": function (strings) {
          assert.isArray(strings);
          assert.lengthOf(strings,2);
          assert.isString(strings[0]);
          assert.isString(strings[1]);
          assert.lengthOf(strings[0], 4);
          assert.lengthOf(strings[1], 128);
          assert.notEqual(strings[0], strings[1].substr(0,4));
        }
      }
    }
  }
}).export(module);