Sn0rt commented on issue #10636:
URL: https://github.com/apache/apisix/issues/10636#issuecomment-1855100204

   a new test case for question 2 has been reproduced 
   
   
![image](https://github.com/apache/apisix/assets/2706161/8e92ead4-3b65-4c74-989e-587051015dee)
   
   
   ```lua
   #
   # 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.
   #
   use t::APISIX 'no_plan';
   
   no_root_location();
   repeat_each(1);
   log_level('info');
   no_root_location();
   no_shuffle();
   
   add_block_preprocessor(sub {
       my ($block) = @_;
   
       if (!$block->http_config) {
           my $http_config = <<'_EOC_';
   server {
       listen 8765;
   
       location /ping {
           return 200 '8765';
       }
   
       location /healthz {
           return 200 'ok';
       }
   }
   
   server {
       listen 8766;
   
       location /ping {
           return 200 '8766';
       }
   
       location /healthz {
           return 500;
       }
   }
   
   
   server {
       listen 8767;
       location /ping {
           return 200 '8767';
       }
   
       location /healthz {
           return 200 'ok';
       }
   }
   
   _EOC_
           $block->set_value("http_config", $http_config);
       }
   
       if (!$block->request) {
           $block->set_value("request", "GET /t");
       }
   
   });
   
   run_tests;
   
   __DATA__
   
   === TEST 1: https health check (two health nodes)
   --- config
       location /t {
           content_by_lua_block {
               local function find_apisix_upstream_status(multiLineStr)
                   local pattern = "(apisix_upstream_status{.-)$"
                   local result = {}
   
                   for line in multiLineStr:gmatch("[^\r\n]+") do
                       local match = line:match(pattern)
                       if match then
                           table.insert(result, match)
                       end
                   end
   
                   return result
               end
   
               local t = require("lib.test_admin")
               local core = require("apisix.core")
               local data = {
                   uri = "/ping",
                   upstream = {
                       nodes = {
                           ["127.0.0.1:8765"] = 1,
                           ["127.0.0.1:8766"] = 1,
                           ["127.0.0.1:8767"] = 1
                       },
                       retries = 2,
                       checks = {
                           active = {
                               http_path = "/healthz",
                               healthy = {
                                   interval = 1,
                                   successes = 1
                               },
                               unhealthy = {
                                   interval = 1,
                                   http_failures = 1
                               },
                           }
                       }
                   }
               }
               local code, body = t.test('/apisix/admin/routes/1',
                   ngx.HTTP_PUT, core.json.encode(data))
               if code >= 300 then
                   ngx.status = code
                   ngx.say(body)
                   return
               end
   
               local http = require("resty.http")
               local httpc = http.new()
               local uri = "http://127.0.0.1:"; .. ngx.var.server_port .. "/ping"
               local _, _ = httpc:request_uri(uri, {method = "GET", keepalive = 
false})
               ngx.sleep(3)
   
               local healthcheck_uri = "http://127.0.0.1:"; .. 
ngx.var.server_port .. "/v1/healthcheck/routes/1"
               local httpc = http.new()
               local route_res, _ = httpc:request_uri(healthcheck_uri, {method 
= "GET", keepalive = false})
               local route_json_data = core.json.decode(route_res.body)
               assert(#route_json_data.nodes == 3)
               --- get the metrics
               local metric_uri = "http://127.0.0.1:"; .. ngx.var.server_port .. 
"/apisix/prometheus/metrics"
               local metric_res, _ = httpc:request_uri(metric_uri, {method = 
"GET"})
               local apisix_upstream_status_body = 
find_apisix_upstream_status(metric_res.body)
               for _, match in ipairs(apisix_upstream_status_body) do
                   ngx.say("before: " .. match)
               end
               ngx.say("will remove a node for test metric")
   
               local new_data = {
                   uri = "/ping",
                   upstream = {
                       nodes = {
                           ["127.0.0.1:8765"] = 1,
                           ["127.0.0.1:8766"] = 1
                       },
                       retries = 2,
                       checks = {
                           active = {
                               http_path = "/healthz",
                               healthy = {
                                   interval = 1,
                                   successes = 1
                               },
                               unhealthy = {
                                   interval = 1,
                                   http_failures = 1
                               },
                           }
                       }
                   }
               }
               local code, body = t.test('/apisix/admin/routes/1',
                   ngx.HTTP_PUT, core.json.encode(new_data))
               if code >= 300 then
                   ngx.status = code
                   ngx.say(body)
                   return
               end
   
               ngx.sleep(1.5)
               --- get the metrics again
               local metric_uri = "http://127.0.0.1:"; .. ngx.var.server_port .. 
"/apisix/prometheus/metrics"
               local metric_res, _ = httpc:request_uri(metric_uri, {method = 
"GET"})
               local apisix_upstream_status_body = 
find_apisix_upstream_status(metric_res.body)
               for _, match in ipairs(apisix_upstream_status_body) do
                   ngx.say("after: " .. match)
               end
           }
       }
   --- request
   GET /t
   --- response_body
   before: 
apisix_upstream_status{name="/apisix/routes/1",ip="127.0.0.1",port="8765"} 1
   before: 
apisix_upstream_status{name="/apisix/routes/1",ip="127.0.0.1",port="8766"} 0
   before: 
apisix_upstream_status{name="/apisix/routes/1",ip="127.0.0.1",port="8767"} 1
   will remove a node for test metric
   after: 
apisix_upstream_status{name="/apisix/routes/1",ip="127.0.0.1",port="8765"} 1
   after: 
apisix_upstream_status{name="/apisix/routes/1",ip="127.0.0.1",port="8766"} 0
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to