#include "utils/math.hpp" int main() { using namespace polybar; "min"_test = [] { expect(math_util::min(2, 5) == 2); expect(math_util::min(-8, -50) == -50); expect(math_util::min(0, -5) == 0); }; "min"_test = [] { expect(math_util::max(2, 5) == 5); expect(math_util::max(-8, -50) == -8); expect(math_util::max(0, (1 << 8) - 5)); }; "cap"_test = [] { expect(math_util::cap(8, 0, 10) == 8); expect(math_util::cap(-8, 0, 10) == 0); expect(math_util::cap(15, 0, 10) == 10); expect(math_util::cap(20.5f, 0.0f, 30.0f) == 20.5f); expect(math_util::cap(1.0f, 0.0f, 2.0f) == 1.0f); expect(math_util::cap(-2.0f, -5.0f, 5.0f) == -2.0f); expect(math_util::cap(1.0f, 0.0f, 0.0f) == 0); }; "percentage"_test = [] { expect(math_util::percentage(5.5f, 0.0f, 10.0f) == 55.0f); expect(math_util::percentage(5.55f, 0.0f, 10.0f) == 56); expect(math_util::percentage(5.25f, 0.0f, 12.0f) == 43.75f); expect(math_util::percentage(5, 0, 12) == 41); expect(math_util::percentage(20.5f, 0.0f, 100.0f) == 20.5f); expect(math_util::percentage(4.5f, 1.0f, 6.0f) == 70.0f); expect(math_util::percentage(20.5f, 0.0f, 100.0f) == 21); expect(math_util::percentage(4, 2, 6) == 50); expect(math_util::percentage(0, -10, 10) == 50); expect(math_util::percentage(-10, -10, 10) == 0); expect(math_util::percentage(10, -10, 10) == 100); expect(math_util::percentage(10, 0, 100) == 10); }; "percentage_to_value"_test = [] { expect(math_util::percentage_to_value(50, 5) == 3); expect(math_util::percentage_to_value(50, 5) == 2.5f); expect(math_util::percentage_to_value(0, 5) == 0); expect(math_util::percentage_to_value(10, 5) == 1); expect(math_util::percentage_to_value(20, 5) == 1); expect(math_util::percentage_to_value(30, 5) == 2); expect(math_util::percentage_to_value(40, 5) == 2); expect(math_util::percentage_to_value(50, 5) == 3); expect(math_util::percentage_to_value(100, 5) == 5); expect(math_util::percentage_to_value(200, 5) == 5); expect(math_util::percentage_to_value(-30, 5) == 0); }; "ranged_percentage_to_value"_test = [] { expect(math_util::percentage_to_value(50, 200, 300) == 250); expect(math_util::percentage_to_value(50, 1, 5) == 3); }; "round_to_nearest_10"_test = [] { expect(math_util::nearest_10(52) == 50); expect(math_util::nearest_10(9.1) == 10); expect(math_util::nearest_10(95.0) == 100); expect(math_util::nearest_10(94.9) == 90); }; "round_to_nearest_5"_test = [] { expect(math_util::nearest_5(52) == 50); expect(math_util::nearest_5(9.1) == 10); expect(math_util::nearest_5(95.0) == 95); expect(math_util::nearest_5(94.9) == 95); expect(math_util::nearest_5(1) == 0); expect(math_util::nearest_5(99.99) == 100); }; }