mirror of https://gitee.com/openkylin/cups.git
154 lines
3.9 KiB
Plaintext
154 lines
3.9 KiB
Plaintext
|
#
|
|||
|
# Verify that the CUPS subscription operations work.
|
|||
|
#
|
|||
|
# Copyright © 2007-2019 by Apple Inc.
|
|||
|
# Copyright © 2001-2006 by Easy Software Products. All rights reserved.
|
|||
|
#
|
|||
|
# Licensed under Apache License v2.0. See the file "LICENSE" for more
|
|||
|
# information.
|
|||
|
#
|
|||
|
{
|
|||
|
# The name of the test...
|
|||
|
NAME "Add Printer Subscription w/Lease"
|
|||
|
|
|||
|
# The operation to use
|
|||
|
OPERATION Create-Printer-Subscription
|
|||
|
RESOURCE /
|
|||
|
|
|||
|
# The attributes to send
|
|||
|
GROUP operation
|
|||
|
ATTR charset attributes-charset utf-8
|
|||
|
ATTR language attributes-natural-language en
|
|||
|
ATTR uri printer-uri $scheme://$hostname:$port/printers/Test1
|
|||
|
ATTR name requesting-user-name $user
|
|||
|
|
|||
|
GROUP subscription
|
|||
|
ATTR uri notify-recipient-uri testnotify://
|
|||
|
ATTR keyword notify-events printer-state-changed
|
|||
|
ATTR integer notify-lease-duration 5
|
|||
|
|
|||
|
# What statuses are OK?
|
|||
|
STATUS successful-ok
|
|||
|
|
|||
|
# What attributes do we expect?
|
|||
|
EXPECT attributes-charset
|
|||
|
EXPECT attributes-natural-language
|
|||
|
EXPECT notify-subscription-id
|
|||
|
DISPLAY notify-subscription-id
|
|||
|
}
|
|||
|
{
|
|||
|
# The name of the test...
|
|||
|
NAME "Verify Subscription Expiration"
|
|||
|
|
|||
|
# Delay test for 7 seconds to allow lease to expire...
|
|||
|
DELAY 7
|
|||
|
|
|||
|
# The operation to use
|
|||
|
OPERATION Get-Subscription-Attributes
|
|||
|
RESOURCE /
|
|||
|
|
|||
|
# The attributes to send
|
|||
|
GROUP operation
|
|||
|
ATTR charset attributes-charset utf-8
|
|||
|
ATTR language attributes-natural-language en
|
|||
|
ATTR uri printer-uri $scheme://$hostname:$port/printers/Test1
|
|||
|
ATTR integer notify-subscription-id $notify-subscription-id
|
|||
|
ATTR name requesting-user-name $user
|
|||
|
|
|||
|
# What statuses are OK?
|
|||
|
STATUS client-error-not-found
|
|||
|
|
|||
|
# What attributes do we expect?
|
|||
|
EXPECT attributes-charset
|
|||
|
EXPECT attributes-natural-language
|
|||
|
}
|
|||
|
{
|
|||
|
# The name of the test...
|
|||
|
NAME "Add 2 Printer Subscriptions w/Lease"
|
|||
|
|
|||
|
# The operation to use
|
|||
|
OPERATION Create-Printer-Subscription
|
|||
|
RESOURCE /
|
|||
|
|
|||
|
# The attributes to send
|
|||
|
GROUP operation
|
|||
|
ATTR charset attributes-charset utf-8
|
|||
|
ATTR language attributes-natural-language en
|
|||
|
ATTR uri printer-uri $scheme://$hostname:$port/printers/Test1
|
|||
|
ATTR name requesting-user-name $user
|
|||
|
|
|||
|
GROUP subscription
|
|||
|
ATTR uri notify-recipient-uri testnotify://
|
|||
|
ATTR keyword notify-events printer-state-changed
|
|||
|
ATTR integer notify-lease-duration 5
|
|||
|
|
|||
|
GROUP subscription
|
|||
|
ATTR uri notify-recipient-uri testnotify://
|
|||
|
ATTR keyword notify-events printer-config-changed
|
|||
|
ATTR integer notify-lease-duration 5
|
|||
|
|
|||
|
# What statuses are OK?
|
|||
|
STATUS successful-ok
|
|||
|
|
|||
|
# What attributes do we expect?
|
|||
|
EXPECT attributes-charset
|
|||
|
EXPECT attributes-natural-language
|
|||
|
EXPECT notify-subscription-id
|
|||
|
DISPLAY notify-subscription-id
|
|||
|
}
|
|||
|
{
|
|||
|
# The name of the test...
|
|||
|
NAME "List Printer Subscriptions"
|
|||
|
|
|||
|
# The operation to use
|
|||
|
OPERATION Get-Subscriptions
|
|||
|
RESOURCE /
|
|||
|
|
|||
|
# The attributes to send
|
|||
|
GROUP operation
|
|||
|
ATTR charset attributes-charset utf-8
|
|||
|
ATTR language attributes-natural-language en
|
|||
|
ATTR uri printer-uri $scheme://$hostname:$port/printers/Test1
|
|||
|
ATTR name requesting-user-name $user
|
|||
|
|
|||
|
# What statuses are OK?
|
|||
|
STATUS successful-ok
|
|||
|
|
|||
|
# What attributes do we expect?
|
|||
|
EXPECT attributes-charset
|
|||
|
EXPECT attributes-natural-language
|
|||
|
EXPECT notify-subscription-id
|
|||
|
DISPLAY notify-subscription-id
|
|||
|
EXPECT notify-printer-uri
|
|||
|
DISPLAY notify-printer-uri
|
|||
|
EXPECT notify-events
|
|||
|
DISPLAY notify-events
|
|||
|
}
|
|||
|
{
|
|||
|
# The name of the test...
|
|||
|
NAME "Check MaxSubscriptions limits"
|
|||
|
|
|||
|
# The operation to use
|
|||
|
OPERATION Create-Printer-Subscription
|
|||
|
RESOURCE /
|
|||
|
|
|||
|
# The attributes to send
|
|||
|
GROUP operation
|
|||
|
ATTR charset attributes-charset utf-8
|
|||
|
ATTR language attributes-natural-language en
|
|||
|
ATTR uri printer-uri $scheme://$hostname:$port/printers/Test1
|
|||
|
ATTR name requesting-user-name $user
|
|||
|
|
|||
|
GROUP subscription
|
|||
|
ATTR uri notify-recipient-uri testnotify://
|
|||
|
ATTR keyword notify-events printer-state-changed
|
|||
|
ATTR integer notify-lease-duration 5
|
|||
|
|
|||
|
# What statuses are OK?
|
|||
|
STATUS client-error-too-many-subscriptions
|
|||
|
|
|||
|
# What attributes do we expect?
|
|||
|
EXPECT attributes-charset
|
|||
|
EXPECT attributes-natural-language
|
|||
|
}
|