コード例 #1
0
def android_all_package_list():
    msg = filter(
        None,
        WindowsOsUtil.get_shell_output(['adb', 'shell'],
                                       'pm list packages -3 -f').split('\r\n'))
    package_list = []
    for ms in msg:
        ms = android_aapt_get_app_info(
            ms[ms.index('/'):ms.rindex('=')]).replace('\r\n', '').split('\'')
        if ms.count('package: name=') == 1:
            pkg = ms[ms.index('package: name=') + 1]
        else:
            pkg = ''
        if ms.count('application-label-zh-CN:') == 1:
            name = ms[ms.index('application-label-zh-CN:') + 1]
        elif ms.count('application-label:') == 1:
            name = ms[ms.index('application-label:') + 1]
        elif ms.count('application: label=') == 1:
            name = ms[ms.index('application: label=') + 1]
        else:
            name = 'no label name'
        if ms.count('launchable-activity: name=') == 1:
            launch = ms[ms.index('launchable-activity: name=') + 1]
        else:
            launch = android_search_app_activity(pkg)
        package_list.append(','.join((pkg, name, launch)))

    write_string_to_file(
        GlobalParam.get_android_apk_list().replace(
            'android_apk_list',
            android_product_info() + '_android_apk_list'), package_list,
        'utf8')
    return package_list
コード例 #2
0
def android_search_app_activity(app_package):
    cmd = ' '.join(('cmd package resolve-activity', app_package, '|grep name'))
    msg = (WindowsOsUtil.get_shell_output(['adb', 'shell'], cmd))
    if msg == '':
        msg = 'no activity info'
    else:
        msg = msg.replace('\r\n', '').split('name=')[1].strip()
    return msg
コード例 #3
0
def android_check_app_active(app_package):
    msg = WindowsOsUtil.get_shell_output(
        ['adb', 'shell'],
        'dumpsys window windows | grep -e \'Window #\'').split('\r\n')
    for m in msg:
        if m.__contains__(app_package):
            msg = StringUtils.split_string_by_regex('{|}',
                                                    m.strip())[1].split(' ')[2]
            return msg.split('/')[0], msg.split('/')[1]
    return 'not_find', 'not_find'
コード例 #4
0
def android_current_opened_app_info():
    adb_dumpsys_window_msg = WindowsOsUtil.get_shell_output(
        ['adb', 'shell'], 'dumpsys window windows')
    msg_split_one = ''
    msg_split_two = ''
    if adb_dumpsys_window_msg.__contains__('mCurrentFocus'):
        msg = WindowsOsUtil.get_shell_output(
            ['adb', 'shell'],
            'dumpsys window windows | grep -E \'mCurrentFocus|mFocusedApp\'')
        msg = StringUtils.split_string_by_regex('{|}', msg)[1].split(' ')[2]
        msg_split_one = msg.split('/')[0]
        msg_split_two = msg.split('/')[1]
    elif adb_dumpsys_window_msg.__contains__('mSurface'):
        msg = WindowsOsUtil.get_shell_output(
            ['adb', 'shell'],
            'dumpsys window windows | grep -E \'mSurface=Surface\'')
        msg = re.findall(
            'mSurface=Surface\\(name=' + '(.+?)' + '/' + '(.+?)' + '\\)/@',
            msg)
        msg_split_one = msg.__getitem__(0)[0]
        msg_split_two = msg.__getitem__(0)[1]

    return msg_split_one, msg_split_two
コード例 #5
0
def android_home_button():
    WindowsOsUtil.get_shell_output([
        'adb', 'shell'
    ], 'am start -W -c android.intent.category.HOME -a android.intent.action.MAIN'
                                   )
コード例 #6
0
def android_backup_app_apk(app_package, backup_path):
    cmd = ''.join(('pm path ', app_package))
    msg = WindowsOsUtil.get_shell_output(['adb', 'shell'], cmd)
    cmd = ''.join(('adb pull ', msg.replace('package:',
                                            '').strip(), ' ', backup_path))
    WindowsOsUtil.get_command_output(cmd)
コード例 #7
0
def android_find_app_user_id(app_package):
    cmd = ''.join(('dumpsys package ', app_package, ' | grep userId'))
    msg = WindowsOsUtil.get_shell_output(['adb', 'shell'], cmd)
    return msg
コード例 #8
0
def android_check_screen_is_locked():
    cmd = 'dumpsys window | grep mDreamingLockscreen'
    msg = (WindowsOsUtil.get_shell_output(['adb', 'shell'], cmd))
    return msg.__contains__('mDreamingLockscreen=true')
コード例 #9
0
def android_aapt_get_app_info(app_path):
    cmd = ' '.join(
        ('/data/local/tmp/aapt-arm-pie d badging', app_path, '|grep -E',
         '\'package|launchable-activity|application-label\''))
    msg = (WindowsOsUtil.get_shell_output(['adb', 'shell'], cmd))
    return msg
コード例 #10
0
 def test_get_shell_output(self):
     self.assertEqual('123', WindowsOsUtil.get_shell_output(['powershell'], self.command))
コード例 #11
0
 def test_get_shell_output(self):
     assert '123' == WindowsOsUtil.get_shell_output(['powershell'],
                                                    self.command)