comparison lib/Test/Nginx.pm @ 560:f3434de79a7f

Tests: upstream zone tests with ssl backend.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 23 Apr 2015 14:01:22 +0300
parents 05cbe9e2def8
children 5c3946ebd867
comparison
equal deleted inserted replaced
559:9208d8243926 560:f3434de79a7f
122 => '(?s)^(?!.*--without-http_upstream_ip_hash_module)', 122 => '(?s)^(?!.*--without-http_upstream_ip_hash_module)',
123 upstream_least_conn 123 upstream_least_conn
124 => '(?s)^(?!.*--without-http_upstream_least_conn_mod)', 124 => '(?s)^(?!.*--without-http_upstream_least_conn_mod)',
125 upstream_keepalive 125 upstream_keepalive
126 => '(?s)^(?!.*--without-http_upstream_keepalive_modu)', 126 => '(?s)^(?!.*--without-http_upstream_keepalive_modu)',
127 upstream_zone
128 => '(?s)^(?!.*--without-http_upstream_zone_module)',
127 http => '(?s)^(?!.*--without-http(?!\S))', 129 http => '(?s)^(?!.*--without-http(?!\S))',
128 cache => '(?s)^(?!.*--without-http-cache)', 130 cache => '(?s)^(?!.*--without-http-cache)',
129 pop3 => '(?s)^(?!.*--without-mail_pop3_module)', 131 pop3 => '(?s)^(?!.*--without-mail_pop3_module)',
130 imap => '(?s)^(?!.*--without-mail_imap_module)', 132 imap => '(?s)^(?!.*--without-mail_imap_module)',
131 smtp => '(?s)^(?!.*--without-mail_smtp_module)', 133 smtp => '(?s)^(?!.*--without-mail_smtp_module)',
133 split_clients 135 split_clients
134 => '(?s)^(?!.*--without-http_split_clients_module)', 136 => '(?s)^(?!.*--without-http_split_clients_module)',
135 stream => '--with-stream(?!\S)', 137 stream => '--with-stream(?!\S)',
136 stream_upstream_least_conn 138 stream_upstream_least_conn
137 => '(?s)^(?!.*--without-stream_upstream_least_conn_m)', 139 => '(?s)^(?!.*--without-stream_upstream_least_conn_m)',
140 stream_upstream_zone
141 => '(?s)^(?!.*--without-stream_upstream_zone_module)',
138 ); 142 );
139 143
140 my $re = $regex{$feature}; 144 my $re = $regex{$feature};
141 $re = $feature if !defined $re; 145 $re = $feature if !defined $re;
142 146