Exemplo n.º 1
0
    def Push(self, local, remote, **kwargs):
        """Pushes an object from the host to the gce instance.

    Args:
      local: Path on the host filesystem.
      remote: Path on the instance filesystem.
    """
        adb_wrapper.VerifyLocalFileExists(_SSH_KEY_FILE)
        adb_wrapper.VerifyLocalFileExists(local)
        if os.path.isdir(local):
            self.Shell('mkdir -p %s' % cmd_helper.SingleQuote(remote))

            # When the object to be pushed is a directory, adb merges the source dir
            # with the destination dir. So if local is a dir, just scp its contents.
            for f in os.listdir(local):
                self._PushObject(os.path.join(local, f),
                                 os.path.join(remote, f))
                self.Shell('chmod 777 %s' %
                           cmd_helper.SingleQuote(os.path.join(remote, f)))
        else:
            parent_dir = remote[0:remote.rfind('/')]
            if parent_dir:
                self.Shell('mkdir -p %s' % cmd_helper.SingleQuote(parent_dir))
            self._PushObject(local, remote)
            self.Shell('chmod 777 %s' % cmd_helper.SingleQuote(remote))
Exemplo n.º 2
0
    def Install(self,
                apk_path,
                forward_lock=False,
                reinstall=False,
                sd_card=False,
                **kwargs):
        """Installs an apk on the gce instance

    Args:
      apk_path: Host path to the APK file.
      forward_lock: (optional) If set forward-locks the app.
      reinstall: (optional) If set reinstalls the app, keeping its data.
      sd_card: (optional) If set installs on the SD card.
    """
        adb_wrapper.VerifyLocalFileExists(_SSH_KEY_FILE)
        adb_wrapper.VerifyLocalFileExists(apk_path)
        cmd = ['install']
        if forward_lock:
            cmd.append('-l')
        if reinstall:
            cmd.append('-r')
        if sd_card:
            cmd.append('-s')
        self.Push(apk_path, '/data/local/tmp/tmp.apk')
        cmd = ['pm'] + cmd
        cmd.append('/data/local/tmp/tmp.apk')
        output = self.Shell(' '.join(cmd))
        self.Shell('rm /data/local/tmp/tmp.apk')
        if 'Success' not in output:
            raise device_errors.AdbCommandFailedError(
                cmd, output, device_serial=self._device_serial)
Exemplo n.º 3
0
    def Pull(self, remote, local, **kwargs):
        """Pulls a file from the gce instance to the host.

    Args:
      remote: Path on the instance filesystem.
      local: Path on the host filesystem.
    """
        cmd = [
            'scp',
            '-p',
            '-r',
            '-o',
            'UserKnownHostsFile=/dev/null',
            '-o',
            'StrictHostKeyChecking=no',
            'root@%s:%s' % (self._instance_ip, remote),
            local,
        ]
        status, _ = cmd_helper.GetCmdStatusAndOutput(cmd)
        if status:
            raise device_errors.AdbCommandFailedError(
                cmd,
                'File not reachable on host: %s' % local,
                device_serial=str(self))

        try:
            adb_wrapper.VerifyLocalFileExists(local)
        except (subprocess.CalledProcessError, IOError):
            logging.exception(
                'Error when pulling files from android instance.')
            raise device_errors.AdbCommandFailedError(
                cmd,
                'File not reachable on host: %s' % local,
                device_serial=str(self))