summaryrefslogtreecommitdiff
path: root/test-cli/test/tests/qnand.py
blob: 7ff7cb239aeaaf1ea4bc323ce07dbeaebfc76c82 (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
import unittest
import sh


class Qnand(unittest.TestCase):
    params = None
    __device = "10M"

    # varlist: device
    def __init__(self, testname, testfunc, varlist):
        self.params = varlist
        super(Qnand, self).__init__(testfunc)
        if "device" in varlist:
            self.__device = varlist["device"]
        else:
            raise Exception('device param inside Qnand must be defined')
        self._testMethodDoc = testname

    def execute(self):
        try:
            p = sh.nandtest("-m", self.__device)
            # save result
            with open('/tmp/nand-nandtest.txt', 'w') as outfile:
                n = outfile.write(p.stdout.decode('ascii'))

        except sh.ErrorReturnCode as e:
            self.fail("failed: could not complete nandtest command")

    def getresults(self):
        # resultlist is a python list of python dictionaries
        resultlist = [
            {
                "desc": "nandtest output",
                "data": "/tmp/nand-nandtest.txt",
                "type": "file"
            }
        ]
        return resultlist