xref: /aosp_15_r20/external/libcups/examples/ipp-2.2.test (revision 5e7646d21f1134fb0638875d812ef646c12ab91e)
1*5e7646d2SAndroid Build Coastguard Worker#
2*5e7646d2SAndroid Build Coastguard Worker# IPP/2.2 test suite.
3*5e7646d2SAndroid Build Coastguard Worker#
4*5e7646d2SAndroid Build Coastguard Worker# Copyright © 2007-2017 by Apple Inc.
5*5e7646d2SAndroid Build Coastguard Worker# Copyright © 2001-2006 by Easy Software Products. All rights reserved.
6*5e7646d2SAndroid Build Coastguard Worker#
7*5e7646d2SAndroid Build Coastguard Worker# Licensed under Apache License v2.0.  See the file "LICENSE" for more
8*5e7646d2SAndroid Build Coastguard Worker# information.
9*5e7646d2SAndroid Build Coastguard Worker#
10*5e7646d2SAndroid Build Coastguard Worker# Usage:
11*5e7646d2SAndroid Build Coastguard Worker#
12*5e7646d2SAndroid Build Coastguard Worker#   ./ipptool -V 2.2 -f filename -t printer-uri ipp-2.2.test
13*5e7646d2SAndroid Build Coastguard Worker#
14*5e7646d2SAndroid Build Coastguard Worker
15*5e7646d2SAndroid Build Coastguard Worker# Do all of the IPP/1.1, IPP/2.0, and IPP/2.1 tests as an IPP/2.2 client
16*5e7646d2SAndroid Build Coastguard WorkerINCLUDE "ipp-2.1.test"
17*5e7646d2SAndroid Build Coastguard Worker
18*5e7646d2SAndroid Build Coastguard Worker
19*5e7646d2SAndroid Build Coastguard Worker# Test required printer description attribute support.
20*5e7646d2SAndroid Build Coastguard Worker#
21*5e7646d2SAndroid Build Coastguard Worker# Required by: PWG 5100.12 section 6.4
22*5e7646d2SAndroid Build Coastguard Worker{
23*5e7646d2SAndroid Build Coastguard Worker	NAME "PWG 5100.12 section 6.4 - Required Printer Description Attributes"
24*5e7646d2SAndroid Build Coastguard Worker	OPERATION Get-Printer-Attributes
25*5e7646d2SAndroid Build Coastguard Worker	GROUP operation-attributes-tag
26*5e7646d2SAndroid Build Coastguard Worker	ATTR charset attributes-charset utf-8
27*5e7646d2SAndroid Build Coastguard Worker	ATTR naturalLanguage attributes-natural-language en
28*5e7646d2SAndroid Build Coastguard Worker	ATTR uri printer-uri $uri
29*5e7646d2SAndroid Build Coastguard Worker	ATTR name requesting-user-name $user
30*5e7646d2SAndroid Build Coastguard Worker	ATTR mimeMediaType document-format application/octet-stream
31*5e7646d2SAndroid Build Coastguard Worker
32*5e7646d2SAndroid Build Coastguard Worker	STATUS successful-ok
33*5e7646d2SAndroid Build Coastguard Worker
34*5e7646d2SAndroid Build Coastguard Worker	# Job template attributes
35*5e7646d2SAndroid Build Coastguard Worker	EXPECT number-up-default OF-TYPE integer IN-GROUP printer-attributes-tag COUNT 1 WITH-VALUE >0
36*5e7646d2SAndroid Build Coastguard Worker	EXPECT number-up-supported OF-TYPE integer|rangeOfInteger IN-GROUP printer-attributes-tag WITH-VALUE >0
37*5e7646d2SAndroid Build Coastguard Worker	EXPECT overrides-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "document-numbers"
38*5e7646d2SAndroid Build Coastguard Worker	EXPECT overrides-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "pages"
39*5e7646d2SAndroid Build Coastguard Worker	EXPECT page-ranges-supported OF-TYPE boolean IN-GROUP printer-attributes-tag COUNT 1 WITH-VALUE true
40*5e7646d2SAndroid Build Coastguard Worker
41*5e7646d2SAndroid Build Coastguard Worker	# Printer description attributes
42*5e7646d2SAndroid Build Coastguard Worker	EXPECT job-creation-attributes-supported OF-TYPE keyword IN-GROUP printer-attributes-tag
43*5e7646d2SAndroid Build Coastguard Worker	EXPECT job-ids-supported OF-TYPE boolean IN-GROUP printer-attributes-tag COUNT 1 WITH-VALUE true
44*5e7646d2SAndroid Build Coastguard Worker	EXPECT media-col-ready
45*5e7646d2SAndroid Build Coastguard Worker	EXPECT media-ready
46*5e7646d2SAndroid Build Coastguard Worker	EXPECT multiple-document-jobs-supported OF-TYPE boolean IN-GROUP printer-attributes-tag COUNT 1 WITH-VALUE true
47*5e7646d2SAndroid Build Coastguard Worker	EXPECT printer-alert OF-TYPE octetString IN-GROUP printer-attributes-tag
48*5e7646d2SAndroid Build Coastguard Worker	EXPECT printer-alert-description OF-TYPE text IN-GROUP printer-attributes-tag SAME-COUNT-AS printer-alert
49*5e7646d2SAndroid Build Coastguard Worker	EXPECT printer-device-id OF-TYPE text IN-GROUP printer-attributes-tag COUNT 1
50*5e7646d2SAndroid Build Coastguard Worker	EXPECT printer-message-from-operator OF-TYPE text IN-GROUP printer-attributes-tag COUNT 1 WITH-VALUE "/^.{0,127}$$/"
51*5e7646d2SAndroid Build Coastguard Worker	EXPECT which-jobs-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "completed"
52*5e7646d2SAndroid Build Coastguard Worker	EXPECT which-jobs-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "proof-print"
53*5e7646d2SAndroid Build Coastguard Worker	EXPECT which-jobs-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "not-completed"
54*5e7646d2SAndroid Build Coastguard Worker
55*5e7646d2SAndroid Build Coastguard Worker	# Operations
56*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0024 # Pause-Printer-After-Current-Job
57*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0025 # Hold-New-Jobs
58*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0026 # Release-Held-New-Jobs
59*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0029 # Restart-Printer
60*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x002A # Shutdown-Printer
61*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x002B # Startup-Printer
62*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x002C # Reprocess-Job
63*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x002D # Cancel-Current-Job
64*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x002E # Suspend-Current-Job
65*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x002F # Resume-Job
66*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0030 # Promote-Job
67*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0031 # Schedule-Job-After
68*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0033 # Cancel-Document
69*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0034 # Get-Document-Attributes
70*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0035 # Get-Documents
71*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0037 # Set-Document-Attributes
72*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0038 # Cancel-Jobs
73*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x0039 # Cancel-My-Jobs
74*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x003A # Resubmit-Job
75*5e7646d2SAndroid Build Coastguard Worker	EXPECT operations-supported WITH-VALUE 0x003B # Close-Job
76*5e7646d2SAndroid Build Coastguard Worker}
77