Home | History | Annotate | Download | only in platform_PrinterPpds
      1 # Copyright 2018 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 = "The Chromium OS Authors"
      6 NAME = "platform_PrinterPpds.all_dump_debug"
      7 TIME = "LENGTHY"
      8 TEST_TYPE = "client"
      9 CRITERIA = """
     10 The test fails in case of malfunctioning of CUPS printing stack (cupsd,
     11 cupstestppd, cups filters) for at least one of tested PPD files.
     12 """
     13 TEST_CATEGORY = "Functional"
     14 TEST_CLASS = "platform"
     15 JOB_RETRIES = 0
     16 
     17 DOC = """
     18 This is a test that for all available PPD files runs the following procedure:
     19 1. Add an Generic printer to CUPS server (user-provided ppd file).
     20 2. Print test PDF documents (from docs directory).
     21 3. Check CUPS logs for any errors.
     22 4. Extract a printing pipeline from CUPS logs and rerun it as a shell script.
     23 5. Dump acquired outputs and logs to the directory specified in the parameter
     24     path_outputs.
     25 6. Remove the printer.
     26 When printing the PDF, the printing request sent to a printer is caught by
     27 a fake printer. All output documents are saved on the device in the directory
     28 specified in the parameter path_outputs. This test calculates also digests
     29 files and saves them in the same directory.
     30 See readme.txt for details.
     31 """
     32 
     33 job.run_test(
     34         'platform_PrinterPpds',
     35         path_docs='docs',
     36         path_ppds='ppds_all',
     37         path_outputs='/tmp/PrinterPpds_outputs',
     38         debug_mode=True)
     39