string_ut.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #include <library/cpp/testing/gtest/gtest.h>
  2. #include <library/cpp/yt/string/string.h>
  3. namespace NYT {
  4. namespace {
  5. ////////////////////////////////////////////////////////////////////////////////
  6. struct TTestCase
  7. {
  8. const char* UnderCase;
  9. const char* CamelCase;
  10. };
  11. static std::vector<TTestCase> TestCases {
  12. { "kenny", "Kenny" },
  13. { "south_park", "SouthPark" },
  14. { "a", "A" },
  15. { "a_b_c", "ABC" },
  16. { "reed_solomon_6_3", "ReedSolomon_6_3" },
  17. { "lrc_12_2_2", "Lrc_12_2_2" },
  18. { "0", "0" },
  19. { "0_1_2", "0_1_2" },
  20. { "int64", "Int64" }
  21. };
  22. ////////////////////////////////////////////////////////////////////////////////
  23. TEST(TStringTest, UnderscoreCaseToCamelCase)
  24. {
  25. for (const auto& testCase : TestCases) {
  26. auto result = UnderscoreCaseToCamelCase(testCase.UnderCase);
  27. EXPECT_STREQ(testCase.CamelCase, result.c_str())
  28. << "Original: \"" << testCase.UnderCase << '"';
  29. }
  30. }
  31. TEST(TStringTest, CamelCaseToUnderscoreCase)
  32. {
  33. for (const auto& testCase : TestCases) {
  34. auto result = CamelCaseToUnderscoreCase(testCase.CamelCase);
  35. EXPECT_STREQ(testCase.UnderCase, result.c_str())
  36. << "Original: \"" << testCase.CamelCase << '"';
  37. }
  38. }
  39. ////////////////////////////////////////////////////////////////////////////////
  40. } // namespace
  41. } // namespace NYT