forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshelljs-tests.ts
127 lines (94 loc) · 3.65 KB
/
shelljs-tests.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Tests for shelljs.d.ts
// Project: http://shelljs.org
// Definitions by: Niklas Mollenhauer <https://github.com/nikeee>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
// Tests taken from documentation samples.
///<reference path="../node/node.d.ts" />
///<reference path="../shelljs/shelljs.d.ts" />
import shell = require("shelljs");
if (!shell.which("git"))
{
shell.echo("Sorry, this script requires git");
shell.exit(1);
}
// Copy files to release dir
shell.mkdir("-p", "out/Release");
shell.cp("-R", "stuff/*", "out/Release");
// Replace macros in each .js file
shell.cd("lib");
shell.ls("*.js").forEach( file => {
shell.sed("-i", "BUILD_VERSION", "v0.1.2", file);
shell.sed("-i", /.*REMOVE_THIS_LINE.*\n/, "", file);
shell.sed("-i", /.*REPLACE_LINE_WITH_MACRO.*\n/, shell.cat("macro.js"), file);
});
shell.cd("..");
// Run external tool synchronously
if (shell.exec('git commit -am "Auto-commit"').code !== 0)
{
shell.echo("Error: Git commit failed");
shell.exit(1);
}
shell.ls("projs/*.js");
shell.ls("-R", "/users/me", "/tmp");
shell.ls("-R", ["/users/me", "/tmp"]); // same as above
shell.find("src", "lib");
shell.find(["src", "lib"]); // same as above
shell.find(".").filter((file, i, n) => !!file.match(/\.js$/));
shell.cp("file1", "dir1");
shell.cp("-Rf", ["/tmp/*", "/usr/local/*"], "/home/tmp"); // same as aboveshell.
shell.rm("-rf", "/tmp/*");
shell.rm("some_file.txt", "another_file.txt");
shell.rm(["some_file.txt", "another_file.txt"]); // same as above
shell.mv(["file1", "file2"], "dir/"); // same as above
shell.mkdir("-p", "/tmp/a/b/c/d", "/tmp/e/f/g");
shell.mkdir("-p", ["/tmp/a/b/c/d", "/tmp/e/f/g"]); // same as above
if (shell.test("-d", "/tmp/a/b/c/d")) { /* do something with dir */ }
if (!shell.test("-f", "/tmp/a/b/c/d")) { /* do something with dir */ }
var str = shell.cat("file*.txt");
str = shell.cat("file1", "file2");
str = shell.cat(["file1", "file2"]); // same as above
shell.sed("-i", "PROGRAM_VERSION", "v0.1.3", "source.js");
shell.sed(/.*DELETE_THIS_LINE.*\n/, "", "source.js");
shell.grep("-v", "GLOBAL_VARIABLE", "*.js");
shell.grep("GLOBAL_VARIABLE", "*.js");
var nodeExec = shell.which("node");
shell.pushd("/etc"); // Returns /etc /usr
shell.pushd("+1"); // Returns /usr /etc
shell.echo(process.cwd()); // '/usr'
shell.pushd("/etc"); // '/etc /usr'
shell.echo(process.cwd()); // '/etc'
shell.popd(); // '/usr'
shell.echo(process.cwd()); // '/usr'
shell.ln("file", "newlink");
shell.ln("-sf", "file", "existing");
var testPath = shell.env["path"];
import child = require("child_process");
var version = shell.exec("node --version").output;
var version2 = <shell.ExecOutputReturnValue>shell.exec("node --version", { async: false });
var output = version2.output;
var asyncVersion3 = <child.ChildProcess>shell.exec("node --version", { async: true });
var pid = asyncVersion3.pid;
shell.exec("node --version", { silent: true }, function (code, output) {
var version = output;
});
shell.exec("node --version", { silent: true, async: true }, function (code, output) {
var version = output;
});
shell.exec("node --version", function (code, output) {
var version = output;
});
shell.exec("node --version", function (code: number) {
var num: number = code;
});
var childProc = shell.exec("node --version", function (code: number) {
var num: number = code;
});
var pid = childProc.pid;
shell.chmod(755, "/Users/brandon");
shell.chmod("755", "/Users/brandon"); // same as above
shell.chmod("u+x", "/Users/brandon");
shell.exit(0);
var tmp = shell.tempdir(); // "/tmp" for most *nix platforms
var errorlol = shell.error();
shell.config.fatal = true;
shell.config.silent = true;