| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| BEGIN { |
| # restarts cause the memory cache to be emptied, don't do this |
| $ENV{TEST_NGINX_FORCE_RESTART_ON_TEST} = 0; |
| } |
| |
| use t::APISIX 'no_plan'; |
| |
| repeat_each(1); |
| no_long_string(); |
| no_root_location(); |
| use_hup(); |
| |
| add_block_preprocessor(sub { |
| my ($block) = @_; |
| |
| if (!defined $block->yaml_config) { |
| $block->set_value("yaml_config", <<'EOF'); |
| deployment: |
| role: traditional |
| role_traditional: |
| config_provider: yaml |
| admin: |
| admin_key: |
| - name: admin |
| key: edd1c9f034335f136f87ad84b625c8f1 |
| role: admin |
| EOF |
| } |
| |
| if (!defined $block->no_error_log) { |
| $block->set_value("no_error_log", ""); |
| } |
| }); |
| |
| run_tests(); |
| |
| __DATA__ |
| |
| === TEST 1: send /healthcheck should fail because config is not loaded yet |
| --- init_by_lua_block |
| require "resty.core" |
| apisix = require("apisix") |
| local shared_dict = ngx.shared["standalone-config"] |
| shared_dict:delete("config") |
| --- config |
| location /t { |
| content_by_lua_block { |
| local http = require("resty.http") |
| local healthcheck_uri = "http://127.0.0.1:7085" .. "/status/ready" |
| local httpc = http.new() |
| local res, _ = httpc:request_uri(healthcheck_uri, {method = "GET", keepalive = false}) |
| ngx.status = res.status |
| } |
| } |
| --- request |
| GET /t |
| --- error_code: 503 |
| |
| |
| |
| === TEST 2: configure route and send /healthcheck should pass |
| --- config |
| location /t { |
| content_by_lua_block { |
| ngx.sleep(1) -- wait for event broadcast started |
| |
| local t = require("lib.test_admin").test |
| local code, body = t('/apisix/admin/configs', |
| ngx.HTTP_PUT, |
| [[{"routes":[{"id":"r1","uri":"/r1","upstream":{"nodes":{"127.0.0.1:1980":1},"type":"roundrobin"},"plugins":{"proxy-rewrite":{"uri":"/hello"}}}]}]], |
| nil, |
| { |
| ["X-API-KEY"] = "edd1c9f034335f136f87ad84b625c8f1", |
| ["X-Digest"] = "1" |
| } |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| end |
| ngx.sleep(1) |
| local http = require("resty.http") |
| local healthcheck_uri = "http://127.0.0.1:7085" .. "/status/ready" |
| local httpc = http.new() |
| local res, _ = httpc:request_uri(healthcheck_uri, {method = "GET", keepalive = false}) |
| ngx.status = res.status |
| } |
| } |
| --- request |
| GET /t |
| --- error_code: 200 |