MOON
Server: Apache
System: Linux 54-179-220-51.cprapid.com 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
User: thehunarfound (1001)
PHP: 7.4.29
Disabled: NONE
Upload Files
File: /home/thehunarfound/public_html/DMSold/node_modules/nconf/test/stores/argv-test.js
/*
 * argv-test.js: Tests for the nconf argv store.
 *
 * (C) 2011, Charlie Robbins and the Contributors.
 *
 */

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

vows.describe('nconf/stores/argv').addBatch({
  "An instance of nconf.Argv": {
    topic: new nconf.Argv(),
    "should have the correct methods defined": function (argv) {
      assert.isFunction(argv.loadSync);
      assert.isFunction(argv.loadArgv);
      assert.deepEqual(argv.options, {});
    },
    "can be created with a custom yargs":{
      topic: function(){
        var yargsInstance = yargs.alias('v', 'verbose').default('v', 'false');
        return [yargsInstance, new nconf.Argv(yargsInstance)];
      },
      "and can give access to them": function (argv) {
        var yargsInstance = argv[0];
        argv = argv[1]
        assert.equal(argv.options, yargsInstance)
      },
      "values are the one from the custom yargv": function (argv) {
        argv = argv[1]
        argv.loadSync()
        assert.equal(argv.get('verbose'), 'false');
        assert.equal(argv.get('v'), 'false');
      }
    },
    "can be created with a nconf yargs":{
      topic: function(){
        var options = {verbose: {alias: 'v', default: 'false'}};
        return  new nconf.Argv(options);
      },
      "and can give access to them": function (argv) {
        assert.deepEqual(argv.options, {verbose: {alias: 'v', default: 'false'}})
      },
      "values are the one from the custom yargv": function (argv) {
        argv.loadSync()
        assert.equal(argv.get('verbose'), 'false');
        assert.equal(argv.get('v'), 'false');
      }
    }
  }
}).export(module);;;