File: 11_containers.t

package info (click to toggle)
libmojo-ioloop-readwriteprocess-perl 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 540 kB
  • sloc: perl: 4,655; sh: 101; makefile: 2
file content (247 lines) | stat: -rw-r--r-- 6,758 bytes parent folder | download
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/usr/bin/perl

use warnings;
use strict;
use Test::More;
use POSIX;
use FindBin;
use Mojo::File qw(tempfile tempdir path);
use lib ("$FindBin::Bin/lib", "../lib", "lib");

use Mojo::IOLoop::ReadWriteProcess              qw(process);
use Mojo::IOLoop::ReadWriteProcess::Test::Utils qw(attempt);
use Mojo::IOLoop::ReadWriteProcess::CGroup      qw(cgroupv2 cgroupv1);
use Mojo::IOLoop::ReadWriteProcess::Container   qw(container);

eval {
  die "OS Unsupported: " . $^O if ($^O !~ m#(?i)(Linux)#);
  my $try_cgroup
    = cgroupv1(controller => 'pids', name => 'group')->child('test')->create;
  die unless $try_cgroup->exists();
};

plan skip_all =>
  "This test works only if you have cgroups permissions or a supported OS"
  if $@;

subtest belongs => sub {
  cgroupv1(controller => 'pids', name => 'group')->create;
  my $cgroup = cgroupv1(controller => 'pids', name => 'group')->child('test');
  isa_ok $cgroup, 'Mojo::IOLoop::ReadWriteProcess::CGroup::v1';

  my $p = process(sub { sleep 400 });
  $p->start();

  $cgroup->add_process($p->pid);

  is $cgroup->process_list, $p->pid . "\n",
    "procs interface contains the added pids"
    or diag explain $cgroup->process_list;

  ok $cgroup->contains_process($p->pid), "Parent contains pid " . $p->pid;

  $p->stop();

  is $p->is_running, 0;

  attempt {
    attempts  => 20,
    condition => sub { $cgroup->process_list eq '' },
    cb        => sub { sleep 1; }
  };

  is $cgroup->process_list, '';
  $cgroup->remove();

  ok !$cgroup->exists();

};

subtest children => sub {
  my $cgroup = cgroupv1(controller => 'pids', name => 'group')->child('test');
  isa_ok $cgroup, 'Mojo::IOLoop::ReadWriteProcess::CGroup::v1';
  is $cgroup->exists(), 1, 'Cgroup exists';

  my $p = process(
    sub {
      process(sub { sleep 400 })->start;
      sleep 400;
    });
  $p->start();

  $cgroup->add_process($p->pid);

  is $cgroup->process_list, $p->pid . "\n",
    "procs interface contains the added pids"
    or diag explain $cgroup->process_list;

  ok $cgroup->contains_process($p->pid), "Parent contains pid " . $p->pid;

  attempt {
    attempts  => 20,
    condition => sub { $cgroup->processes->size == 2 },
    cb        => sub { sleep 1; }
  };

  $p->stop();

  is $p->is_running, 0;

  is $cgroup->pid->current, "1\n";
  process(process_id => $_, blocking_stop => 1)->stop()
    for $cgroup->processes->each;
  is $cgroup->process_list, '' or diag explain $cgroup->process_list;
  $cgroup->remove();

  ok !$cgroup->exists();

};

subtest container_pid_isolation => sub {
  plan skip_all => "This test works only if you are root" if ($< != "0");

  if ($ENV{MOJO_PROCESS_DEBUG} eq "1") {
    local $ENV{MOJO_PROCESS_DEBUG}
      = 0;    # It will change our container output otherwise :(

    delete $INC{'Mojo/IOLoop/ReadWriteProcess.pm'};
    eval "no warnings; require Mojo::IOLoop::ReadWriteProcess";    ## no critic
  }

  my $c = container(
    pid_isolation => 1,
    subreaper     => 1,
    group         => "group",
    name          => "test",
    process       => process(
      sub {
        print "$$\n";
        process(sub { warn "Hey"; sleep 400; warn "Hey"; })->start;
        process(sub { warn "Hey"; sleep 400; warn "Hey"; })->start;
        process(
          sub {
            process(
              sub {
                process(sub { warn "Hey"; sleep 400; warn "Hey"; })->start;
                warn "Hey";
                sleep 400;
                warn "Hey";
              })->start;
            warn "Hey";
            sleep 400;
            warn "Hey";
          })->start;
        sleep 400;

      }
    )->separate_err(0));
  $c->start();

  my @pids;
  my $fired;
  $c->session->on(register  => sub { push(@pids, shift) });
  $c->process->on(collected => sub { $fired++ });
  $c->once(stop => sub { $fired++ });

  my $p       = $c->process();
  my $cgroups = $c->cgroups;
  is $cgroups->first->process_list, $p->pid . "\n",
    "procs interface contains the added pids"
    or diag explain $cgroups->first->process_list;

  ok $cgroups->first->contains_process($p->pid),
    "Parent contains pid " . $p->pid;

  my $virtual_pid;
  while (defined(my $line = $c->process->getline())) {
    $virtual_pid = $line;
  }
  chomp($virtual_pid);

  attempt {
    attempts  => 20,
    condition => sub { $cgroups->first->processes->size == 7 },
    cb        => sub { sleep 1; }
  };

  $c->stop();
  is $cgroups->first->process_list, ''
    or die diag explain $cgroups->first->process_list;
  $cgroups->first->remove();
  is scalar(@pids), 6 or diag explain \@pids;
  is $virtual_pid, '1', "Running process was PID 1 inside container";
  ok !$cgroups->first->exists();
  is $fired, 2;
};

subtest container_no_pid_isolation => sub {
  if ($ENV{MOJO_PROCESS_DEBUG} eq "1") {
    local $ENV{MOJO_PROCESS_DEBUG}
      = 0;    # It will change our container output otherwise :(
    delete $INC{'Mojo/IOLoop/ReadWriteProcess.pm'};
    eval "no warnings; require Mojo::IOLoop::ReadWriteProcess";    ## no critic
  }
  my $c = container(
    pid_isolation => 0,
    subreaper     => 1,
    group         => "group",
    name          => "test",
    process       => process(
      sub {
        print "$$\n";
        process(sub { warn "Hey"; sleep 400; warn "Hey"; })->start;
        process(sub { warn "Hey"; sleep 400; warn "Hey"; })->start;
        process(
          sub {
            process(
              sub {
                process(sub { warn "Hey"; sleep 400; warn "Hey"; })->start;
                warn "Hey";
                sleep 400;
                warn "Hey";
              })->start;
            warn "Hey";
            sleep 400;
            warn "Hey";
          })->start;
        sleep 400;

      }
    )->separate_err(0));
  $c->start();

  my @pids;
  $c->session->on(register => sub { push(@pids, shift) });

  my $p      = $c->process();
  my $cgroup = $c->cgroups->first;
  is $cgroup->process_list, $p->pid . "\n",
    "procs interface contains the added pids"
    or diag explain $cgroup->process_list;

  ok $cgroup->contains_process($p->pid), "Parent contains pid " . $p->pid;

  my $virtual_pid;
  while (defined(my $line = $c->process->getline())) {
    $virtual_pid = $line;
  }
  chomp($virtual_pid);

  attempt {
    attempts  => 20,
    condition => sub { $cgroup->processes->size == 6 },
    cb        => sub { sleep 1; }
  };
  is $cgroup->processes->size, 6 or diag explain $cgroup->process_list;

  $c->stop();
  is $cgroup->processes->size, 0;
  is $cgroup->process_list,    '' or die diag explain $cgroup->process_list;
  $cgroup->remove();
  is scalar(@pids), 5 or diag explain \@pids;
  isnt $virtual_pid, '1',
    "Running process was not PID 1 inside container, but $virtual_pid";
  ok !$cgroup->exists();
};

done_testing;