!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

/home/picotech/.nvm/versions/node/v18.17.1/lib/node_modules/pm2/node_modules/vizion/test/functional/   drwxr-xr-x
Free 23.5 GB of 117.98 GB (19.92%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     svn-hg.test.js (1.88 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
var assert = require("assert");
var shell  = require("shelljs");
var vizion = require("../../index.js");

/*
 To enable a sample test suite, remove the _disabled
 and fill in the strings.  One way to fetch these values is to
 create the sample directory, enter it as the directory,
 and then run this test suite (npm test).
 The test will return the expected value (a blank string),
 and the actual value, which can be then used as the string to
 test.
 */
var sample = {
	svn: {
		directory: "./test/fixtures/test_svn/",
		url: "https://github.com/jshkurti/vizionar_test",
		revision: "r3",
		comment: "dat commit though",
		branch: "vizionar_test",
		update_time: "2014-10-21T12:29:21.289Z"
	},
	hg: {
		directory: "./test/fixtures/test_hg/",
		url: "https://jshkurti@bitbucket.org/jshkurti/vizionar_test",
		revision: "0:a070c08854c3",
		comment: "Initial commit with contributors",
		branch: "default",
		update_time: "2014-10-21T12:42:31.017Z"
	}
};

describe("vizion.analyze()", function() {
  if (shell.which('svn')) {
	  it.skip("Pulling from Subversion", function(done) {
      this.timeout(5000);
		  vizion.analyze({folder: sample.svn.directory}, function(err, metadata) {
			  assert.equal(err, null);
			  assert.equal(metadata.url, sample.svn.url);
			  assert.equal(metadata.revision, sample.svn.revision);
			  assert.equal(metadata.comment, sample.svn.comment);
			  assert.equal(metadata.branch, sample.svn.branch);
			  done();
		  });
	  });
  }
  if (shell.which('hg')) {
	  it("Pulling from Mercurial", function(done) {
      this.timeout(5000);
		  vizion.analyze({folder: sample.hg.directory}, function(err, metadata) {
			  assert.equal(err, null);
			  assert.equal(metadata.url, sample.hg.url);
			  assert.equal(metadata.revision, sample.hg.revision);
			  assert.equal(metadata.comment, sample.hg.comment);
			  assert.equal(metadata.branch, sample.hg.branch);
			  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.004 ]--