Ejemplo n.º 1
0
 def setUp(self):
   # We want a clean session_manager instance for every run,
   # so restart ui now.
   cros_ui.stop(allow_fail=True)
   cryptohome.remove_all_vaults()
   cros_ui.start(wait_for_login_prompt=False)
   pyauto.PyUITest.setUp(self)
Ejemplo n.º 2
0
 def setUp(self):
   # We want a clean session_manager instance for every run,
   # so restart ui now.
   cros_ui.stop(allow_fail=True)
   cryptohome.remove_all_vaults()
   cros_ui.start(wait_for_login_prompt=False)
   pyauto.PyUITest.setUp(self)
  def _WriteDevicePolicyWithSessionManagerStopped(self, policy):
    """Writes the device policy blob while the Session Manager is stopped."""
    assert pyauto.PyUITest.IsChromeOS()
    logging.debug('Stopping session manager')
    cros_ui.stop()
    logging.debug('Writing device policy cache')
    self._WriteDevicePolicy(policy)

    # Ugly hack: session manager won't spawn chrome if this file exists. That's
    # usually a good thing (to keep the automation channel open), but in this
    # case we really want to restart chrome. PyUITest.setUp() will be called
    # after session manager and chrome have restarted, and will setup the
    # automation channel.
    restore_magic_file = False
    if os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE):
      logging.debug('DISABLE_BROWSER_RESTART_MAGIC_FILE found. '
                    'Removing temporarily for the next restart.')
      restore_magic_file = True
      os.remove(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
      assert not os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)

    logging.debug('Starting session manager again')
    cros_ui.start()

    # cros_ui.start() waits for the login prompt to be visible, so chrome has
    # already started once it returns.
    if restore_magic_file:
      open(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE, 'w').close()
      assert os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
Ejemplo n.º 4
0
  def _WriteDevicePolicyWithSessionManagerStopped(self):
    """Writes the device policy blob while the session manager is stopped.

    Updates the files holding the device policy blob and the public key need to
    verify its signature.
    """
    assert self.IsChromeOS()
    logging.debug('Stopping session manager')
    cros_ui.stop(allow_fail=True)
    logging.debug('Writing device policy blob')
    self._WriteFile(constants.SIGNED_POLICY_FILE, self._device_policy_blob)
    self._WriteFile(constants.OWNER_KEY_FILE, self._public_key)

    # Ugly hack: session manager will not spawn Chrome if this file exists. That
    # is usually a good thing (to keep the automation channel open), but in this
    # case we really want to restart chrome. PyUITest.setUp() will be called
    # after session manager and chrome have restarted, and will setup the
    # automation channel.
    restore_magic_file = False
    if os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE):
      logging.debug('DISABLE_BROWSER_RESTART_MAGIC_FILE found. '
                    'Removing temporarily for the next restart.')
      restore_magic_file = True
      os.remove(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
      assert not os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)

    logging.debug('Starting session manager again')
    cros_ui.start()

    # cros_ui.start() waits for the login prompt to be visible, so Chrome has
    # already started once it returns.
    if restore_magic_file:
      open(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE, 'w').close()
      assert os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
Ejemplo n.º 5
0
    def _WriteDevicePolicyWithSessionManagerStopped(self):
        """Writes the device policy blob while the session manager is stopped.

    Updates the files holding the device policy blob and the public key need to
    verify its signature.
    """
        assert self.IsChromeOS()
        logging.debug('Stopping session manager')
        cros_ui.stop(allow_fail=True)
        logging.debug('Writing device policy blob')
        self._WriteFile(constants.SIGNED_POLICY_FILE, self._device_policy_blob)
        self._WriteFile(constants.OWNER_KEY_FILE, self._public_key)

        # Ugly hack: session manager will not spawn Chrome if this file exists. That
        # is usually a good thing (to keep the automation channel open), but in this
        # case we really want to restart chrome. PyUITest.setUp() will be called
        # after session manager and chrome have restarted, and will setup the
        # automation channel.
        restore_magic_file = False
        if os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE):
            logging.debug('DISABLE_BROWSER_RESTART_MAGIC_FILE found. '
                          'Removing temporarily for the next restart.')
            restore_magic_file = True
            os.remove(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
            assert not os.path.exists(
                constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)

        logging.debug('Starting session manager again')
        cros_ui.start()

        # cros_ui.start() waits for the login prompt to be visible, so Chrome has
        # already started once it returns.
        if restore_magic_file:
            open(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE, 'w').close()
            assert os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
Ejemplo n.º 6
0
  def _tearDownWithSessionManagerStopped(self):
    """Resets the test environment after stopping the session manager."""
    assert self.IsChromeOS()
    logging.debug('Stopping session manager')
    cros_ui.stop(allow_fail=True)

    # Stop mock GAIA server.
    self._auth_server.stop()

    # Reenable TPM if present.
    if os.path.exists(TPM_SYSFS_PATH):
      self._Call('umount %s' % os.path.realpath(TPM_SYSFS_PATH))

    # Clear install attributes and restart cryptohomed to pick up the change.
    self._ClearInstallAttributesOnChromeOS()

    # Stop mock DNS server.
    self._dns_server.stop()

    # Stop mock DMServer.
    self.StopHTTPServer(self._http_server)

    # Clear the policy served.
    pyauto_utils.RemovePath(self._temp_data_dir)

    # Remove the device policy blob.
    self._RemoveIfExists(constants.OWNER_KEY_FILE)
    self._RemoveIfExists(constants.SIGNED_POLICY_FILE)

    # Remove any existing vaults.
    self.RemoveAllCryptohomeVaultsOnChromeOS()

    # Restart session manager and Chrome.
    self._StartSessionManagerAndChrome()
Ejemplo n.º 7
0
  def _WriteDevicePolicyWithSessionManagerStopped(self, policy):
    """Writes the device policy blob while the Session Manager is stopped."""
    assert self.IsChromeOS()
    logging.debug('Stopping session manager')
    cros_ui.stop(allow_fail=True)
    logging.debug('Writing device policy cache')
    self._WriteDevicePolicy(policy)

    # Ugly hack: session manager won't spawn chrome if this file exists. That's
    # usually a good thing (to keep the automation channel open), but in this
    # case we really want to restart chrome. PyUITest.setUp() will be called
    # after session manager and chrome have restarted, and will setup the
    # automation channel.
    restore_magic_file = False
    if os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE):
      logging.debug('DISABLE_BROWSER_RESTART_MAGIC_FILE found. '
                    'Removing temporarily for the next restart.')
      restore_magic_file = True
      os.remove(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
      assert not os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)

    logging.debug('Starting session manager again')
    cros_ui.start()

    # cros_ui.start() waits for the login prompt to be visible, so chrome has
    # already started once it returns.
    if restore_magic_file:
      open(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE, 'w').close()
      assert os.path.exists(constants.DISABLE_BROWSER_RESTART_MAGIC_FILE)
Ejemplo n.º 8
0
  def _tearDownWithSessionManagerStopped(self):
    """Resets the test environment after stopping the session manager."""
    assert self.IsChromeOS()
    logging.debug('Stopping session manager')
    cros_ui.stop(allow_fail=True)

    # Stop mock GAIA server.
    self._auth_server.stop()

    # Reenable TPM if present.
    if os.path.exists(TPM_SYSFS_PATH):
      self._Call('umount %s' % os.path.realpath(TPM_SYSFS_PATH))

    # Clear install attributes and restart cryptohomed to pick up the change.
    self._ClearInstallAttributesOnChromeOS()

    # Stop mock DNS server.
    self._dns_server.stop()

    # Stop mock DMServer.
    self.StopHTTPServer(self._http_server)

    # Clear the policy served.
    pyauto_utils.RemovePath(self._temp_data_dir)

    # Remove the device policy blob.
    self._RemoveIfExists(constants.OWNER_KEY_FILE)
    self._RemoveIfExists(constants.SIGNED_POLICY_FILE)

    # Remove any existing vaults.
    self.RemoveAllCryptohomeVaultsOnChromeOS()

    # Restart session manager and Chrome.
    self._StartSessionManagerAndChrome()
Ejemplo n.º 9
0
  def _SetUpWithSessionManagerStopped(self):
    """Sets up the test environment after stopping the session manager."""
    assert self.IsChromeOS()
    logging.debug('Stopping session manager')
    cros_ui.stop(allow_fail=True)

    # Start mock GAIA server.
    self._auth_server = auth_server.GoogleAuthServer()
    self._auth_server.run()

    # Disable TPM if present.
    if os.path.exists(TPM_SYSFS_PATH):
      self._Call('mount -t tmpfs -o size=1k tmpfs %s'
          % os.path.realpath(TPM_SYSFS_PATH), check=True)
      self._WriteFile(TPM_SYSFS_ENABLED_FILE, '0')

    # Clear install attributes and restart cryptohomed to pick up the change.
    self._ClearInstallAttributesOnChromeOS()

    # Set install attributes to mock enterprise enrollment.
    bus = dbus.SystemBus()
    proxy = bus.get_object('org.chromium.Cryptohome',
                            '/org/chromium/Cryptohome')
    install_attributes = {
      'enterprise.device_id': self.device_id,
      'enterprise.domain': string.split(self.owner, '@')[-1],
      'enterprise.mode': self.mode,
      'enterprise.owned': 'true',
      'enterprise.user': self.owner
    }
    interface = dbus.Interface(proxy, 'org.chromium.CryptohomeInterface')
    for name, value in install_attributes.iteritems():
      interface.InstallAttributesSet(name, '%s\0' % value)
    interface.InstallAttributesFinalize()

    # Start mock DNS server that redirects all traffic to 127.0.0.1.
    self._dns_server = dns_server.LocalDns()
    self._dns_server.run()

    # Start mock DMServer.
    source_dir = os.path.normpath(pyauto_paths.GetSourceDir())
    self._temp_data_dir = tempfile.mkdtemp(dir=source_dir)
    logging.debug('TestServer input path: %s' % self._temp_data_dir)
    relative_temp_data_dir = os.path.basename(self._temp_data_dir)
    self._http_server = self.StartHTTPServer(relative_temp_data_dir)

    # Initialize the policy served.
    self._device_policy = {}
    self._user_policy = {}
    self._WritePolicyOnChromeOS()

    # Register with mock DMServer and retrieve initial device policy blob.
    dm_token = self._DMRegisterDevice()
    policy = self._DMFetchPolicy(dm_token)

    # Write the initial device policy blob.
    self._WriteFile(constants.OWNER_KEY_FILE, policy.new_public_key)
    self._WriteFile(constants.SIGNED_POLICY_FILE, policy.SerializeToString())

    # Remove any existing vaults.
    self.RemoveAllCryptohomeVaultsOnChromeOS()

    # Restart session manager and Chrome.
    self._StartSessionManagerAndChrome()
Ejemplo n.º 10
0
    def _SetUpWithSessionManagerStopped(self):
        """Sets up the test environment after stopping the session manager."""
        assert self.IsChromeOS()
        logging.debug('Stopping session manager')
        cros_ui.stop(allow_fail=True)

        # Start mock GAIA server.
        self._auth_server = auth_server.GoogleAuthServer()
        self._auth_server.run()

        # Disable TPM if present.
        if os.path.exists(TPM_SYSFS_PATH):
            self._Call('mount -t tmpfs -o size=1k tmpfs %s' %
                       os.path.realpath(TPM_SYSFS_PATH),
                       check=True)
            self._WriteFile(TPM_SYSFS_ENABLED_FILE, '0')

        # Clear install attributes and restart cryptohomed to pick up the change.
        self._ClearInstallAttributesOnChromeOS()

        # Set install attributes to mock enterprise enrollment.
        bus = dbus.SystemBus()
        proxy = bus.get_object('org.chromium.Cryptohome',
                               '/org/chromium/Cryptohome')
        install_attributes = {
            'enterprise.device_id': self.device_id,
            'enterprise.domain': string.split(self.owner, '@')[-1],
            'enterprise.mode': self.mode,
            'enterprise.owned': 'true',
            'enterprise.user': self.owner
        }
        interface = dbus.Interface(proxy, 'org.chromium.CryptohomeInterface')
        for name, value in install_attributes.iteritems():
            interface.InstallAttributesSet(name, '%s\0' % value)
        interface.InstallAttributesFinalize()

        # Start mock DNS server that redirects all traffic to 127.0.0.1.
        self._dns_server = dns_server.LocalDns()
        self._dns_server.run()

        # Start mock DMServer.
        source_dir = os.path.normpath(pyauto_paths.GetSourceDir())
        self._temp_data_dir = tempfile.mkdtemp(dir=source_dir)
        logging.debug('TestServer input path: %s' % self._temp_data_dir)
        relative_temp_data_dir = os.path.basename(self._temp_data_dir)
        self._http_server = self.StartHTTPServer(relative_temp_data_dir)

        # Initialize the policy served.
        self._device_policy = {}
        self._user_policy = {}
        self._WritePolicyOnChromeOS()

        # Register with mock DMServer and retrieve initial device policy blob.
        dm_token = self._DMRegisterDevice()
        policy = self._DMFetchPolicy(dm_token)

        # Write the initial device policy blob.
        self._WriteFile(constants.OWNER_KEY_FILE, policy.new_public_key)
        self._WriteFile(constants.SIGNED_POLICY_FILE,
                        policy.SerializeToString())

        # Remove any existing vaults.
        self.RemoveAllCryptohomeVaultsOnChromeOS()

        # Restart session manager and Chrome.
        self._StartSessionManagerAndChrome()