1# Copyright 2015 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = 'scunningham' 6NAME = 'policy_EditBookmarksEnabled' 7TIME = 'SHORT' 8TEST_CATEGORY = 'General' 9TEST_CLASS = 'enterprise' 10TEST_TYPE = 'client' 11 12DOC = ''' 13Verify effects of EditBookmarksEnabled policy. 14 15This test verifies the effect of the EditBookmarksEnabled user policy on 16Chrome OS client behavior and appearance. It exercises all valid policy 17values across three test cases: True_Enable, False_Disable, and 18NotSet_Enable. 19 20A test case shall pass if the Manage Bookmarks page allows (or forbids) the 21user to add a new bookmark when the policy is true/notset (or false). It shall 22fail if that behavior is not enforced. 23 24This control file allows CloudDPC E2E tests to run any test case defined in 25this test via command-line. 26 27See accompanying README file for additional usage instructions and examples. 28 29''' 30 31args_dict = utils.args_to_dict(args) 32 33job.run_test('policy_EditBookmarksEnabled', **args_dict) 34