Files
rk35xx-android14/external/libcups/examples/cancel-current-job.test
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

46 lines
1003 B
Plaintext

# Cancel the currently printing job.
#
# Usage:
#
# ./ipptool printer-uri cancel-current-jobs.test
{
# The name of the test...
NAME "Get current job"
# The operation to use
OPERATION Get-Jobs
# Attributes, starting in the operation group...
GROUP operation-attributes-tag
ATTR charset attributes-charset utf-8
ATTR language attributes-natural-language en
ATTR uri printer-uri $uri
ATTR integer limit 1
ATTR name requesting-user-name $user
ATTR keyword requested-attributes job-id,job-state
# What statuses are OK?
STATUS successful-ok
EXPECT job-id OF-TYPE integer COUNT 1
# What attributes to display
DISPLAY job-id
DISPLAY job-state
}
{
SKIP-IF-NOT-DEFINED job-id
NAME "Cancel current job"
OPERATION Cancel-Job
GROUP operation-attributes-tag
ATTR charset attributes-charset utf-8
ATTR language attributes-natural-language en
ATTR uri printer-uri $uri
ATTR integer job-id $job-id
ATTR name requesting-user-name $user
# What statuses are OK?
STATUS successful-ok
}