summaryrefslogtreecommitdiff
path: root/automated/android/apk-automation/quadrantpro.py
blob: 8ca7b0d229fa831310b41b3c681bcde48134981d (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from common import ApkTestRunner
from com.dtmilano.android.viewclient import ViewNotFoundException


class ApkRunnerImpl(ApkTestRunner):
    def __init__(self, config):
        self.config = config
        self.config['apk_file_name'] = 'com.aurorasoftworks.quadrant.ui.professional-1.apk'
        self.config['apk_package'] = 'com.aurorasoftworks.quadrant.ui.professional'
        self.config['activity'] = 'com.aurorasoftworks.quadrant.ui.professional/.QuadrantProfessionalLauncherActivity'
        super(ApkRunnerImpl, self).__init__(self.config)

    def setUp(self):
        self.call_adb('shell setenforce 0')
        super(ApkRunnerImpl, self).setUp()

    def tearDown(self):
        self.call_adb('shell setenforce 1')
        super(ApkRunnerImpl, self).tearDown()

    def execute(self):
        self.dump_always()
        view_license_btn = self.vc.findViewWithText("View license")
        if view_license_btn:
            ok_button = self.vc.findViewWithTextOrRaise("OK")
            ok_button.touch()

        self.dump_always()
        run_full_item = self.vc.findViewWithTextOrRaise(u'Run full benchmark')
        run_full_item.touch()

        # Hack workaround to kill the first time start up
        # then it will work from 2nd time
        self.call_adb("shell am force-stop %s" % self.config['apk_package'])
        self.call_adb("shell am start -W -S %s" % self.config['activity'])
        self.dump_always()
        view_license_btn = self.vc.findViewWithText("View license")
        if view_license_btn:
            ok_button = self.vc.findViewWithTextOrRaise("OK")
            ok_button.touch()

        self.dump_always()
        run_full_item = self.vc.findViewWithTextOrRaise(u'Run full benchmark')
        run_full_item.touch()

        finished = False
        while not finished:
            try:
                self.dump_always()
                self.vc.findViewByIdOrRaise("com.aurorasoftworks.quadrant.ui.professional:id/chart")
                finished = True
                self.logger.info('Benchmark finished')
            except ViewNotFoundException:
                pass
            except RuntimeError:
                pass
            except ValueError:
                pass

    def parseResult(self):
        raw_output_file = "%s/logcat-quadrandpro-itr%s.log" % (self.config['output'], self.config['itr'])
        self.call_adb('logcat -d -v brief > %s' % raw_output_file)

        with open(raw_output_file) as logfile:
            for line in logfile:
                if 'aggregate score is' in line:
                    tc_id = line.split()[3].replace('_', '-')
                    measurement = line.split()[-1]
                    self.report_result('quadrandpro-%s' % tc_id, 'pass', measurement, 'points')