blob: fe8395a4de7279c75dc8c42469ef87e553ea64ae [file] [log] [blame]
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
from autotest_lib.client.bin import utils
from autotest_lib.client.common_lib import error
from autotest_lib.client.common_lib.cros import session_manager
from autotest_lib.client.cros import constants, cros_ui_test, login
class login_OwnershipTaken(cros_ui_test.UITest):
"""Sign in and ensure that ownership of the device is taken."""
version = 1
def setup(self):
os.chdir(self.srcdir)
utils.make('OUT_DIR=.')
def initialize(self, creds='$default'):
self.auto_login = False # Will log in manually later.
super(login_OwnershipTaken, self).initialize(creds,
is_creating_owner=True)
if os.access(constants.OWNER_KEY_FILE, os.F_OK):
raise error.TestFail("Ownership already taken!")
def run_once(self):
self.login(self.username, self.password)
login.wait_for_ownership()
sm = session_manager.connect()
retrieved_policy = sm.RetrievePolicy(byte_arrays=True)
if retrieved_policy is None:
raise error.TestFail('Policy not found')
self.validate_basic_policy(retrieved_policy)