2013-06-23 22:14:59 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Please read the following documents before working on tests:
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
2013-06-23 22:14:59 +02:00
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
2013-06-23 22:14:59 +02:00
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/ipc.html
|
2013-06-23 22:14:59 +02:00
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
|
|
|
#
|
2017-09-14 12:30:42 +02:00
|
|
|
use i3test;
|
2013-06-23 22:14:59 +02:00
|
|
|
use IPC::Run qw(run);
|
|
|
|
use File::Temp;
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# 1: test that shared memory logging does not work yet
|
|
|
|
################################################################################
|
|
|
|
|
2017-09-14 12:30:42 +02:00
|
|
|
# NB: launch_with_config (called in i3test) sets --shmlog-size=0 because the
|
|
|
|
# logfile gets redirected via stdout redirection anyways.
|
2013-06-23 22:14:59 +02:00
|
|
|
|
|
|
|
my $stdout;
|
|
|
|
my $stderr;
|
2016-10-10 21:14:59 +02:00
|
|
|
run [ 'i3-dump-log' ],
|
2013-06-23 22:14:59 +02:00
|
|
|
'>', \$stdout,
|
|
|
|
'2>', \$stderr;
|
|
|
|
|
2019-02-12 09:22:26 +01:00
|
|
|
like($stderr, qr#^i3-dump-log: i3 is running, but SHM logging is not enabled\.#,
|
2013-06-23 22:14:59 +02:00
|
|
|
'shm logging not enabled');
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# 2: enable shared memory logging and verify new content shows up
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd 'shmlog on';
|
|
|
|
|
|
|
|
my $random_nop = mktemp('nop.XXXXXX');
|
|
|
|
cmd "nop $random_nop";
|
|
|
|
|
2016-10-10 21:14:59 +02:00
|
|
|
run [ 'i3-dump-log' ],
|
2013-06-23 22:14:59 +02:00
|
|
|
'>', \$stdout,
|
|
|
|
'2>', \$stderr;
|
|
|
|
|
|
|
|
like($stdout, qr#$random_nop#, 'random nop found in shm log');
|
|
|
|
like($stderr, qr#^$#, 'stderr empty');
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# 3: change size of the shared memory log buffer and verify old content is gone
|
|
|
|
################################################################################
|
|
|
|
|
2017-11-26 17:26:40 +01:00
|
|
|
cmd 'shmlog ' . (1 * 1024 * 1024);
|
2013-06-23 22:14:59 +02:00
|
|
|
|
2016-10-10 21:14:59 +02:00
|
|
|
run [ 'i3-dump-log' ],
|
2013-06-23 22:14:59 +02:00
|
|
|
'>', \$stdout,
|
|
|
|
'2>', \$stderr;
|
|
|
|
|
|
|
|
unlike($stdout, qr#$random_nop#, 'random nop not found in shm log');
|
|
|
|
like($stderr, qr#^$#, 'stderr empty');
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# 4: disable logging and verify it no longer works
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd 'shmlog off';
|
|
|
|
|
2016-10-10 21:14:59 +02:00
|
|
|
run [ 'i3-dump-log' ],
|
2013-06-23 22:14:59 +02:00
|
|
|
'>', \$stdout,
|
|
|
|
'2>', \$stderr;
|
|
|
|
|
2019-02-12 09:22:26 +01:00
|
|
|
like($stderr, qr#^i3-dump-log: i3 is running, but SHM logging is not enabled\.#,
|
2013-06-23 22:14:59 +02:00
|
|
|
'shm logging not enabled');
|
|
|
|
|
|
|
|
done_testing;
|