summaryrefslogtreecommitdiffhomepage
path: root/test/test_ruby_hooks.py
blob: dd9e0fca6a7127f13224d8f760ea7b3f438edd07 (plain) (blame)
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
from unit.applications.lang.ruby import ApplicationRuby
from unit.option import option
from unit.utils import waitforglob
from packaging import version

prerequisites = {
    'modules': {'ruby': lambda v: version.parse(v) >= version.parse('3.0')}
}

client = ApplicationRuby()


def wait_cookie(pattern, count):
    return waitforglob(f'{option.temp_dir}/ruby/hooks/cookie_{pattern}', count)


def test_ruby_hooks_eval():
    processes = 2

    client.load('hooks', processes=processes, hooks='eval.rb')

    hooked = wait_cookie('eval.*', processes)

    assert hooked, 'hooks evaluated'


def test_ruby_hooks_on_worker_boot():
    processes = 2

    client.load('hooks', processes=processes, hooks='on_worker_boot.rb')

    hooked = wait_cookie('worker_boot.*', processes)

    assert hooked, 'on_worker_boot called'


def test_ruby_hooks_on_worker_shutdown():
    processes = 2

    client.load('hooks', processes=processes, hooks='on_worker_shutdown.rb')

    assert client.get()['status'] == 200, 'app response'

    client.load('empty')

    hooked = wait_cookie('worker_shutdown.*', processes)

    assert hooked, 'on_worker_shutdown called'


def test_ruby_hooks_on_thread_boot():
    processes = 1
    threads = 2

    client.load(
        'hooks',
        processes=processes,
        threads=threads,
        hooks='on_thread_boot.rb',
    )

    hooked = wait_cookie('thread_boot.*', processes * threads)

    assert hooked, 'on_thread_boot called'


def test_ruby_hooks_on_thread_shutdown():
    processes = 1
    threads = 2

    client.load(
        'hooks',
        processes=processes,
        threads=threads,
        hooks='on_thread_shutdown.rb',
    )

    assert client.get()['status'] == 200, 'app response'

    client.load('empty')

    hooked = wait_cookie('thread_shutdown.*', processes * threads)

    assert hooked, 'on_thread_shutdown called'


def test_ruby_hooks_multiple():
    processes = 1
    threads = 1

    client.load(
        'hooks',
        processes=processes,
        threads=threads,
        hooks='multiple.rb',
    )

    hooked = wait_cookie('worker_boot.*', processes)
    assert hooked, 'on_worker_boot called'

    hooked = wait_cookie('thread_boot.*', threads)
    assert hooked, 'on_thread_boot called'