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