blob: 450438e8ef7d83ab6e9a8eb74092abf14a1f6502 [file] [log] [blame]
# Copyright (c) 2013 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 test
from autotest_lib.client.common_lib import error
from autotest_lib.client.common_lib import utils
# This hacks the path so that we can import shill_proxy.
# pylint: disable=W0611
from autotest_lib.client.cros import flimflam_test_path
# pylint: enable=W0611
import shill_proxy
class network_DefaultProfileCreation(test.test):
"""The Default Profile Creation class.
Wipe the default profile, start shill, and check that a default
profile has been created.
Test that the default profile contains default values for properties
that should have them.
"""
DEFAULT_PROFILE_PATH = '/var/cache/shill/default.profile'
EXPECTED_SETTINGS = [
# From DefaultProfile::LoadManagerProperties
'CheckPortalList=ethernet,wifi,cellular',
'IgnoredDNSSearchPaths=gateway.2wire.net',
'LinkMonitorTechnologies=wifi',
'PortalURL=http://www.gstatic.com/generate_204',
'PortalCheckInterval=30',
]
version = 1
def run_once(self):
"""Test main loop."""
utils.run('stop shill')
os.remove(self.DEFAULT_PROFILE_PATH)
utils.run('start shill')
shill_proxy.ShillProxy.get_proxy()
profile = open(self.DEFAULT_PROFILE_PATH).read()
for setting in self.EXPECTED_SETTINGS:
if setting not in profile:
raise error.TestFail('Missing setting ' + setting)