1. solved the previous delayed unit test file size is too large (1.7G+) and the unit test link time is too long problem problems 2. Unify all unit tests into one file to significantly reduce unit test execution time to less than 3 mins 3. temporarily disable stream_load_test.cpp, metrics_action_test.cpp, load_channel_mgr_test.cpp because it will re-implement part of the code and affect other tests
98 lines
3.3 KiB
C++
98 lines
3.3 KiB
C++
// 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.
|
|
|
|
#include "http/action/metrics_action.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "http/http_channel.h"
|
|
#include "http/http_request.h"
|
|
#include "http/http_response.h"
|
|
#include "util/metrics.h"
|
|
|
|
namespace doris {
|
|
|
|
// Mock part
|
|
const char* s_expect_response = nullptr;
|
|
|
|
void HttpChannel::send_reply(HttpRequest* request, HttpStatus status, const std::string& content) {
|
|
EXPECT_STREQ(s_expect_response, content.c_str());
|
|
}
|
|
|
|
class MetricsActionTest : public testing::Test {
|
|
public:
|
|
MetricsActionTest() {}
|
|
virtual ~MetricsActionTest() {}
|
|
void SetUp() override { _evhttp_req = evhttp_request_new(nullptr, nullptr); }
|
|
void TearDown() override {
|
|
if (_evhttp_req != nullptr) {
|
|
evhttp_request_free(_evhttp_req);
|
|
}
|
|
}
|
|
|
|
private:
|
|
evhttp_request* _evhttp_req = nullptr;
|
|
};
|
|
|
|
TEST_F(MetricsActionTest, prometheus_output) {
|
|
MetricRegistry metric_registry("test");
|
|
std::shared_ptr<MetricEntity> entity =
|
|
metric_registry.register_entity("metrics_action_test.prometheus_output");
|
|
|
|
IntGauge* cpu_idle = nullptr;
|
|
DEFINE_GAUGE_METRIC_PROTOTYPE_2ARG(cpu_idle, MetricUnit::PERCENT);
|
|
INT_GAUGE_METRIC_REGISTER(entity, cpu_idle);
|
|
|
|
IntCounter* put_requests_total = nullptr;
|
|
DEFINE_COUNTER_METRIC_PROTOTYPE_5ARG(put_requests_total, MetricUnit::NOUNIT, "", requests_total,
|
|
Labels({{"type", "put"}, {"path", "/sports"}}));
|
|
INT_COUNTER_METRIC_REGISTER(entity, put_requests_total);
|
|
|
|
cpu_idle->set_value(50);
|
|
put_requests_total->increment(2345);
|
|
|
|
s_expect_response =
|
|
"# TYPE test_cpu_idle gauge\n"
|
|
"test_cpu_idle 50\n"
|
|
"# TYPE test_requests_total counter\n"
|
|
"test_requests_total{path=\"/sports\",type=\"put\"} 2345\n";
|
|
HttpRequest request(_evhttp_req);
|
|
MetricsAction action(&metric_registry);
|
|
action.handle(&request);
|
|
}
|
|
|
|
TEST_F(MetricsActionTest, prometheus_no_prefix) {
|
|
MetricRegistry metric_registry("");
|
|
std::shared_ptr<MetricEntity> entity =
|
|
metric_registry.register_entity("metrics_action_test.prometheus_no_prefix");
|
|
|
|
IntGauge* cpu_idle = nullptr;
|
|
DEFINE_GAUGE_METRIC_PROTOTYPE_2ARG(cpu_idle, MetricUnit::PERCENT);
|
|
INT_GAUGE_METRIC_REGISTER(entity, cpu_idle);
|
|
|
|
cpu_idle->set_value(50);
|
|
|
|
s_expect_response =
|
|
"# TYPE cpu_idle gauge\n"
|
|
"cpu_idle 50\n";
|
|
HttpRequest request(_evhttp_req);
|
|
MetricsAction action(&metric_registry);
|
|
action.handle(&request);
|
|
}
|
|
|
|
} // namespace doris
|