forked from luvit/luv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-misc.lua
216 lines (183 loc) · 5.82 KB
/
test-misc.lua
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
return require('lib/tap')(function (test)
test("uv.guess_handle", function (print, p, expect, uv)
local types = {
[0] = assert(uv.guess_handle(0)),
assert(uv.guess_handle(1)),
assert(uv.guess_handle(2)),
}
p("stdio fd types", types)
end)
test("uv.version and uv.version_string", function (print, p, expect, uv)
local version = assert(uv.version())
local version_string = assert(uv.version_string())
p{version=version, version_string=version_string}
assert(type(version) == "number")
assert(type(version_string) == "string")
end)
test("memory size", function (print, p, expect, uv)
local rss = uv.resident_set_memory()
local total = uv.get_total_memory()
local constrained = nil
if uv.get_constrained_memory then
constrained = uv.get_constrained_memory()
assert(constrained >= 0)
end
local available = nil
if uv.get_available_memory then
available = uv.get_available_memory()
assert(available >= 0, available)
end
local free = uv.get_free_memory()
p{rss=rss,total=total,free=free,available=available,constrained=constrained}
assert(rss < total)
end)
test("uv.uptime", function (print, p, expect, uv)
local uptime = assert(uv.uptime())
p{uptime=uptime}
end)
test("uv.getrusage", function (print, p, expect, uv)
local rusage = assert(uv.getrusage())
p(rusage)
end)
test("uv.available_parallelism", function (print, p, expect, uv)
local available_parallelism = assert(uv.available_parallelism())
p(available_parallelism)
end, "1.44.0")
test("uv.cpu_info", function (print, p, expect, uv)
local info = assert(uv.cpu_info())
p(info)
end)
test("uv.interface_addresses", function (print, p, expect, uv)
local addresses = assert(uv.interface_addresses())
for name, info in pairs(addresses) do
p(name, addresses[name])
end
end)
test("uv.loadavg", function (print, p, expect, uv)
local avg = {assert(uv.loadavg())}
p(avg)
assert(#avg == 3)
end)
test("uv.exepath", function (print, p, expect, uv)
local path = assert(uv.exepath())
p(path)
end)
test("uv.os_homedir", function (print, p, expect, uv)
local path = assert(uv.os_homedir())
p(path)
end, "1.9.0")
test("uv.os_tmpdir", function (print, p, expect, uv)
local path = assert(uv.os_tmpdir())
p(path)
end, "1.9.0")
test("uv.os_get_passwd", function (print, p, expect, uv)
local passwd = assert(uv.os_get_passwd())
p(passwd)
end, "1.9.0")
test("uv.cwd and uv.chdir", function (print, p, expect, uv)
local old = assert(uv.cwd())
p(old)
assert(uv.chdir("/"))
local cwd = assert(uv.cwd())
p(cwd)
assert(cwd ~= old)
assert(uv.chdir(old))
end)
test("uv.hrtime", function (print, p, expect, uv)
local time = assert(uv.hrtime())
p(time)
end)
test("uv.getpid", function (print, p, expect, uv)
assert(uv.getpid())
end)
test("uv.os_uname", function(print, p, expect, uv)
local uname = assert(uv.os_uname())
p(uname)
end, "1.25.0")
test("uv.gettimeofday", function(print, p, expect, uv)
local now = os.time()
local sec, usec = assert(uv.gettimeofday())
print(' os.time', now)
print('uv.gettimeofday',string.format("%f",sec+usec/10^9))
assert(type(sec)=='number')
assert(type(usec)=='number')
end, "1.28.0")
test("uv.os_environ", function(print, p, expect, uv)
local name, name2 = "LUV_TEST_FOO", "LUV_TEST_FOO2";
local value, value2 = "123456789", ""
assert(uv.os_setenv(name, value))
assert(uv.os_setenv(name2, value2))
local env = uv.os_environ();
assert(env[name]==value)
assert(env[name2]==value2)
end, "1.31.0")
test("uv.sleep", function(print, p, expect, uv)
local val = 1000
local begin = uv.now()
uv.sleep(val)
uv.update_time()
local now = uv.now()
assert(now-begin >= val)
end)
test("uv.random async", function(print, p, expect, uv)
local len = 256
assert(uv.random(len, {}, expect(function(err, randomBytes)
assert(not err)
assert(#randomBytes == len)
-- this matches the LibUV test
-- it can theoretically fail but its very unlikely
assert(randomBytes ~= string.rep("\0", len))
end)))
end, "1.33.0")
test("uv.random sync", function(print, p, expect, uv)
local len = 256
local randomBytes = assert(uv.random(len))
assert(#randomBytes == len)
-- this matches the LibUV test
-- it can theoretically fail but its very unlikely
assert(randomBytes ~= string.rep("\0", len))
end, "1.33.0")
test("uv.random errors", function(print, p, expect, uv)
-- invalid flag
local _, err = uv.random(0, -1)
assert(err:match("^EINVAL"))
-- invalid len
_, err = uv.random(-1)
assert(err:match("^E2BIG"))
end, "1.33.0")
test("uv errno", function(print, p, expect, uv)
assert(type(uv.errno)=='table')
for k, v in pairs(uv.errno) do
assert(v < 0, k)
end
end)
test("uv constants", function(print, p, expect, uv)
assert(type(uv.constants)=='table')
for k, v in pairs(uv.constants) do
assert(v >= 0, k)
end
end)
test("uv.cpumask_size", function(print, p, expect, uv)
-- The result can vary per-platform and is only supported on some platforms,
-- so just test that the function exists and behaves coherently.
local size, err = uv.cpumask_size()
p(size, err)
if err then
assert(not size)
else
assert(size >= 0)
end
end, "1.45.0")
test("uv.clock_gettime", function(print, p, expect, uv)
for _, clock_id in ipairs({"monotonic", "realtime"}) do
local timespec, err = uv.clock_gettime("monotonic")
p(clock_id, timespec, err)
if err then
assert(not timespec)
else
assert(timespec.sec >= 0)
assert(timespec.nsec >= 0)
end
end
end, "1.45.0")
end)