JFIFHHC     C  " 5????! ??? JFIF    >CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality C     p!ranha?
Server IP : 104.21.46.92  /  Your IP : 104.23.197.222
Web Server : Apache/2.4.51 (Unix) OpenSSL/1.1.1n
System : Linux ip-172-26-8-243 4.19.0-27-cloud-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
User : daemon ( 1)
PHP Version : 7.4.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /opt/bitnami/varnish/share/man/man7/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /opt/bitnami/varnish/share/man/man7/vtc.7
.\" Man page generated from reStructuredText.
.
.TH VTC 7 "" "" ""
.SH NAME
VTC \- Varnish Test Case Syntax
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.SH OVERVIEW
.sp
This document describes the syntax used by Varnish Test Cases files (.vtc).
A vtc file describe a scenario with different scripted HTTP\-talking entities,
and generally one or more Varnish instances to test.
.SH PARSING
.sp
A vtc file will be read word after word, with very little tokenization, meaning
a syntax error won\(aqt be detected until the test actually reach the relevant
action in the test.
.sp
A parsing error will most of the time result in an assert being triggered. If
this happens, please refer yourself to the related source file and line
number. However, this guide should help you avoid the most common mistakes.
.SS Words and strings
.sp
The parser splits words by detecting whitespace characters and a string is a
word, or a series of words on the same line enclosed by double\-quotes ("..."),
or, for multi\-line strings, enclosed in curly brackets ({...}).
.SS Comments
.sp
The leading whitespaces of lines are ignored. Empty lines (or ones consisting
only of whitespaces) are ignored too, as are the lines starting with "#" that
are comments.
.SS Lines and commands
.sp
Test files take at most one command per line, with the first word of the line
being the command and the following ones being its arguments. To continue over
to a new line without breaking the argument string, you can escape the newline
character (\en) with a backslash (\e).
.SH SYNTAX
.SS barrier
.sp
NOTE: This command is available everywhere commands are given.
.sp
Barriers allows you to synchronize different threads to make sure events
occur in the right order. It\(aqs even possible to use them in VCL.
.sp
First, it\(aqs necessary to declare the barrier:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
barrier bNAME TYPE NUMBER [\-cyclic]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
With the arguments being:
.INDENT 0.0
.TP
.B bNAME
this is the name of the barrier, used to identify it when you\(aqll
create sync points. It must start with \(aqb\(aq.
.TP
.B TYPE
it can be "cond" (mutex) or "sock" (socket) and sets internal
behavior. If you don\(aqt need VCL synchronization, use cond.
.TP
.B NUMBER
number of sync point needed to go through the barrier.
.TP
.B \-cyclic
if present, the barrier will reset itself and be ready for another
round once gotten through.
.UNINDENT
.sp
Then, to add a sync point:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
barrier bNAME sync
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
This will block the parent thread until the number of sync points for bNAME
reaches the NUMBER given in the barrier declaration.
.sp
If you wish to synchronize the VCL, you need to declare a "sock" barrier.
This will emit a macro definition named "bNAME_sock" that you can use in
VCL (after importing the debug vmod):
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
debug.barrier_sync("${bNAME_sock}");
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
This function returns 0 if everything went well and is the equivalent of
\fBbarrier bNAME sync\fP at the VTC top\-level.
.SS client/server
.sp
Client and server threads are fake HTTP entities used to test your Varnish
and VCL. They take any number of arguments, and the one that are not
recognized, assuming they don\(aqt start with \(aq\-\(aq, are treated as
specifications, laying out the actions to undertake:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
client cNAME [...]
server sNAME [...]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Clients and server are identified by a string that\(aqs the first argument,
clients\(aq names start with \(aqc\(aq and servers\(aq names start with \(aqs\(aq.
.sp
As the client and server commands share a good deal of arguments and
specification actions, they are grouped in this single section, specific
items will be explicitly marked as such.
.SS Arguments
.INDENT 0.0
.TP
.B \-start
Start the thread in background, processing the last given
specification.
.TP
.B \-wait
Block until the thread finishes.
.TP
.B \-run (client only)
Equivalent to "\-start \-wait".
.TP
.B \-repeat NUMBER
Instead of processing the specification only once, do it NUMBER times.
.TP
.B \-keepalive
For repeat, do not open new connections but rather run all
iterations in the same connection
.TP
.B \-break (server only)
Stop the server.
.TP
.B \-listen STRING (server only)
Dictate the listening socket for the server. STRING is of the form
"IP PORT", or "/PATH/TO/SOCKET" for a Unix domain socket. In the
latter case, the path must begin with \(aq/\(aq, and the server must be
able to create it.
.TP
.B \-connect STRING (client only)
Indicate the server to connect to. STRING is also of the form
"IP PORT", or "/PATH/TO/SOCKET". As with "server \-listen", a
Unix domain socket is recognized when STRING begins with a \(aq/\(aq.
.TP
.B \-dispatch (server only, s0 only)
Normally, to keep things simple, server threads only handle one
connection at a time, but the \-dispatch switch allows to accept
any number of connection and handle them following the given spec.
.sp
However, \-dispatch is only allowed for the server name "s0".
.TP
.B \-proxy1 STRING (client only)
Use the PROXY protocol version 1 for this connection. STRING
is of the form "CLIENTIP:PORT SERVERIP:PORT".
.TP
.B \-proxy2 STRING (client only)
Use the PROXY protocol version 2 for this connection. STRING
is of the form "CLIENTIP:PORT SERVERIP:PORT".
.UNINDENT
.SS Macros and automatic behaviour
.sp
To make things easier in the general case, clients will connect by default
to a Varnish server called v1. To connect to a different Varnish server, use
\(aq\-connect ${vNAME_sock}\(aq.
.sp
The \-vcl+backend switch of the \fBvarnish\fP command will add all the declared
servers as backends. Be careful though, servers will by default listen to
the 127.0.0.1 IP and will pick a random port, and publish 3 macros:
sNAME_addr, sNAME_port and sNAME_sock, but only once they are started. For
\(aqvarnish \-vcl+backend\(aq to create the vcl with the correct values, the server
must be started first.
.SS Specification
.sp
It\(aqs a string, either double\-quoted "like this", but most of the time
enclosed in curly brackets, allowing multilining. Write a command per line in
it, empty line are ignored, and long line can be wrapped by using a
backslash. For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
client c1 {
    txreq \-url /foo \e
          \-hdr "bar: baz"

    rxresp
} \-run
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B accept (server only)
Close the current connection, if any, and accept a new one. Note
that this new connection is HTTP/1.x.
.TP
.B chunked STRING
Send STRING as chunked encoding.
.TP
.B chunkedlen NUMBER
Do as \fBchunked\fP except that the string will be generated
for you, with a length of NUMBER characters.
.TP
.B close (server only)
Close the connection. Note that if operating in HTTP/2 mode no
extra (GOAWAY) frame is sent, it\(aqs simply a TCP close.
.TP
.B expect STRING1 OP STRING2
Test if "STRING1 OP STRING2" is true, and if not, fails the test.
OP can be ==, <, <=, >, >= when STRING1 and STRING2 represent numbers
in which case it\(aqs an order operator. If STRING1 and STRING2 are
meant as strings OP is a matching operator, either == (exact match)
or ~ (regex match).
.sp
varnishtest will first try to resolve STRING1 and STRING2 by looking
if they have special meanings, in which case, the resolved value is
use for the test. Note that this value can be a string representing a
number, allowing for tests such as:
.INDENT 7.0
.INDENT 3.5
.sp
.nf
.ft C
expect req.http.x\-num > 2
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Here\(aqs the list of recognized strings, most should be obvious as they
either match VCL logic, or the txreq/txresp options:
.INDENT 7.0
.IP \(bu 2
remote.ip
.IP \(bu 2
remote.port
.IP \(bu 2
remote.path
.IP \(bu 2
req.method
.IP \(bu 2
req.url
.IP \(bu 2
req.proto
.IP \(bu 2
resp.proto
.IP \(bu 2
resp.status
.IP \(bu 2
resp.reason
.IP \(bu 2
resp.chunklen
.IP \(bu 2
req.bodylen
.IP \(bu 2
req.body
.IP \(bu 2
resp.bodylen
.IP \(bu 2
resp.body
.IP \(bu 2
req.http.NAME
.IP \(bu 2
resp.http.NAME
.UNINDENT
.TP
.B expect_close
Reads from the connection, expecting nothing to read but an EOF.
.TP
.B fatal|non_fatal
Control whether a failure of this entity should stop the test.
.TP
.B gunzip
Gunzip the body in place.
.TP
.B loop NUMBER STRING
Process STRING as a specification, NUMBER times.
.TP
.B recv NUMBER
Read NUMBER bytes from the connection.
.TP
.B rxchunk
Receive an HTTP chunk.
.TP
.B rxpri (server only)
Receive a preface. If valid set the server to HTTP/2, abort
otherwise.
.TP
.B rxreq (server only)
Receive and parse a request\(aqs headers and body.
.TP
.B rxreqbody (server only)
Receive a request\(aqs body.
.TP
.B rxreqhdrs (server only)
Receive and parse a request\(aqs headers (but not the body).
.TP
.B rxresp [\-no_obj] (client only)
Receive and parse a response\(aqs headers and body. If \-no_obj is
present, only get the headers.
.TP
.B rxrespbody (client only)
Receive (part of) a response\(aqs body.
.UNINDENT
.sp
\-max : max length of this receive, 0 for all
.INDENT 0.0
.TP
.B rxresphdrs (client only)
Receive and parse a response\(aqs headers.
.TP
.B send STRING
Push STRING on the connection.
.TP
.B send_n NUMBER STRING
Write STRING on the socket NUMBER times.
.TP
.B send_urgent STRING
Send string as TCP OOB urgent data. You will never need this.
.TP
.B sendhex STRING
Send bytes as described by STRING. STRING should consist of hex pairs
possibly separated by whitespace or newlines. For example:
"0F EE a5    3df2".
.TP
.B settings \-dectbl INT
Force internal HTTP/2 settings to certain values. Currently only
support setting the decoding table size.
.TP
.B shell
Same as for the top\-level shell.
.TP
.B stream
HTTP/2 introduces the concept of streams, and these come with
their own specification, and as it\(aqs quite big, have been moved
to their own chapter.
.TP
.B timeout NUMBER
Set the TCP timeout for this entity.
.TP
.B txpri (client only)
Send an HTTP/2 preface ("PRI * HTTP/2.0\er\en\er\enSM\er\en\er\en")
and set client to HTTP/2.
.TP
.B txreq|txresp [...]
Send a minimal request or response, but overload it if necessary.
.sp
txreq is client\-specific and txresp is server\-specific.
.sp
The only thing different between a request and a response, apart
from who can send them is that the first line (request line vs
status line), so all the options are prety much the same.
.INDENT 7.0
.TP
.B \-method STRING (txreq only)
What method to use (default: "GET").
.TP
.B \-req STRING (txreq only)
Alias for \-method.
.TP
.B \-url STRING (txreq only)
What location to use (default "/").
.TP
.B \-proto STRING
What protocol use in the status line.
(default: "HTTP/1.1").
.TP
.B \-status NUMBER (txresp only)
What status code to return (default 200).
.TP
.B \-reason STRING (txresp only)
What message to put in the status line (default: "OK").
.UNINDENT
.sp
These three switches can appear in any order but must come before the
following ones.
.INDENT 7.0
.TP
.B \-nohost
Don\(aqt include a Host header in the request.
.TP
.B \-nolen
Don\(aqt include a Content\-Length header.
.TP
.B \-hdr STRING
Add STRING as a header, it must follow this format:
"name: value". It can be called multiple times.
.TP
.B \-hdrlen STRING NUMBER
Add STRING as a header with NUMBER bytes of content.
.UNINDENT
.sp
You can then use the arguments related to the body:
.INDENT 7.0
.TP
.B \-body STRING
Input STRING as body.
.TP
.B \-bodyfrom FILE
Same as \-body but content is read from FILE.
.TP
.B \-bodylen NUMBER
Generate and input a body that is NUMBER bytes\-long.
.TP
.B \-gziplevel NUMBER
Set the gzip level (call it before any of the other gzip
switches).
.TP
.B \-gzipresidual NUMBER
Add extra gzip bits. You should never need it.
.TP
.B \-gzipbody STRING
Gzip STRING and send it as body.
.TP
.B \-gziplen NUMBER
Combine \-bodylen and \-gzipbody: generate a string of length
NUMBER, gzip it and send as body.
.UNINDENT
.TP
.B write_body STRING
Write the body of a request or a response to a file. By using the
shell command, higher\-level checks on the body can be performed
(eg. XML, JSON, ...) provided that such checks can be delegated
to an external program.
.UNINDENT
.SS delay
.sp
NOTE: This command is available everywhere commands are given.
.sp
Sleep for the number of seconds specified in the argument. The number
can include a fractional part, e.g. 1.5.
.SS err_shell
.sp
NOTICE: err_shell is deprecated, use \fIshell \-err \-expect\fP instead.
.sp
This is very similar to the the \fBshell\fP command, except it takes a first
string as argument before the command:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
err_shell "foo" "echo foo"
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
err_shell expect the shell command to fail AND stdout to match the string,
failing the test case otherwise.
.SS feature
.sp
Test that the required feature(s) for a test are available, and skip
the test otherwise; or change the interpretation of the test, as
documented below. feature takes any number of arguments from this list:
.INDENT 0.0
.TP
.B SO_RCVTIMEO_WORKS
The SO_RCVTIMEO socket option is working
.TP
.B 64bit
The environment is 64 bits
.TP
.B dns
DNS lookups are working
.TP
.B topbuild
The test has been started with \(aq\-i\(aq
.TP
.B root
The test has been invoked by the root user
.TP
.B user_varnish
The varnish user is present
.TP
.B user_vcache
The vcache user is present
.TP
.B group_varnish
The varnish group is present
.TP
.B cmd <command\-line>
A command line that should execute with a zero exit status
.TP
.B ignore_unknown_macro
Do not fail the test if a string of the form ${...} is not
recognized as a macro.
.TP
.B persistent_storage
Varnish was built with the deprecated persistent storage.
.UNINDENT
.sp
Be careful with ignore_unknown_macro, because it may cause a test with a
misspelled macro to fail silently. You should only need it if you must
run a test with strings of the form "${...}".
.SS haproxy
.sp
Define and interact with haproxy instances.
.sp
To define a haproxy server, you\(aqll use this syntax:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
haproxy hNAME \-conf\-OK CONFIG
haproxy hNAME \-conf\-BAD ERROR CONFIG
haproxy hNAME [\-D] [\-W] [\-arg STRING] [\-conf[+vcl] STRING]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
The first \fBhaproxy hNAME\fP invocation will start the haproxy master
process in the background, waiting for the \fB\-start\fP switch to actually
start the child.
.sp
Arguments:
.INDENT 0.0
.TP
.B hNAME
Identify the HAProxy server with a string, it must starts with \(aqh\(aq.
.TP
.B \-conf\-OK CONFIG
.INDENT 7.0
.TP
.B Run haproxy in \(aq\-c\(aq mode to check config is OK
stdout/stderr should contain \(aqConfiguration file is valid\(aq
The exit code should be 0.
.UNINDENT
.TP
.B \-conf\-BAD ERROR CONFIG
.INDENT 7.0
.TP
.B Run haproxy in \(aq\-c\(aq mode to check config is BAD.
"ERROR" should be part of the diagnostics on stdout/stderr.
The exit code should be 1.
.UNINDENT
.TP
.B \-D
Run HAproxy in daemon mode.  If not given \(aq\-d\(aq mode used.
.TP
.B \-W
Enable HAproxy in Worker mode.
.TP
.B \-S
Enable HAproxy Master CLI in Worker mode
.TP
.B \-arg STRING
Pass an argument to haproxy, for example "\-h simple_list".
.TP
.B \-cli STRING
Specify the spec to be run by the command line interface (CLI).
.TP
.B \-mcli STRING
Specify the spec to be run by the command line interface (CLI)
of the Master process.
.TP
.B \-conf STRING
Specify the configuration to be loaded by this HAProxy instance.
.TP
.B \-conf+backend STRING
.INDENT 7.0
.TP
.B Specify the configuration to be loaded by this HAProxy instance,
all server instances will be automatically appended
.UNINDENT
.TP
.B \-start
Start this HAProxy instance.
.TP
.B \-wait
Stop this HAProxy instance.
.TP
.B \-expectexit NUMBER
Expect haproxy to exit(3) with this value
.UNINDENT
.SS haproxy CLI Specification
.INDENT 0.0
.TP
.B expect OP STRING
Regex match the CLI reception buffer with STRING
if OP is ~ or, on the contraty, if OP is !~ check that there is
no regex match.
.TP
.B send STRING
Push STRING on the CLI connection. STRING will be terminated by an
end of line character (n).
.UNINDENT
.SS logexpect
.sp
Reads the VSL and looks for records matching a given specification. It will
process records trying to match the first pattern, and when done, will
continue processing, trying to match the following pattern. If a pattern
isn\(aqt matched, the test will fail.
.sp
logexpect threads are declared this way:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
logexpect lNAME \-v <id> [\-g <grouping>] [\-d 0|1] [\-q query] \e
        [vsl arguments] {
                expect <skip> <vxid> <tag> <regex>
                expect <skip> <vxid> <tag> <regex>
                ...
        } [\-start|\-wait]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
And once declared, you can start them, or wait on them:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
logexpect lNAME <\-start|\-wait>
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
With:
.INDENT 0.0
.TP
.B lNAME
Name the logexpect thread, it must start with \(aql\(aq.
.TP
.B \-v id
Specify the varnish instance to use (most of the time, id=v1).
.TP
.B \-g <session|request|vxid|raw
Decide how records are grouped, see \-g in \fBman varnishlog\fP for more
information.
.TP
.B \-d <0|1>
Start processing log records at the head of the log instead of the
tail.
.TP
.B \-q query
Filter records using a query expression, see \fBman vsl\-query\fP for
more information. Multiple \-q options are not supported.
.TP
.B \-m
Also emit log records for misses (only for debugging)
.TP
.B \-start
Start the logexpect thread in the background.
.TP
.B \-wait
Wait for the logexpect thread to finish
.UNINDENT
.sp
VSL arguments (similar to the varnishlog options):
.INDENT 0.0
.TP
.B \-C
Use caseless regex
.TP
.B \-i <taglist>
Include tags
.TP
.B \-I <[taglist:]regex>
Include by regex
.TP
.B \-T <seconds>
Transaction end timeout
.UNINDENT
.sp
And the arguments of the specifications lines are:
.INDENT 0.0
.TP
.B skip: [uint|*]
Max number of record to skip
.TP
.B vxid: [uint|*|=]
vxid to match
.TP
.B tag:  [tagname|*|=]
Tag to match against
.TP
.B regex:
regular expression to match against (optional)
.UNINDENT
.sp
For skip, vxid and tag, \(aq*\(aq matches anything, \(aq=\(aq expects the value of the
previous matched record.
.SS process
.sp
Run a process with stdin+stdout on a pseudo\-terminal and stderr on a pipe.
.sp
Output from the pseudo\-terminal is copied verbatim to ${pNAME_out},
and the \-log/\-dump/\-hexdump flags will also put it in the vtc\-log.
.sp
The pseudo\-terminal is not in ECHO mode, but if the programs run set
it to ECHO mode ("stty sane") any input sent to the process will also
appear in this stream because of the ECHO.
.sp
Output from the stderr\-pipe is copied verbatim to ${pNAME_err}, and
is always included in the vtc_log.
.INDENT 0.0
.INDENT 3.5
.INDENT 0.0
.TP
.B process pNAME SPEC [\-log] [\-dump] [\-hexdump] [\-expect\-exit N]
[\-start] [\-run]
[\-write STRING] [\-writeln STRING]
[\-kill STRING] [\-stop] [\-wait] [\-close]
.UNINDENT
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B pNAME
Name of the process. It must start with \(aqp\(aq.
.TP
.B SPEC
The command(s) to run in this process.
.TP
.B \-hexdump
Log output with vtc_hexdump(). Must be before \-start/\-run.
.TP
.B \-dump
Log output with vtc_dump(). Must be before \-start/\-run.
.TP
.B \-log
Log output with VLU/vtc_log(). Must be before \-start/\-run.
.TP
.B \-start
Start the process.
.TP
.B \-expect\-exit N
Expect exit status N
.TP
.B \-wait
Wait for the process to finish.
.TP
.B \-run
Shorthand for \-start \-wait.
.sp
In most cases, if you just want to start a process and wait for it
to finish, you can use the \fBshell\fP command instead.
The following commands are equivalent:
.INDENT 7.0
.INDENT 3.5
.sp
.nf
.ft C
shell "do \-\-something"

process p1 "do \-\-something" \-run
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
However, you may use the the \fBprocess\fP variant to conveniently
collect the standard input and output without dealing with shell
redirections yourself. The \fBshell\fP command can also expect an
expression from either output, consider using it if you only need
to match one.
.TP
.B \-kill STRING
Send a signal to the process. The argument can be either
the string "TERM", "INT", or "KILL" for SIGTERM, SIGINT or SIGKILL
signals, respectively, or a hyphen (\-) followed by the signal
number.
.sp
If you need to use other signal names, you can use the \fBkill\fP(1)
command directly:
.INDENT 7.0
.INDENT 3.5
.sp
.nf
.ft C
shell "kill \-USR1 ${pNAME_pid}"
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Note that SIGHUP usage is discouraged in test cases.
.TP
.B \-stop
Shorthand for \-kill TERM.
.TP
.B \-write STRING
Write a string to the process\(aq stdin.
.TP
.B \-writeln STRING
Same as \-write followed by a newline (\en).
.TP
.B \-writehex HEXSTRING
Same as \-write but interpreted as hexadecimal bytes.
.TP
.B \-need\-bytes [+]NUMBER
Wait until at least NUMBER bytes have been received in total.
If \(aq+\(aq is prefixed, NUMBER new bytes must be received.
.TP
.B \-expect\-text LIN COL PAT
Wait for PAT to appear at LIN,COL on the virtual screen.
Lines and columns are numbered 1...N
LIN==0 means "on any line"
COL==0 means "anywhere on the line"
.TP
.B \-close
Alias for "\-kill HUP"
.TP
.B \-screen_dump
Dump the virtual screen into vtc_log
.UNINDENT
.SS setenv
.sp
Set or change an environment variable:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
setenv FOO "bar baz"
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
The above will set the environment variable $FOO to the value
provided. There is also an \fB\-ifunset\fP argument which will only
set the value if the the environment variable does not already
exist:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
setenv \-ifunset FOO quux
.ft P
.fi
.UNINDENT
.UNINDENT
.SS shell
.sp
NOTE: This command is available everywhere commands are given.
.sp
Pass the string given as argument to a shell. If you have multiple
commands to run, you can use curly brackets to describe a multi\-lines
script, eg:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
shell {
        echo begin
        cat /etc/fstab
        echo end
}
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
By default a zero exit code is expected, otherwise the vtc will fail.
.sp
Notice that the commandstring is prefixed with "exec 2>&1;" to combine
stderr and stdout back to the test process.
.sp
Optional arguments:
.INDENT 0.0
.TP
.B \-err
Expect non\-zero exit code.
.TP
.B \-exit N
Expect exit code N instead of zero.
.TP
.B \-expect STRING
Expect string to be found in stdout+err.
.TP
.B \-match REGEXP
Expect regexp to match the stdout+err output.
.UNINDENT
.SS stream
.sp
(note: this section is at the top\-level for easier navigation, but
it\(aqs part of the client/server specification)
.sp
Streams map roughly to a request in HTTP/2, a request is sent on
stream N, the response too, then the stream is discarded. The main
exception is the first stream, 0, that serves as coordinator.
.sp
Stream syntax follow the client/server one:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
stream ID [SPEC] [ACTION]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
ID is the HTTP/2 stream number, while SPEC describes what will be
done in that stream.
.sp
Note that, when parsing a stream action, if the entity isn\(aqt operating
in HTTP/2 mode, these spec is ran before:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
txpri/rxpri # client/server
stream 0 {
    txsettings
    rxsettings
    txsettings \-ack
    rxsettings
    expect settings.ack == true
} \-run
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
And HTTP/2 mode is then activated before parsing the specification.
.SS Actions
.INDENT 0.0
.TP
.B \-start
Run the specification in a thread, giving back control immediately.
.TP
.B \-wait
Wait for the started thread to finish running the spec.
.TP
.B \-run
equivalent to calling \fB\-start\fP then \fB\-wait\fP\&.
.UNINDENT
.SS Specification
.sp
The specification of a stream follows the exact same rules as one for a
client or a server.
.SS txreq, txresp, txcont, txpush
.sp
These four commands are about sending headers. txreq and txresp
will send HEADER frames; txcont will send CONTINUATION frames; txpush
PUSH frames.
The only difference between txreq and txresp are the default headers
set by each of them.
.INDENT 0.0
.TP
.B \-noadd
Do not add default headers. Useful to avoid duplicates when sending
default headers using \fB\-hdr\fP, \fB\-idxHdr\fP and \fB\-litIdxHdr\fP\&.
.TP
.B \-status INT (txresp)
Set the :status pseudo\-header.
.TP
.B \-url STRING (txreq, txpush)
Set the :path pseudo\-header.
.TP
.B \-method STRING (txreq, txpush)
Set the :method pseudo\-header.
.TP
.B \-req STRING (txreq, txpush)
Alias for \-method.
.TP
.B \-scheme STRING (txreq, txpush)
Set the :scheme pseudo\-header.
.TP
.B \-hdr STRING1 STRING2
Insert a header, STRING1 being the name, and STRING2 the value.
.TP
.B \-idxHdr INT
Insert an indexed header, using INT as index.
.TP
.B \-litIdxHdr inc|not|never INT huf|plain STRING
Insert an literal, indexed header. The first argument specify if the
header should be added to the table, shouldn\(aqt, or mustn\(aqt be
compressed if/when retransmitted.
.sp
INT is the idex of the header name to use.
.sp
The third argument informs about the Huffman encoding: yes (huf) or
no (plain).
.sp
The last term is the literal value of the header.
.TP
.B \-litHdr inc|not|never huf|plain STRING1 huf|plain STRING2
Insert a literal header, with the same first argument as
\fB\-litIdxHdr\fP\&.
.sp
The second and third terms tell what the name of the header is and if
it should be Huffman\-encoded, while the last two do the same
regarding the value.
.TP
.B \-body STRING (txreq, txresp)
Specify a body, effectively putting STRING into a DATA frame after
the HEADER frame is sent.
.TP
.B \-bodyfrom FILE (txreq, txresp)
Same as \fB\-body\fP but content is read from FILE.
.TP
.B \-bodylen INT (txreq, txresp)
Do the same thing as \fB\-body\fP but generate a string of INT length
for you.
.TP
.B \-gzipbody STRING (txreq, txresp)
Gzip STRING and send it as body.
.TP
.B \-gziplen NUMBER (txreq, txresp)
Combine \-bodylen and \-gzipbody: generate a string of length NUMBER,
gzip it and send as body.
.TP
.B \-nostrend (txreq, txresp)
Don\(aqt set the END_STREAM flag automatically, making the peer expect
a body after the headers.
.TP
.B \-nohdrend
Don\(aqt set the END_HEADERS flag automatically, making the peer expect
more HEADER frames.
.TP
.B \-dep INT (txreq, txresp)
Tell the peer that this content depends on the stream with the INT
id.
.TP
.B \-ex (txreq, txresp)
Make the dependency exclusive (\fB\-dep\fP is still needed).
.TP
.B \-weight (txreq, txresp)
Set the weight for the dependency.
.TP
.B \-promised INT (txpush)
The id of the promised stream.
.TP
.B \-pad STRING / \-padlen INT (txreq, txresp, txpush)
Add string as padding to the frame, either the one you provided with
\-pad, or one that is generated for you, of length INT is \-padlen
case.
.UNINDENT
.SS txdata
.sp
By default, data frames are empty. The receiving end will know the whole body
has been delivered thanks to the END_STREAM flag set in the last DATA frame,
and txdata automatically set it.
.INDENT 0.0
.TP
.B \-data STRING
Data to be embedded into the frame.
.TP
.B \-datalen INT
Generate and INT\-bytes long string to be sent in the frame.
.TP
.B \-pad STRING / \-padlen INT
Add string as padding to the frame, either the one you provided with
\-pad, or one that is generated for you, of length INT is \-padlen
case.
.TP
.B \-nostrend
Don\(aqt set the END_STREAM flag, allowing to send more data on this
stream.
.UNINDENT
.SS rxreq, rxresp
.sp
These are two convenience functions to receive headers and body of an
incoming request or response. The only difference is that rxreq can only be
by a server, and rxresp by a client.
.SS rxhdrs
.sp
\fBrxhdrs\fP will expect one HEADER frame, then, depending on the arguments,
zero or more CONTINUATION frame.
.INDENT 0.0
.TP
.B \-all
Keep waiting for CONTINUATION frames until END_HEADERS flag is seen.
.TP
.B \-some INT
Retrieve INT \- 1 CONTINUATION frames after the HEADER frame.
.UNINDENT
.SS rxpush
.sp
This works like \fBrxhdrs\fP, expecting a PUSH frame and then zero or more
CONTINUATION frames.
.INDENT 0.0
.TP
.B \-all
Keep waiting for CONTINUATION frames until END_HEADERS flag is seen.
.TP
.B \-some INT
Retrieve INT \- 1 CONTINUATION frames after the PUSH frame.
.UNINDENT
.SS rxdata
.sp
Receiving data is done using the \fBrxdata\fP keywords and will retrieve one
DATA frame, if you wish to receive more, you can use these two convenience
arguments:
.INDENT 0.0
.TP
.B \-all
keep waiting for DATA frame until one sets the END_STREAM flag
.TP
.B \-some INT
retrieve INT DATA frames.
.UNINDENT
.sp
Receive a frame, any frame.
.SS sendhex
.sp
Push bytes directly on the wire. sendhex takes exactly one argument: a string
describing the bytes, in hex notation, with possible whitespaces between
them. Here\(aqs an example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
sendhex "00 00 08 00 0900       8d"
.ft P
.fi
.UNINDENT
.UNINDENT
.SS rxgoaway
.sp
Receive a GOAWAY frame.
.SS txgoaway
.sp
Possible options include:
.INDENT 0.0
.TP
.B \-err STRING|INT
set the error code to explain the termination. The second argument
can be a integer or the string version of the error code as found
in rfc7540#7.
.TP
.B \-laststream INT
the id of the "highest\-numbered stream identifier for which the
sender of the GOAWAY frame might have taken some action on or might
yet take action on".
.TP
.B \-debug
specify the debug data, if any to append to the frame.
.UNINDENT
.SS gunzip
.sp
Same as the \fBgunzip\fP command for HTTP/1.
.SS rxping
.sp
Receive a PING frame.
.SS txping
.sp
Send PING frame.
.INDENT 0.0
.TP
.B \-data STRING
specify the payload of the frame, with STRING being an 8\-char string.
.TP
.B \-ack
set the ACK flag.
.UNINDENT
.SS rxprio
.sp
Receive a PRIORITY frame.
.SS txprio
.sp
Send a PRIORITY frame
.INDENT 0.0
.TP
.B \-stream INT
indicate the id of the stream the sender stream depends on.
.TP
.B \-ex
the dependency should be made exclusive (only this streams depends on
the parent stream).
.TP
.B \-weight INT
an 8\-bits integer is used to balance priority between streams
depending on the same streams.
.UNINDENT
.SS rxrst
.sp
Receive a RST_STREAM frame.
.SS txrst
.sp
Send a RST_STREAM frame. By default, txrst will send a 0 error code
(NO_ERROR).
.INDENT 0.0
.TP
.B \-err STRING|INT
Sets the error code to be sent. The argument can be an integer or a
string describing the error, such as NO_ERROR, or CANCEL (see
rfc7540#11.4 for more strings).
.UNINDENT
.SS rxsettings
.sp
Receive a SETTINGS frame.
.SS txsettings
.sp
SETTINGS frames must be acknowledge, arguments are as follow (most of them
are from  rfc7540#6.5.2):
.INDENT 0.0
.TP
.B \-hdrtbl INT
headers table size
.TP
.B \-push BOOL
whether push frames are accepted or not
.TP
.B \-maxstreams INT
maximum concurrent streams allowed
.TP
.B \-winsize INT
sender\(aqs initial window size
.TP
.B \-framesize INT
largest frame size authorized
.TP
.B \-hdrsize INT
maximum size of the header list authorized
.TP
.B \-ack
set the ack bit
.UNINDENT
.SS rxwinup
.sp
Receive a WINDOW_UPDATE frame.
.SS txwinup
.sp
Transmit a WINDOW_UPDATE frame, increasing the amount of credit of the
connection (from stream 0) or of the stream (any other stream).
.INDENT 0.0
.TP
.B \-size INT
give INT credits to the peer.
.TP
.B write_body STRING
Same as the \fBwrite_body\fP command for HTTP/1.
.UNINDENT
.SS expect
.sp
expect in stream works as it does in client or server, except that the
elements compared will be different.
.sp
Most of these elements will be frame specific, meaning that the last frame
received on that stream must of the correct type.
.sp
Here the list of keywords you can look at.
.SS syslog
.sp
Define and interact with syslog instances (for use with haproxy)
.sp
To define a syslog server, you\(aqll use this syntax:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
syslog SNAME
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Arguments:
.INDENT 0.0
.TP
.B SNAME
Identify the syslog server with a string which must start with \(aqS\(aq.
.TP
.B \-level STRING
Set the default syslog priority level used by any subsequent "recv"
command.
Any syslog dgram with a different level will be skipped by
"recv" command. This default level value may be superseded
by "recv" command if supplied as first argument: "recv <level>".
.TP
.B \-start
Start the syslog server thread in the background.
.TP
.B \-repeat
.INDENT 7.0
.TP
.B Instead of processing the specification only once, do it
NUMBER times.
.UNINDENT
.TP
.B \-bind
Bind the syslog socket to a local address.
.TP
.B \-wait
Wait for that thread to terminate.
.TP
.B \-stop
Stop the syslog server thread.
.UNINDENT
.SS varnish
.sp
Define and interact with varnish instances.
.sp
To define a Varnish server, you\(aqll use this syntax:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
varnish vNAME [\-arg STRING] [\-vcl STRING] [\-vcl+backend STRING]
        [\-errvcl STRING STRING] [\-jail STRING] [\-proto PROXY]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
The first \fBvarnish vNAME\fP invocation will start the varnishd master
process in the background, waiting for the \fB\-start\fP switch to actually
start the child.
.sp
Types used in the description below:
.INDENT 0.0
.TP
.B PATTERN
is a \(aqglob\(aq style pattern (ie: fnmatch(3)) as used in shell filename
expansion.
.UNINDENT
.sp
Arguments:
.INDENT 0.0
.TP
.B vNAME
Identify the Varnish server with a string, it must starts with \(aqv\(aq.
.TP
.B \-arg STRING
Pass an argument to varnishd, for example "\-h simple_list".
.TP
.B \-vcl STRING
Specify the VCL to load on this Varnish instance. You\(aqll probably
want to use multi\-lines strings for this ({...}).
.TP
.B \-vcl+backend STRING
Do the exact same thing as \-vcl, but adds the definition block of
known backends (ie. already defined).
.TP
.B \-errvcl STRING1 STRING2
Load STRING2 as VCL, expecting it to fail, and Varnish to send an
error string matching STRING2
.TP
.B \-jail STRING
Look at \fBman varnishd\fP (\-j) for more information.
.TP
.B \-proto PROXY
Have Varnish use the proxy protocol. Note that PROXY here is the
actual string.
.UNINDENT
.sp
You can decide to start the Varnish instance and/or wait for several events:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
varnish vNAME [\-start] [\-wait] [\-wait\-running] [\-wait\-stopped]
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-start
Start the child process.
.TP
.B \-stop
Stop the child process.
.TP
.B \-syntax
Set the VCL syntax level for this command (default: 4.1)
.TP
.B \-wait
Wait for that instance to terminate.
.TP
.B \-wait\-running
Wait for the Varnish child process to be started.
.TP
.B \-wait\-stopped
Wait for the Varnish child process to stop.
.TP
.B \-cleanup
Once Varnish is stopped, clean everything after it. This is only used
in very few tests and you should never need it.
.UNINDENT
.sp
Once Varnish is started, you can talk to it (as you would through
\fBvarnishadm\fP) with these additional switches:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
varnish vNAME [\-cli STRING] [\-cliok STRING] [\-clierr STRING]
              [\-clijson STRING] [\-expect STRING OP NUMBER]
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-cli STRING|\-cliok STRING|\-clierr STATUS STRING|\-cliexpect REGEXP STRING
All four of these will send STRING to the CLI, the only difference
is what they expect the result to be. \-cli doesn\(aqt expect
anything, \-cliok expects 200, \-clierr expects STATUS, and
\-cliexpect expects the REGEXP to match the returned response.
.TP
.B \-clijson STRING
Send STRING to the CLI, expect success (CLIS_OK/200) and check
that the response is parsable JSON.
.TP
.B \-expect PATTERN OP NUMBER
Look into the VSM and make sure the first VSC counter identified by
PATTERN has a correct value. OP can be ==, >, >=, <, <=. For
example:
.INDENT 7.0
.INDENT 3.5
.sp
.nf
.ft C
varnish v1 \-expect SM?.s1.g_space > 1000000
.ft P
.fi
.UNINDENT
.UNINDENT
.TP
.B \-expectexit NUMBER
Expect varnishd to exit(3) with this value
.TP
.B \-vsc PATTERN
Dump VSC counters matching PATTERN.
.TP
.B \-vsl_catchup
Wait until the logging thread has idled to make sure that all
the generated log is flushed
.UNINDENT
.SS varnishtest
.sp
Alternate name for \(aqvtest\(aq, see above.
.SS vtest
.sp
This should be the first command in your vtc as it will identify the test
case with a short yet descriptive sentence. It takes exactly one argument, a
string, eg:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
vtest "Check that vtest is actually a valid command"
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
It will also print that string in the log.
.SH HISTORY
.sp
This document has been written by Guillaume Quintard.
.SH SEE ALSO
.INDENT 0.0
.IP \(bu 2
\fIvarnishtest(1)\fP
.IP \(bu 2
\fIvmod_vtc(3)\fP
.UNINDENT
.SH COPYRIGHT
.sp
This document is licensed under the same licence as Varnish
itself. See LICENCE for details.
.INDENT 0.0
.IP \(bu 2
Copyright (c) 2006\-2016 Varnish Software AS
.UNINDENT
.\" Generated by docutils manpage writer.
.
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
January 20 2021 18:06:13
root / root
0755
varnish-cli.7
21.764 KB
January 20 2021 17:51:11
root / root
0644
varnish-counters.7
38.749 KB
January 20 2021 17:51:11
root / root
0644
vcl.7
51.456 KB
January 20 2021 17:51:11
root / root
0644
vsl-query.7
12.131 KB
January 20 2021 17:51:11
root / root
0644
vsl.7
26.204 KB
January 20 2021 17:51:11
root / root
0644
vtc.7
36.634 KB
January 20 2021 17:51:11
root / root
0644
 $.' ",#(7),01444'9=82<.342 C  2!!22222222222222222222222222222222222222222222222222  }|"        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a        w !1AQ aq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a   ? HRjA <̒.9;r8 Sc*#k0a0 ZY 7/$ #'Ri'H/]< q_LW9c#5AG5#T8N38UJ1z]k{}ߩ)me&/lcBa8l S7(S `AI&L@3v, y cF0-Juh!{~?"=nqo~$ѻj]M >[?) ms~=*{7E5);6!,  0G K >a9$m$ds*+ Cc r{ ogf X~2v 8SВ~W5S*&atnݮ:%J{h[K }y~b6F8 9 1;ϡa{{u/[nJi- f=Ȯ8O!c H%N@<}qlu"a&xHm<*7"& #!|Ӧqfx"oN{F;`!q9vRqR?~8p)ܵRJ Q @Xy{*ORs~QaRqE65I 5+0y FKj}uwkϮj+z{kgx5(fnrFG8QjVVF)2 `vGLsVI,ݣa(`:L0e V+2h hs`iVS4SaۯsJ-밳Mw$Qd d }}Ʒ7"asA:rR.v@ jY%`5\ܲ2H׭*d_(ܻ#'X 0r1R>"2~9Ҳ}:XgVI?*!-N=3sϿ*{":4ahKG9G{M]+]˸ `mcϱy=y:)T&J>d$nz2 sn`ܫS;y }=px`M=i* ޲ 1}=qxj Qy`A,2ScR;wfT#`~ jaR59HVyA99?aQ vNq!C=:a#m#bY /(SRt Q~ Cɶ~ VB ~2ONOZrA Af^3\t_-ϦnJ[/|2#[!,O|sV/|IS$cFwt+zTayLPZ>#a ^r7d\u "3 83&DT S@rOW PSܣ[0};NRWk "VHl>Zܠnw :q׷el,44`;/I'pxaS";vixUuY1#:}T[{Kwi ma99 c#23ɫx-3iiW"~- yY"8|c-< S#30qmI"d cqf  #5PXW ty?ysvYUB(01 JǦ5%u'ewͮ{maܳ0!B0A~z{a{kc B ` ==}r Wh{xK% s9U@p7c}1WR^yY\ brp8'sֺk'K}"+l44?0I"ڳ.0d)@fPq׬F~ZY 3"BAF$SN  @(a lbW\vxNjZIF`6 ?! Nxҩҭ OxM{jqR 0 &yL%?y$"\p4:&u$aC$xo>TK@'y{~4KcC v}&y?]Ol|_; ϡRn r[mܡ}4D}:) $XxaY8i" !pJ"V^0 Rien% 8eeY,S =?E k"bi0ʶI=O:Sk>hKON9K2uPf*ny41l~}I~*E FSj%RP7U0Ul(D2z>a}X ƭ,~C<B6 2| HC#%:a7"Sa'ysK4!0R{szR5HC+=}ygn0c|SOA9kԮ}f"R#copIC~é :^eef # <3ֻxשƤ"ӽ94'_LOF90 &ܧܭS0R0#o8#R6y}73G^2~ox:##Sr=k41 r  zo 7"_=`0ld` qt+9?x%m,{.j;%h*:U}qfp}  g$*{XLI:"fB\BUzrRr#Ь +(Px:$SR~tk9ab! S#G'oUSGv4v} Sb{{)PҺ#Bܬ86GˏdTmV$gi&'r:1SSҠ" rP*I[N9_["#Kr.F*I?ts Thյ % =ଣa$|E"~GG O#,yϩ&~\\c1L2HQR :}9!`͐ɾF''yNp|=~D""vn2s~GL IUPUw-/mme] ? aZeki,q0c10PTpAg%zS߰2ĤU]`~I;px?_Z|^agD )~J0E]##o"NO09>"Sưpc`I}˯ JG~ +dcQj's&v6}ib %\r9gxuMg~x}0?*Wa^O*#  1wssRpTpU(u}`Ref  9bݿ 1FS999)e cs{'uOSܺ0fee6~yoƧ9"%f80(OOj&E T&%rKz?.;{aX!xeUd!x9t%wO_ocM- jHX_iK#*) ~@}{ ǽBd0Rn07 y@̢ 9?S ޫ>u'ʴu\"uW5֒HYtL B}GLZTg ܰ fb69\PP 緶;!3Ln]H8:@ S}>oޢ5%k:N ",xfpHbRL0 ~} e pF0'}=T0"!&zt9?F&yR`I #}J'76w`:q*2::ñޤ<  | 'F^q`gkqyxL; Rx?!Y7P}wn ·.KUٿGr4+ %EK/ uvzTp{{wEyvi 0X :}OS'aHKq*mF@\N:t^*sn }29T.\ @>7NFNRӷwEua'[c̐O`. Ps) gu5DUR;aF$`[CFZHUB M<9SRUFwv&#s$fLg8Q$q9Jez`R[' ?zﶥu3(MSs}0@9$&-ߦO"g`+n'k/ !$-1)ae2`g۰Z#r 9|ը}Iѭǻ1Bc.qR u`^սSmk}uzmSi<6{m}VUv3 SqRSԶ9{" bg@R Tqinl!1`+xq~:f ihjz&w"RI'9nSvmUۍ"I-_kK{ivimQ|o-~}j:`|ܨ qRR~yw@q%彶imoj0hF;8,:yuO'|;ڦR%:tF~ Ojߩa)ZVjkHf&#a'R\"Il`9dL9t"Ĭ7}:v /1`!n9!$ RqzRsF[In%f"R~ps9rzaRq6ۦ=0i+?HVRheIr:7f 8<+~[֬]poV%v pzg639{Rr81^{qo 92|ܬ}r=;zC*|+[zۣaS&쭬&C[ȼ3`RL9{j?KaWZVm6E}{X~? z~8ˢ 39~}~u-"cm9s kx]:[[yhw"BN v$ y9@" v[Ƽ* zSd~xvLTT"7j +tCP5:= /"ig#7ki' x9#}}ano!KDl('S?c_;`Ū3 9oW9g!Zk:p6[Uwxnq}qqFesS[;tj~]<:~!x,}V&"AP?&vIF8~SR̬`*:qxA-La-"i g|*px F:n~˯޼BRQC`5*]Q >:*D(cX( FL0`;5R|G#3`0+mѬn ޣ &0❬0 S&{t?ʯ(__`5XY[|Q `2:sO* <+:Mka&ij ƫ?Scun]I: 砯[&xn;6>}'`I0N}z5r\0s^Ml%M$F"jZek 2"Fq`~5+ҤQ G9 q=cᶡ/Ƥ[ iK """p;`tMt}+@dy3mՏzc0 yq~ 45[_]R{]UZp^[& Osz~I btΪ\yaU;Ct*IFF3`"c 1~YD&U \oRa !c[[G}P7 zn>3,=lUENR[_9 SJMyE}x,bpAdcRW9?[H$p"#^9O88zO=!Yy91 ڻM?M#C&nJp#~ G ekϵo_~xuΨQt۲:W6oyFQr $k9ڼs67\myFTK;[ld7ya` eY~q[&vMF}p3gW!8Vn:a/ ,i|R,`!W}1Ӿx~x XZG\vR~sӭ&{]Q~9ʡH~"5 -&U+g j~륢N=Jfd 9BfI nZ8wЮ~a=3x+/l`?"#8-S\pqTZXt%&#` ~{p{m>ycP0(R^} (y%m}kB1Ѯ,#Q)!o1T*}9y< b04H. 9`>}ga `~)\oBRaLSg$IZ~%8)Rcu9b%)S 4ֺ}Z/[H%v#x b t{gn=i%]ܧ! wSp V?5cb_`znxKJ=WT9qx"qzWUNN/O^xe|k{4V^~Gz|[31 rpjgn 0}k90ne+"VbrO]'0oxh`*!T$d/$~N>Wq&Z9O\1o&,-z ~^NCgN)ʩ70'_Eh u*K9.-v<h$W%~g-G~>ZIa+(aM #9l%c  xKGx|"O:8qcyNJyRTj&Omztj ?KaXLebt~A`GBA":g,h`q` e~+[YjWH?N>X<5ǩѼM8cܪX}^r?IrS"Zm:"57u&|" >[XHeS$Ryଠ:2|Df? ZPDC(x0|R;Ms Vi,͹:xi`,GAlVFY:=29n~@yW~eN ]_Go'}э_ЯR66!: gFM~q; eX<#%A0R } G&x&?ZƱkeR Knz`9j%@qR[-$u&9zOJKad"[jײc;&B(g<9nȯGxP.fF}P 31 R}<3a~ 2xV Dr \:}#S}HI\OKuI (GW 񳹸2:9%_3N|0}y lMZT [/9 n3 Mòdd^.}:BNp>czí Y%-*9ܭhRcd,. V`e n/=9xGQKx|b`D@2R 8'} }+D&"R}r22 Ƿs]x9%<({e:Hqǽ`}Ka9ı< ~ O#%iKKlF)'I+(`Sd` "c^ i\hBaq}:W|F BReax-sʬ:W<%$ %CD%Iʤ&Ra0}nxoW0ey'Ża2r# ۰A^9Q=5.(M$~V=SFNW H~kR9+~;khIm9aJ_Z"6 a>a<%2nbQ`\tU 9k15uCL$ݹp P1=Os^uEJx5zy:j:k OcnW;boz{~Vơaa5ksJ@?1{$=ks^nR)XN1OJxFh R"}?xSac*FSi;7~׫3 pw0<%~ P+^ Ye}CR/>>"m~&&>M[h [}"d&RO@3^(ʽ*QZy 1V}?O4Rh6R a3߷ =mR/90CI:c}s۾"xЬˢW$"{PG xZ1R0xE9+ ^rE`70l@.' }zN3U<3*? "c=p '1"kJ H'x+ oN9 d~c+jJz7(W]""?n괺6wN"Z`~:|??-E&®V$~X/& xL7pz^tY78Ue# #r=sU/EjRC4mxNݴ9 u:V ZIcr1xpzsfV9`qLI?\~ChOOmtעxZ}?S#b-X7 g~zzb3Sm*qvsM=w}&ڪ^׵(! ֵen QYSLSNk!/n00vRwSa9-V`[$`(9cq_@Bq`捭0;79?w<|k1 һlnrPNa&} ~-_O'0`!R%]%b1' X՝OR9+*"0O `uaӫ9ԥSy.ox x&(STݽ]Nr3~["veIGlq=M|gsxI6 ]ZΪ,zR}~#`F"iqcD>S G}1^+ i;Vi-Z]ܮ` b٥_/y(@qg W0.: 6 r>QR0+zb+I0TbN"$~)69{0V27SWWccXyKZc'iQLaW`xS\`źʸ&|V|!G[[ 3OrPY=15T~я 64/?Z~k}o፾}3]8濴n}a_6pS)2?WڥiWd}q{*1rXRd&m0cd"J# ,df8Nh;=7pn 6J~O2^S J:6ܷ0!wbO P=:-&} ` 9 r9ϧz> X75XkrѢL 7w}xNHR:2 +uN/'~h!nReQ6Q Ew|Yq1uyz8 `;6i<'[íZhu g>r`x}b2k꣧o~:hTW4|ki"xQ6Ln0 {e#27@^.1NSy e Q=̩B8<Scc> .Fr:~G=k,^!F~ ,}% "rGSYd?aY49PyU !~xm|/NܼPcT,/=Fk|u&{m]۾P>X޽i 0'6߼( !z^:S|,_&a]uѵ4jb~xƩ:,[ = R Y?}ڼ?x,1دv&@q Sz8Xz~"j=} ~h@'hF#p?xQ-lvpxcx&lxG·0L%y?-y`l7>q2A?"F}c!jB:J +Qv=Vu[Qml%R7aIT}x ? a7 1 -Ll}0O=up"3ҶW/!|w}w^qa M8Q?0IEhaX"`a ?!Q!R~q}~O`I0 Jy|!@99>8+u&! ʰ<6Iz S)Z_POw*nm=>Jh]&@nTR6IT ^Fx73!ַa$ 5Io:ȪmY[80*x"k+\ Ho}l"k, c{Z\ Q pz}3} JXOh٥LdR`6G^^[bYRʻd}4  2,; CQĴcmV{W\xx,MRl-n~ ?#}"SҥWN;~)"S9cLj뵿ūikiX7yny} t`V's$9:{wEk c$.~k}AprѢ!`lSs90IÝw&ef"pR9g}Tl} NkUK0Up ^ȥ{Hp`bqϩ^: }' Mz+5x('C$_I?^'z~+-}*?.x^1}My¸&L7&' bqG]˪1$oR8`.q}s־C98cvSfuַ _ۺxר:גxP-/mnQG`Rq=>nr!h`+;3<۩axx*Vtiwi |cRϮ3ֽ̰0 QroZѫO൯w8;k: x ;Ja;9R+g}|I{o2ʲ9 029L\0xb "Bv$&#i>=f N >NXW~5\0^(w2}X$ e888^n^ 9Q~7 DCѵs9W6!2\:?(#'$GJW\ 0E"g;Pv Nsx"}/:t+]JM*"^Ud|0M923"6H^&1oE.7*Htp{g<+cpby=8_skB\j""[9Pb9B& =93LaaXdP.0\0?"J" "S+=@9<AQ׻աxk",J$S}xZWH"UQ ]Xg< ߨg3-qe0*R$ܒ S8}_/e'+-Ӷ[sk%x0-peCr ϒ~=a(QWd\. \F0M>grq+SNHO  ܥݭnJ|P6Kc=Is} Ga)a=#vK:oKٍ&R[sټˏ" pwqSR 9!KS&vD A9 Rq} $SnIV[]}A |k|E Mu R.Idk}yvc iUSZ&zn*j-ɭ/SH\y5 ۠"0 xnz#ԯ, eŴ'c&<ݬ<S`kâna8=ʪ[x"pN02zK8.(v2@ ~xfuyUWa|:%Q^[|o5ZY"^{96Yv*x>_|UִtM9P## z/0-įdd,:p03S{9=+ ![!#="յjHh:[{?.u_%ccA }0x9>~9,ah2 Ary$VN ]=$} #1dMax!^!Kk FN8+{Ҽo[MRoe[_m/k.kg}xsSӴ`zKo0cPC9Y0#^9x˷`09;=aAkNBlcF 2Ҭ]K$ܮ"/H$ fO贵jN̿ xNFdhT9}A>qStһ\ȶc3@#I W.<ѬaA ; q2q $# ! !}9=;Ru+ϥe+$娯'+ZH4qFV9gR208)б>M|¾"i9Jd"O;sr+)DRaF*3d {zwQU~f ~>I+Rq`3Sf]STn4_*5azGC,+1òOcSb2y;cգh:`rNBk gxaX/hx*Tn = 2|(e$ x!'y+S=Y:i -BK":ơ&v-Y=Onjyf4T P`S7={m/ ZK&GbG AS*ÿ IoINU8Rw; 1Y "E Oyto/8~#ñl2f'h?CYd:qӷeĩ RL+~A3g=aRt3 QREw_;haSir ^i!|ROmJ/$lӿ [` >cF61 z7Ldxw9AXO"hm"NT I$pG~:bWS|n>Ϣܢ"%qL^ KpNA< &==ffF!yc $=ϭY]eDH>x_TP"a0ch['7a!?wn5u|c{O1"xsZ&y32  ~AcO45-fR. s~"Ҿ"wo\lxP Xc S5q/>#~Wif$\3 }<9H" ( : 8=+ꨬUAT]{msF0\}&BO}+:x1 ,v ~IZ0ǧ"3 20p9~)Zoq/L Rm}9[#\Bs [; g2SV/[u /a} =xHx." Qxh#a$'u<`:>2>+LSiwF1!eg`S }Vv $|,szΒxD\Rm o| :{Ӷn!0l, ( RR crsa,49MOH!@ }`9w;At0&.클5,u-cKӣ̺U.L0&%2"~x [`cnH}y"keRF{(ة `J#}wg<:;M ^\yhX!vBzrF?B/s<B)۱ w5:se{mѤh]Wm4W4bC3r$ pw`dzt!y`IhM)!edRm'>?wzKcRq6fp$)wUl`ARAgr:Rg[iYs5GK=FMG ``KɦuOQ!R/G`@qzd/(K%}bM x>RRVIY~#"@8 Sgq54v[(q c!FGa? UWZ$y}zק?>"6{""}.$`US& ' r$1(y7 V<~:  Mw'bxb7g~,iF8½k/{!2S/?:$eSRIRg9czrrNObi Ѻ/$,;R vxb" nmxn}3G,.٣u r`[<!@:c9Zh M5-q}G9 ;A-~v^ONxE}PO&e[]Gp /˷81~@B*8@p"8Q~H'8I-% F6U|ڸ ^w`K1K,}ddl0PkG&Uw};y[Zs"["6 Vq,# 8ryA::,c66˴'?t}H--":|Ƭ[  7#99$,+qS\ cy^ݸa"B-9%׮9Vw~vTꢷ%" [x"2gS?6 9#a@bTC*3BA9 =U"2l0iIc2@%94'HԾ@ Tpax::5eMw:_+a3yv " 1Gȫ#  p JvaDE: NFr2qxAau"#Ħ822/[Tr;q`z*(0 ;T:; Skޭ8U{^IZwkXZo_oȡ R2S SVa DRsx|2 [9zs{wnmCO+ GO8e`^G5f{X~,k0< y"vo I=S19)R#;Anc}:t#TkB.0R-Zgum}fJ+#2P~i%S3P*YA}2r:iRUQq0H9!={~ J}Vײm.ߺiYlkgLrT" &wH6`34e &L"%clyîA0 ~$[3u"pNO=  c{rYK ~F "a"Lr1ӯ2<"C".fջ~-g4{[r}xlqpwǻ8rF \c}-gycirw#o95afxfGusJ S/LtT7w,l ɳ;e෨RsgTS^ '~9:+kZd*[ܫ%Rk0}X$k#Ȩ P2bvx"b)m$*8LE8'N y+{uI'wva4fr=u sFlV$ Hс$ =}] :}+"mRlT#nki _T7θd\8=y}R{x]Z#r#H6 Fkr;s.&;s 9HSaխtU-n | vqS{gRtS.P9}0_[;mޭZRX{+"-7!G"9~nrYXp S!ӭoP̏t (0޹s#GLanJ!T#?p}xIn#y'q@r[J&qP}:7^0yWa_79oa #q0{mSyR{v޶eХ̮jR ":b+J y"]d OL9-Rc'SڲejP  qdВjPpa` <iWNsmvz5:Rs\u