test_spec.lua 12.3 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
#!/usr/bin/env lua

3
local VISUALDELAY = os.getenv("VISUALDELAY")
Hisham Muhammad's avatar
Hisham Muhammad committed
4
 
5
6
local visual = VISUALDELAY or false
local visual_delay = VISUALDELAY and (tonumber(VISUALDELAY)) or 0.1
Hisham Muhammad's avatar
Hisham Muhammad committed
7
8
9
10
11
12
13
14
15
16
17
18

local unistd = require("posix.unistd")
local time = require("posix.time")
local curses = require("posix.curses")
local rote = require("rote")

local rt = rote.RoteTerm(24, 80)

os.execute("make coverage")
os.execute("rm -f *.gcda */*.gcda")
os.execute("rm -f coverage.info test.htoprc")
os.execute("rm -rf lcov")
Hisham Muhammad's avatar
Hisham Muhammad committed
19
20
os.execute("killall htop")
os.execute("ps aux | grep '[s]leep 12345' | awk '{print $2}' | xargs kill 2> /dev/null")
Hisham Muhammad's avatar
Hisham Muhammad committed
21

Hisham Muhammad's avatar
Hisham Muhammad committed
22
os.execute("cp ./default.htoprc ./test.htoprc")
Hisham Muhammad's avatar
Hisham Muhammad committed
23
rt:forkPty("LC_ALL=C HTOPRC=./test.htoprc ./htop")
Hisham Muhammad's avatar
Hisham Muhammad committed
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

local stdscr, term_win
-- Curses initalization needed even when not in visual mode
-- because luaposix only initializes KEY_* constants after initscr().
stdscr = curses.initscr()
if visual then
   curses.echo(false)
   curses.start_color()
   curses.raw(true)
   curses.halfdelay(1)
   stdscr:keypad(true)
   term_win = curses.newwin(24, 80, 0, 0)
   local function makePair(foreground, background)
      return background * 8 + 7 - foreground
   end
   -- initialize the color pairs the way rt:draw() expects it
   for foreground = 0, 7 do
      for background = 0, 7 do
         if foreground ~= 7 or background ~= 0 then
            local pair = makePair(foreground, background)
            curses.init_pair(pair, foreground, background)
         end
      end
   end
else
   curses.endwin()
end

local function delay(t)
   time.nanosleep({ tv_sec = math.floor(t), tv_nsec = (t - math.floor(t)) * 1000000000 })
end

local function show(key)
   rt:update()
   if visual then
      rt:draw(term_win, 0, 0)
      if key then
         term_win:mvaddstr(0, 0, tostring(key))
      end
      term_win:refresh()
      
      delay(visual_delay)
   end
end

local function send(key, times)
Hisham Muhammad's avatar
Hisham Muhammad committed
70
   if times == 0 then return end
Hisham Muhammad's avatar
Hisham Muhammad committed
71
   for _ = 1, times or 1 do
Hisham Muhammad's avatar
Hisham Muhammad committed
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
      delay(0.003) -- 30ms delay to avoid clobbering Esc sequences
      if type(key) == "string" then
         for c in key:gmatch('.') do
            rt:keyPress(string.byte(c))
         end
      else
         rt:keyPress(key)
      end
      show(key)
   end
end

local function string_at(x, y, len)
   rt:update()
   local out = {}
   for i = 1, len do
      out[#out+1] = rt:cellChar(y-1, x+i-2)
   end
   return table.concat(out)
end

local function is_string_at(x, y, str)
   return string_at(x, y, #str) == str
end

local function check_string_at(x, y, str)
   return { str, string_at(x, y, #str) }
end

Hisham Muhammad's avatar
Hisham Muhammad committed
101
local ESC = "\27\27"
Hisham Muhammad's avatar
Hisham Muhammad committed
102
103
104

time.nanosleep({ tv_sec = 0, tv_nsec = 150000000 }) -- give some time for htop to initialize.

Hisham Muhammad's avatar
Hisham Muhammad committed
105
106
107
108
local y_panelhdr = (function()
   for y = 1, 24 do
      if is_string_at(3, y, "PID") then
         return y
Hisham Muhammad's avatar
Hisham Muhammad committed
109
110
111
112
      end
   end
end)() or 1

Hisham Muhammad's avatar
Hisham Muhammad committed
113
114
local x_metercol2 = 43

Hisham Muhammad's avatar
Hisham Muhammad committed
115
116
show()

Hisham Muhammad's avatar
Hisham Muhammad committed
117
118
119
120
121
os.execute("sleep 12345 &")

local function terminated()
   return not os.execute("ps aux | grep -q '\\./[h]top'")
end
Hisham Muhammad's avatar
Hisham Muhammad committed
122
123
124

local function running_it(desc, fn)
   it(desc, function()
Hisham Muhammad's avatar
Hisham Muhammad committed
125
      assert(not terminated())
Hisham Muhammad's avatar
Hisham Muhammad committed
126
127
      show()
      fn()
Hisham Muhammad's avatar
Hisham Muhammad committed
128
      assert(not terminated())
Hisham Muhammad's avatar
Hisham Muhammad committed
129
130
131
132
133
134
135
   end)
end

local function check(t)
   return t[1], t[2]
end

Hisham Muhammad's avatar
Hisham Muhammad committed
136
137
138
139
140
local attrs = {
   black_on_cyan = 6,
   red_on_cyan = 22,
}

Hisham Muhammad's avatar
Hisham Muhammad committed
141
142
143
local function find_selected_y(from)
   rt:update()
   for y = from or (y_panelhdr + 1), rt:rows() - 1 do
Hisham Muhammad's avatar
Hisham Muhammad committed
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
      local attr = rt:cellAttr(y-1, 1)
      if attr == attrs.black_on_cyan then
         return y
      end
   end
   return y_panelhdr + 1
end

local function find_command_x()
   for x = 1, 80 do
      if is_string_at(x, y_panelhdr, "Command") then
         return x
      end
   end
   return 64
end

Hisham Muhammad's avatar
Hisham Muhammad committed
161
describe("htop test suite", function()
Hisham Muhammad's avatar
Hisham Muhammad committed
162
163
164
   
   running_it("performs incremental filter", function()
      send("\\")
Hisham Muhammad's avatar
Hisham Muhammad committed
165
      send("x\127bux\127sted") -- test backspace
Hisham Muhammad's avatar
Hisham Muhammad committed
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
      send("\n")
      delay(0.2)
      rt:update()
      local pid = ("      "..tostring(unistd.getpid())):sub(-5)
      local ourpid = check_string_at(1, y_panelhdr + 1, pid)
      send("\\")
      send(ESC)
      send(curses.KEY_F5)
      send(curses.KEY_HOME)
      delay(0.15)
      rt:update()
      local initpid = check_string_at(1, y_panelhdr + 1, "    1")
      delay(0.15)
      rt:update()
      send(curses.KEY_F5)
      assert.equal(check(ourpid))
      assert.equal(check(initpid))
   end)

   running_it("performs incremental search", function()
      send(curses.KEY_HOME)
      send("/")
      send("busted")
      local attr = rt:cellAttr(rt:rows() - 1, 30)
      send("\n")
      delay(0.4)
      local line = find_selected_y()
      local pid = ("      "..tostring(unistd.getpid())):sub(-5)
      assert.equal(attr, attrs.black_on_cyan)
      local ourpid = check_string_at(1, line, pid)
      send(curses.KEY_HOME)
      assert.equal(check(ourpid))
   end)

   running_it("kills a process", function()
      send(curses.KEY_HOME)
      send("\\")
      send("sleep 12345")
      local attr = rt:cellAttr(rt:rows() - 1, 30)
      assert.equal(attr, attrs.black_on_cyan)
      send("\n")
      delay(0.3)
      rt:update()
      local col = find_command_x()
      local procname = check_string_at(col, y_panelhdr + 1, "sleep 12345")
      send("k")
      send("\n")
      send("\\")
      send(ESC)
      delay(0.3)
      assert.equal(check(procname))
      assert.not_equal((os.execute("ps aux | grep -q '[s]leep 12345'")), true)
   end)

   running_it("runs strace", function()
      send(curses.KEY_HOME)
      send("/")
      send("busted")
      send("\n")
      send("s")
      delay(1)
      send(ESC)
   end)

   running_it("runs lsof", function()
      send(curses.KEY_HOME)
      send("/")
      send("busted")
      send("\n")
      send("l")
      delay(1)
Hisham Muhammad's avatar
Hisham Muhammad committed
237
238
239
240
241
242
243
244
245
246
247
      send(ESC)
   end)

   running_it("performs filtering in lsof", function()
      send(curses.KEY_HOME)
      send("/")
      send("htop")
      send("\n")
      send("l")
      send(curses.KEY_F4)
      send("pipe")
Hisham Muhammad's avatar
Hisham Muhammad committed
248
      delay(1)
Hisham Muhammad's avatar
Hisham Muhammad committed
249
      local pipefd = check_string_at(1, 3, "    3")
Hisham Muhammad's avatar
Hisham Muhammad committed
250
      send(ESC)
Hisham Muhammad's avatar
Hisham Muhammad committed
251
      assert.equal(check(pipefd))
Hisham Muhammad's avatar
Hisham Muhammad committed
252
253
   end)

Hisham Muhammad's avatar
Hisham Muhammad committed
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
   running_it("performs search in lsof", function()
      send(curses.KEY_HOME)
      send("/")
      send("htop")
      send("\n")
      send("l")
      send(curses.KEY_F3)
      send("pipe")
      delay(1)
      local line = find_selected_y(3)
      local pipefd = check_string_at(1, line, "    3")
      send(ESC)
      assert.equal(check(pipefd))
   end)


   running_it("cycles through meter modes in the default meters", function()
Hisham Muhammad's avatar
Hisham Muhammad committed
271
      send("S")
Hisham Muhammad's avatar
Hisham Muhammad committed
272
273
274
275
276
277
278
      for _ = 1, 2 do
         send(curses.KEY_RIGHT)
         for _ = 1, 3 do
            send("\n", 4)
            send(curses.KEY_DOWN)
         end
      end
Hisham Muhammad's avatar
Hisham Muhammad committed
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
      send(ESC)
   end)

   running_it("show process of a user", function()
      send(curses.KEY_F5)
      send("u")
      send(curses.KEY_DOWN)
      delay(0.3)
      rt:update()
      local chosen = string_at(1, y_panelhdr + 2, 9)
      send("\n")
      send(curses.KEY_HOME)
      delay(0.3)
      rt:update()
      local shown = string_at(7, y_panelhdr + 1, 9)
      send("u")
      send("\n")
      send(curses.KEY_HOME)
      delay(0.3)
      rt:update()
      local inituser = string_at(7, y_panelhdr + 1, 9)
      send(curses.KEY_F5)
      assert.equal(shown, chosen)
      assert.equal(inituser, "root     ")
   end)

   running_it("performs failing search", function()
      send(curses.KEY_HOME)
      send("/")
      send("xxxxxxxxxx")
      delay(0.3)
      rt:update()
      local attr = rt:cellAttr(rt:rows() - 1, 30)
      assert.equal(attr, attrs.red_on_cyan)
      send("\n")
   end)

   running_it("cycles through search", function()
      send(curses.KEY_HOME)
      send("/")
      send("sh")
      local lastpid
      local pidpairs = {}
      for _ = 1, 3 do
         send(curses.KEY_F3)
         local line = find_selected_y()
         local pid = string_at(1, line, 5)
         if lastpid then
            pidpairs[#pidpairs + 1] = { lastpid, pid }
            lastpid = pid
         end
      end
      send(curses.KEY_HOME)
      for _, pair in pairs(pidpairs) do
         assert.not_equal(pair[1], pair[2])
      end
   end)
   
Hisham Muhammad's avatar
Hisham Muhammad committed
337
338
339
340
341
   running_it("visits each setup screen", function()
      send("S")
      send(curses.KEY_DOWN, 3)
      send(curses.KEY_F10)
   end)
Hisham Muhammad's avatar
Hisham Muhammad committed
342
   
343
344
345
346
347
348
349
350
   running_it("adds and removes PPID column", function()
      send("S")
      send(curses.KEY_DOWN, 3)
      send(curses.KEY_RIGHT, 2)
      send(curses.KEY_DOWN, 2)
      send("\n")
      send(curses.KEY_F10)
      delay(0.2)
Hisham Muhammad's avatar
Hisham Muhammad committed
351
      local ppid = check_string_at(2, y_panelhdr, "PPID")
352
353
354
355
356
357
      send("S")
      send(curses.KEY_DOWN, 3)
      send(curses.KEY_RIGHT, 1)
      send(curses.KEY_DC)
      send(curses.KEY_F10)
      delay(0.2)
Hisham Muhammad's avatar
Hisham Muhammad committed
358
      local not_ppid = check_string_at(2, y_panelhdr, "PPID")
359
360
361
      assert.equal(check(ppid))
      assert.not_equal(check(not_ppid))
   end)
Hisham Muhammad's avatar
Hisham Muhammad committed
362
   
Hisham Muhammad's avatar
Hisham Muhammad committed
363
364
365
366
367
   running_it("changes CPU affinity for a process", function()
      send("a")
      send(" \n")
      send(ESC)
   end)
Hisham Muhammad's avatar
Hisham Muhammad committed
368
369
370
371
   
   running_it("changes IO priority for a process", function()
      send("/")
      send("htop")
Hisham Muhammad's avatar
Hisham Muhammad committed
372
      send("\n")
Hisham Muhammad's avatar
Hisham Muhammad committed
373
374
      send("i")
      send(curses.KEY_END)
Hisham Muhammad's avatar
Hisham Muhammad committed
375
376
377
      send("\n")
      send(ESC)
   end)
Hisham Muhammad's avatar
Hisham Muhammad committed
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
   
   local meters = {
      { name = "clock", down = 0, string = "Time" },
      { name = "load", down = 2, string = "Load" },
      { name = "battery", down = 7, string = "Battery" },
      { name = "hostname", down = 8, string = "Hostname" },
   }
   
   for _, item in ipairs(meters) do
      running_it("adds and removes a "..item.name.." widget", function()
         send("S")
         send(curses.KEY_RIGHT, 3)
         send(curses.KEY_DOWN, item.down)
         if branch == "wip" then
            send("\n")
            send(curses.KEY_UP, 4)
            send("\n")
         else
            send(curses.KEY_F6)
            send(curses.KEY_LEFT)
            send(curses.KEY_DOWN, 4)
            send(curses.KEY_F7, 4)
         end
Hisham Muhammad's avatar
Hisham Muhammad committed
401
         send(curses.KEY_F4, 4) -- cycle through meter modes
Hisham Muhammad's avatar
Hisham Muhammad committed
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
         delay(0.15)
         rt:update()
         local with = check_string_at(x_metercol2, 2, item.string)
         send(curses.KEY_DC)
         delay(0.15)
         local without = check_string_at(x_metercol2, 2, item.string)
         send(curses.KEY_F10)
         assert.equal(check(with))
         assert.not_equal(check(without))
      end)
   end

   running_it("goes through themes", function()
      send(curses.KEY_F2)
      send(curses.KEY_DOWN, 2)
      send(curses.KEY_RIGHT)
Hisham Muhammad's avatar
Hisham Muhammad committed
418
      for _ = 1, 6 do
Hisham Muhammad's avatar
Hisham Muhammad committed
419
420
421
422
         send("\n")
         send(curses.KEY_DOWN)
      end
      send(curses.KEY_UP, 6)
Hisham Muhammad's avatar
Hisham Muhammad committed
423
      send("\n")
Hisham Muhammad's avatar
Hisham Muhammad committed
424
      send(curses.KEY_F10)
Hisham Muhammad's avatar
Hisham Muhammad committed
425
   end)
Hisham Muhammad's avatar
Hisham Muhammad committed
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
   
   local display_options = {
      { name = "tree view", down = 0 },
      { name = "shadow other user's process", down = 1 },
      { name = "hide kernel threads", down = 2 },
      { name = "hide userland threads", down = 3 },
      { name = "display threads in different color", down = 4 },
      { name = "show custom thread names", down = 5 },
      { name = "highlight basename", down = 6 },
      { name = "highlight large numbers", down = 7 },
      { name = "leave margin around header", down = 8 },
      { name = "use detailed CPU time", down = 9 },
      { name = "count from zero", down = 10 },
      { name = "update process names", down = 11 },
      { name = "guest time in CPU%", down = 12 },
   }
   
   for _, item in ipairs(display_options) do
      running_it("checks display option to "..item.name, function()
         for _ = 1, 2 do
            send("S")
            send(curses.KEY_DOWN)
            send(curses.KEY_RIGHT)
            send(curses.KEY_DOWN, item.down)
            send("\n")
            send(curses.KEY_F10)
            delay(0.1)
         end
      end)
   end
Hisham Muhammad's avatar
Hisham Muhammad committed
456
457
458
459
460
461
462
463
464
465
466
467
468
469

   running_it("shows detailed CPU with guest time", function()
      for _ = 1, 2 do
         send("S")
         send(curses.KEY_DOWN)
         send(curses.KEY_RIGHT)
         send(curses.KEY_DOWN, 9)
         send("\n")
         send(curses.KEY_DOWN, 3)
         send("\n")
         send(curses.KEY_F10)
         delay(0.1)
      end
   end)
Hisham Muhammad's avatar
Hisham Muhammad committed
470
   
Hisham Muhammad's avatar
Hisham Muhammad committed
471
   for i = 1, 62 do
Hisham Muhammad's avatar
Hisham Muhammad committed
472
473
474
475
476
477
478
479
480
481
      running_it("show column "..i, function()
         send("S")
         send(curses.KEY_END)
         send(curses.KEY_RIGHT, 2)
         send(curses.KEY_DOWN, i)
         send("\n")
         send(curses.KEY_F10)
      end)
   end
   
Hisham Muhammad's avatar
Hisham Muhammad committed
482
   it("finally quits", function()
Hisham Muhammad's avatar
Hisham Muhammad committed
483
      assert(not terminated())
Hisham Muhammad's avatar
Hisham Muhammad committed
484
      send("q")
Hisham Muhammad's avatar
Hisham Muhammad committed
485
      while not terminated() do
Hisham Muhammad's avatar
Hisham Muhammad committed
486
487
         unistd.sleep(1)
      end
Hisham Muhammad's avatar
Hisham Muhammad committed
488
      assert(terminated())
Hisham Muhammad's avatar
Hisham Muhammad committed
489
490
491
492
493
494
495
      if visual then
         curses.endwin()
      end
      os.execute("make lcov && xdg-open lcov/index.html")
   end)
end)