1# Copyright 2016 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_BlockThirdPartyCookies' 7TIME = 'SHORT' 8TEST_CATEGORY = 'Functional' 9TEST_CLASS = 'enterprise' 10TEST_TYPE = 'client' 11 12DOC = ''' 13Verify effects of BlockThirdPartyCookies policy on client behavior. 14 15This test verifies the effect of the BlockThirdPartyCookies user policy on 16Chrome OS client behavior and appearance. It exercises all valid policy values 17with three test cases: True_Block, False_Allow, and NotSet_Allow. 18 19A test case shall pass if the 'Block third-party cookies...' check box is 20(un)checked when BlockThirdPartyCookies policy is set true (false), and is 21(un)editable when BlockThirdPartyCookies not set (or set True or False). It 22shall fail if this 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 27''' 28 29args_dict = utils.args_to_dict(args) 30 31job.run_test('policy_BlockThirdPartyCookies', **args_dict) 32