summaryrefslogtreecommitdiffstats
path: root/lib/oeqa/runtime/cases/thermald.py
blob: b0efecd8c56a2e0b02cb355a9ac553aa0fdfcf15 (plain)
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
from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.decorator.depends import OETestDepends
from oeqa.runtime.decorator.package import OEHasPackage
import threading
import time
import re

class ThermaldTest(OERuntimeTestCase):
    def get_thermal_zone_with_target_type(self, target_type):
        i = 0
        while True:
            status, output = self.target.run('cat /sys/class/thermal/thermal_zone%s/type' % i)
            if status:
                return -1
            if output == target_type:
                return i
            i = i + 1

    def run_thermald_emulation_to_exceed_setpoint_then_end_thermald_process(self, run_args):
        time.sleep(2)
        self.target.run('echo 106000 > /sys/class/thermal/thermal_zone%s/emul_temp' % run_args)
        time.sleep(2)
        __, output = self.target.run('pidof thermald')
        self.target.run('kill -9 %s' % output)

    def test_thermald_emulation_mode(self):
        # Thermald test depend on thermal emulation, where CONFIG_THERMAL_EMULATION=y was required
        # To enable thermal emulation, refer to https://github.com/intel/thermal_daemon/blob/master/test/readme_test.txt
        (status, output) = self.target.run('gzip -dc /proc/config.gz | grep CONFIG_THERMAL_EMULATION=y')
        self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))

    @OEHasPackage(['thermald'])
    @OETestDepends(['thermald.ThermaldTest.test_thermald_emulation_mode'])
    def test_thermald_can_track_thermal_exceed_setpoint(self):
        x86_thermal_zone_index = self.get_thermal_zone_with_target_type('x86_pkg_temp')
        if x86_thermal_zone_index < 0:
            self.skipTest('Could not get the thermal zone index for target type (%s)' % 'x86_pkg_temp')
        td_thread = threading.Thread(target=self.run_thermald_emulation_to_exceed_setpoint_then_end_thermald_process,
                                     args=(x86_thermal_zone_index,))
        td_thread.start()
        status, output = self.target.run('thermald --no-daemon --loglevel=info')
        regex_search = ".*thd_cdev_set_state.*106000"
        regex_comp = re.compile(regex_search)
        m = regex_comp.search(output)
        self.assertTrue(m, msg='status and output: %s and %s' % (status, output))