35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
"""
|
|
Basic tests for the cpu_freq module
|
|
"""
|
|
|
|
import os
|
|
|
|
from i3pystatus import cpu_freq
|
|
|
|
|
|
def cpu_freq_test(tfpath, tformat, expected):
|
|
cf = cpu_freq.CpuFreq(file=os.path.join(os.path.dirname(__file__), tfpath), format=tformat)
|
|
cf.run()
|
|
assert cf.output["full_text"] == expected
|
|
|
|
|
|
def test_basic():
|
|
"""
|
|
Tests against the pre-prepared file
|
|
"""
|
|
cases = [
|
|
('cpufreq01', '1240.382', '1236.828', '1203.007', '1264.859', '1236.269', '1.24', '1.24', '1.20', '1.26',
|
|
'1.24'),
|
|
]
|
|
for path, core0, core1, core2, core3, avg, core0g, core1g, core2g, core3g, avgg in cases:
|
|
cpu_freq_test(path, "{avg}", avg)
|
|
cpu_freq_test(path, "{core0}", core0)
|
|
cpu_freq_test(path, "{core1}", core1)
|
|
cpu_freq_test(path, "{core2}", core2)
|
|
cpu_freq_test(path, "{core3}", core3)
|
|
cpu_freq_test(path, "{core0g}", core0g)
|
|
cpu_freq_test(path, "{core1g}", core1g)
|
|
cpu_freq_test(path, "{core2g}", core2g)
|
|
cpu_freq_test(path, "{core3g}", core3g)
|
|
cpu_freq_test(path, "{avgg}", avgg)
|