summaryrefslogtreecommitdiff
path: root/automated/android/apk-automation/linpack.py
blob: 517e8c93780ae6a69b518219e76c6116c2fcef92 (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
import time
from common import ApkTestRunner


class ApkRunnerImpl(ApkTestRunner):
    def __init__(self, config):
        self.config = config
        self.config['apk_file_name'] = "com.greenecomputing.linpack-1.apk"
        self.config['apk_package'] = "com.greenecomputing.linpack"
        self.config['activity'] = "com.greenecomputing.linpack/.Linpack"
        super(ApkRunnerImpl, self).__init__(self.config)

    def execute(self):
        # single core test.
        find_start_btn = False
        while not find_start_btn:
            time.sleep(2)
            self.dump_always()
            warn_msg = self.vc.findViewWithText(u'This app was built for an older version of Android and may not work properly. Try checking for updates, or contact the developer.')
            if warn_msg:
                self.logger.info("Older version warning popped up")
                warning_ok_btn = self.vc.findViewWithTextOrRaise(u'OK')
                warning_ok_btn.touch()
            else:
                start_single_button = self.vc.findViewByIdOrRaise("com.greenecomputing.linpack:id/btnsingle")
                start_single_button.touch()
                find_start_btn = True

        # using start_single_button to check if the test finished
        test_finished = False
        while not test_finished:
            time.sleep(2)
            self.dump_always()
            if self.vc.findViewById("com.greenecomputing.linpack:id/btnsingle"):
                test_finished = True

        mflops_single_score = self.vc.findViewByIdOrRaise("com.greenecomputing.linpack:id/txtmflops_result")
        time_single_score = self.vc.findViewByIdOrRaise("com.greenecomputing.linpack:id/txttime_result")
        self.report_result('Linpack-MFLOPSSingleScore', 'pass', mflops_single_score.getText(), 'MFLOPS')
        self.report_result('Linpack-TimeSingleScore', 'pass', time_single_score.getText(), 'seconds')

        # Multi core test.
        self.dump_always()
        start_multi_button = self.vc.findViewByIdOrRaise("com.greenecomputing.linpack:id/btncalculate")
        start_multi_button.touch()

        # using start_single_button to check if the test finished
        test_finished = False
        while not test_finished:
            time.sleep(2)
            self.dump_always()
            if self.vc.findViewById("com.greenecomputing.linpack:id/btnsingle"):
                test_finished = True

        mflops_multi_score = self.vc.findViewByIdOrRaise("com.greenecomputing.linpack:id/txtmflops_result")
        time_multi_score = self.vc.findViewByIdOrRaise("com.greenecomputing.linpack:id/txttime_result")
        self.report_result('Linpack-MFLOPSMultiScore', 'pass', mflops_multi_score.getText(), 'MFLOPS')
        self.report_result('Linpack-TimeMultiScore', 'pass', time_multi_score.getText(), 'seconds')

    def parseResult(self):
        pass