blob: df493d2582d15d6230849b2ab124bd8a8e7604df (
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
46
|
import sh
import unittest
import time
import re
class Qrtc(unittest.TestCase):
params = None
__rtc = None
__resultlist = None # resultlist is a python list of python dictionaries
def __init__(self, testname, testfunc, varlist):
self.params = varlist
super(Qrtc, self).__init__(testfunc)
if "rtc" in varlist:
self.__rtc = varlist["rtc"]
else:
raise Exception('rtc param inside Qrtc must be defined')
self._testMethodDoc = testname
self.__resultlist = []
def execute(self):
# get time from RTC peripheral
p = sh.hwclock("-f", self.__rtc)
if p.exit_code == 0:
time1 = re.search("([01]?[0-9]{1}|2[0-3]{1})[:][0-5]{1}[0-9]{1}[:][0-5]{1}[0-9]{1}",
p.stdout.decode('ascii'))
time.sleep(1)
# get time from RTC another time
p = sh.hwclock("-f", self.__rtc)
if p.exit_code == 0:
time2 = re.search("([01]?[0-9]{1}|2[0-3]{1})[:][0-5]{1}[0-9]{1}[:][0-5]{1}[0-9]{1}",
p.stdout.decode('ascii'))
# check if the seconds of both times are different
if time1 == time2:
self.fail("failed: RTC is not running")
else:
self.fail("failed: couldn't execute hwclock command for the second time")
else:
self.fail("failed: couldn't execute hwclock command")
def getresults(self):
return self.__resultlist
def gettextresult(self):
return ""
|