2019-05-13 14:28:54 +08:00
|
|
|
package t::APISix;
|
2019-04-11 16:53:21 +08:00
|
|
|
|
|
|
|
use lib 'lib';
|
|
|
|
use Cwd qw(cwd);
|
|
|
|
use Test::Nginx::Socket::Lua::Stream -Base;
|
|
|
|
|
|
|
|
my $pwd = cwd();
|
|
|
|
|
|
|
|
sub read_file($) {
|
|
|
|
my $infile = shift;
|
|
|
|
open my $in, $infile
|
|
|
|
or die "cannot open $infile for reading: $!";
|
|
|
|
my $cert = do { local $/; <$in> };
|
|
|
|
close $in;
|
|
|
|
$cert;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $yaml_config = read_file("conf/config.yaml");
|
|
|
|
|
|
|
|
add_block_preprocessor(sub {
|
|
|
|
my ($block) = @_;
|
|
|
|
|
|
|
|
my $http_config = $block->http_config // '';
|
|
|
|
$http_config .= <<_EOC_;
|
2019-05-11 10:14:46 +08:00
|
|
|
lua_package_path "$pwd/lua/?.lua;/usr/share/lua/5.1/?.lua;;";
|
2019-05-17 15:58:15 +08:00
|
|
|
lua_package_cpath '/usr/lib64/lua/5.1/?.so;;';
|
2019-04-11 16:53:21 +08:00
|
|
|
|
|
|
|
init_by_lua_block {
|
|
|
|
require "resty.core"
|
2019-05-13 14:28:54 +08:00
|
|
|
apisix = require("apisix")
|
|
|
|
apisix.init()
|
2019-05-08 10:38:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
init_worker_by_lua_block {
|
2019-05-13 14:28:54 +08:00
|
|
|
require("apisix").init_worker()
|
2019-04-11 16:53:21 +08:00
|
|
|
}
|
|
|
|
_EOC_
|
|
|
|
|
|
|
|
$block->set_value("http_config", $http_config);
|
|
|
|
|
2019-05-08 10:38:45 +08:00
|
|
|
my $config = $block->config;
|
|
|
|
if (!$config) {
|
|
|
|
$config .= <<_EOC_;
|
|
|
|
location / {
|
|
|
|
access_by_lua_block {
|
2019-05-13 14:28:54 +08:00
|
|
|
apisix.access_phase()
|
2019-05-08 10:38:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
header_filter_by_lua_block {
|
2019-05-13 14:28:54 +08:00
|
|
|
apisix.header_filter_phase()
|
2019-05-08 10:38:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
log_by_lua_block {
|
2019-05-13 14:28:54 +08:00
|
|
|
apisix.log_phase()
|
2019-05-08 10:38:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_EOC_
|
|
|
|
}
|
|
|
|
|
|
|
|
$block->set_value("config", $config);
|
|
|
|
|
|
|
|
my $user_yaml_config = $block->yaml_config;
|
|
|
|
if ($user_yaml_config) {
|
|
|
|
$yaml_config = $user_yaml_config;
|
|
|
|
}
|
|
|
|
|
2019-04-11 16:53:21 +08:00
|
|
|
my $user_files = $block->user_files;
|
|
|
|
$user_files .= <<_EOC_;
|
|
|
|
>>> ../conf/config.yaml
|
|
|
|
$yaml_config
|
|
|
|
_EOC_
|
|
|
|
|
|
|
|
$block->set_value("user_files", $user_files);
|
|
|
|
|
|
|
|
$block;
|
|
|
|
});
|
|
|
|
|
|
|
|
1;
|