]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
test/mgr: clang-format changes to test_ttlcache
authorstzuraski898 <steven.zuraski@ibm.com>
Wed, 28 Jan 2026 21:49:54 +0000 (21:49 +0000)
committerstzuraski898 <steven.zuraski@ibm.com>
Wed, 28 Jan 2026 21:49:54 +0000 (21:49 +0000)
Fixes: https://tracker.ceph.com/issues/72938
Signed-off-by: stzuraski898 <steven.zuraski@ibm.com>
src/test/mgr/test_ttlcache.cc

index a1ee0a8626f42a03b7766d8dade26de60df40db1..2719aa49a381ada08c476fcf5212199f79551ec2 100644 (file)
@@ -1,24 +1,26 @@
 #include <iostream>
 
-#include "mgr/TTLCache.h"
 #include "gtest/gtest.h"
+#include "mgr/TTLCache.h"
 
 using namespace std;
 
-TEST(TTLCache, Get) {
-       TTLCache<string, int> c{100};
-       c.insert("foo", 1);
-       int foo = c.get("foo");
-       ASSERT_EQ(foo, 1);
+TEST(TTLCache, Get)
+{
+  TTLCache<string, int> c{100};
+  c.insert("foo", 1);
+  int foo = c.get("foo");
+  ASSERT_EQ(foo, 1);
 }
 
-TEST(TTLCache, Erase) {
-       TTLCache<string, int> c{100};
-       c.insert("foo", 1);
-       int foo = c.get("foo");
-       ASSERT_EQ(foo, 1);
-       c.erase("foo");
-  try{
+TEST(TTLCache, Erase)
+{
+  TTLCache<string, int> c{100};
+  c.insert("foo", 1);
+  int foo = c.get("foo");
+  ASSERT_EQ(foo, 1);
+  c.erase("foo");
+  try {
     foo = c.get("foo");
     FAIL();
   } catch (std::out_of_range& e) {
@@ -26,22 +28,24 @@ TEST(TTLCache, Erase) {
   }
 }
 
-TEST(TTLCache, Clear) {
-       TTLCache<string, int> c{100};
-       c.insert("foo", 1);
-       c.insert("foo2", 2);
-       c.clear();
-       ASSERT_FALSE(c.size());
+TEST(TTLCache, Clear)
+{
+  TTLCache<string, int> c{100};
+  c.insert("foo", 1);
+  c.insert("foo2", 2);
+  c.clear();
+  ASSERT_FALSE(c.size());
 }
 
-TEST(TTLCache, NoTTL) {
-       TTLCache<string, int> c{100};
-       c.insert("foo", 1);
-       int foo = c.get("foo");
-       ASSERT_EQ(foo, 1);
-       c.set_ttl(0);
-       c.insert("foo2", 2);
-  try{
+TEST(TTLCache, NoTTL)
+{
+  TTLCache<string, int> c{100};
+  c.insert("foo", 1);
+  int foo = c.get("foo");
+  ASSERT_EQ(foo, 1);
+  c.set_ttl(0);
+  c.insert("foo2", 2);
+  try {
     foo = c.get("foo2");
     FAIL();
   } catch (std::out_of_range& e) {
@@ -49,22 +53,24 @@ TEST(TTLCache, NoTTL) {
   }
 }
 
-TEST(TTLCache, SizeLimit) {
-       TTLCache<string, int> c{100, 2};
-       c.insert("foo", 1);
-       c.insert("foo2", 2);
-       c.insert("foo3", 3);
-       ASSERT_EQ(c.size(), 2);
+TEST(TTLCache, SizeLimit)
+{
+  TTLCache<string, int> c{100, 2};
+  c.insert("foo", 1);
+  c.insert("foo2", 2);
+  c.insert("foo3", 3);
+  ASSERT_EQ(c.size(), 2);
 }
 
-TEST(TTLCache, HitRatio) {
-       TTLCache<string, int> c{100};
-       c.insert("foo", 1);
-       c.insert("foo2", 2);
-       c.insert("foo3", 3);
-       c.get("foo2");
-       c.get("foo3");
-       std::pair<uint64_t, uint64_t> hit_miss_ratio = c.get_hit_miss_ratio();
-       ASSERT_EQ(std::get<1>(hit_miss_ratio), 3);
-       ASSERT_EQ(std::get<0>(hit_miss_ratio), 2);
+TEST(TTLCache, HitRatio)
+{
+  TTLCache<string, int> c{100};
+  c.insert("foo", 1);
+  c.insert("foo2", 2);
+  c.insert("foo3", 3);
+  c.get("foo2");
+  c.get("foo3");
+  std::pair<uint64_t, uint64_t> hit_miss_ratio = c.get_hit_miss_ratio();
+  ASSERT_EQ(std::get<1>(hit_miss_ratio), 3);
+  ASSERT_EQ(std::get<0>(hit_miss_ratio), 2);
 }