blob: 551381a0a4e4c0ef4784b08add134b8591d7a547 [file] [log] [blame]
/** @file
TextView unit tests.
@section license License
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 "catch.hpp"
#include "tsutil/Metrics.h"
using ts::Metrics;
TEST_CASE("Metrics", "[libtsapi][Metrics]")
{
auto &m = Metrics::instance();
SECTION("iterator")
{
auto [name, value] = *m.begin();
REQUIRE(value == 0);
REQUIRE(name == "proxy.process.api.metrics.bad_id");
REQUIRE(m.begin() != m.end());
REQUIRE(++m.begin() == m.end());
auto it = m.begin();
it++;
REQUIRE(it == m.end());
}
SECTION("New metric")
{
auto fooid = Metrics::Counter::create("foo");
REQUIRE(fooid == 1);
REQUIRE(m.name(fooid) == "foo");
REQUIRE(m[fooid].load() == 0);
m.increment(fooid);
REQUIRE(m[fooid].load() == 1);
}
SECTION("operator[] & store")
{
auto storeid = Metrics::Gauge::create("store");
m[storeid].store(42);
REQUIRE(m[storeid].load() == 42);
}
SECTION("Span allocation")
{
ts::Metrics::IdType span_id;
auto fooid = m.lookup("foo");
auto span = Metrics::Counter::createSpan(17, &span_id);
REQUIRE(span.size() == 17);
REQUIRE(fooid == 1);
REQUIRE(span_id == 3);
m.rename(span_id + 0, "span.0");
m.rename(span_id + 1, "span.1");
m.rename(span_id + 2, "span.2");
REQUIRE(m.name(fooid) == "foo");
REQUIRE(m.name(span_id + 0) == "span.0");
REQUIRE(m.name(span_id + 1) == "span.1");
REQUIRE(m.name(span_id + 2) == "span.2");
m.rename(fooid, "foo-new");
REQUIRE(m.name(fooid) == "foo-new");
REQUIRE(m.lookup("foo") == ts::Metrics::NOT_FOUND);
REQUIRE(m.lookup("foo-new") == fooid);
}
SECTION("lookup")
{
auto nm = m.lookup("notametric");
REQUIRE(nm == ts::Metrics::NOT_FOUND);
auto mid = Metrics::Counter::create("ametric");
auto fmid = m.lookup("ametric");
REQUIRE(mid == fmid);
}
SECTION("derived")
{
auto a = Metrics::Counter::createPtr("m-a");
auto b = Metrics::Counter::createPtr("m-b");
auto c = Metrics::Counter::createPtr("m-c");
auto d = Metrics::Counter::createPtr("m-d");
auto e = Metrics::Counter::createPtr("m-e");
ts::Metrics::Derived::derive({
{"derived-a-c", {a, b, c} }, // test using ptr
{"derived-cd", {m.lookup("m-c"), "m-d"}}, // using IdType and string
{"derived-ce", {"derived-cd", "m-e"} } // using another derived
});
auto derived = m.lookup("derived-a-c");
auto derivedcd = m.lookup("derived-cd");
auto derivedce = m.lookup("derived-ce");
REQUIRE(derived != ts::Metrics::NOT_FOUND);
REQUIRE(m[derived].load() == 0);
a->increment(1);
b->increment(1);
b->increment(1);
c->increment(1);
d->increment(4);
e->increment(5);
ts::Metrics::Derived::update_derived();
REQUIRE(m[derived].load() == 4);
REQUIRE(m[derivedcd].load() == 5);
REQUIRE(m[derivedce].load() == 10);
}
}