YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/string_case-test.cc
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
33
#include <gtest/gtest.h>
34
35
#include "yb/util/string_case.h"
36
37
using std::string;
38
39
namespace yb {
40
41
1
TEST(TestStringCase, TestSnakeToCamel) {
42
1
  string out;
43
1
  SnakeToCamelCase("foo_bar", &out);
44
1
  ASSERT_EQ("FooBar", out);
45
46
47
1
  SnakeToCamelCase("foo-bar", &out);
48
1
  ASSERT_EQ("FooBar", out);
49
50
1
  SnakeToCamelCase("foobar", &out);
51
1
  ASSERT_EQ("Foobar", out);
52
1
}
53
54
1
TEST(TestStringCase, TestAllCapsToCamel) {
55
1
  string out;
56
1
  AllCapsToCamelCase("FOO_BAR", &out);
57
1
  ASSERT_EQ("FooBar", out);
58
59
60
1
  AllCapsToCamelCase("FOO-BAR", &out);
61
1
  ASSERT_EQ("FooBar", out);
62
63
1
  AllCapsToCamelCase("FOOBAR", &out);
64
1
  ASSERT_EQ("Foobar", out);
65
1
}
66
67
1
TEST(TestStringCase, TestToUpperCase) {
68
1
  string out;
69
1
  ToUpperCase(string("foo"), &out);
70
1
  ASSERT_EQ("FOO", out);
71
1
  ToUpperCase(string("foo bar-BaZ"), &out);
72
1
  ASSERT_EQ("FOO BAR-BAZ", out);
73
1
}
74
75
1
TEST(TestStringCase, TestToUpperCaseInPlace) {
76
1
  string in_out = "foo";
77
1
  ToUpperCase(in_out, &in_out);
78
1
  ASSERT_EQ("FOO", in_out);
79
1
}
80
81
1
TEST(TestStringCase, TestCapitalize) {
82
1
  string word = "foo";
83
1
  Capitalize(&word);
84
1
  ASSERT_EQ("Foo", word);
85
86
1
  word = "HiBerNATe";
87
1
  Capitalize(&word);
88
1
  ASSERT_EQ("Hibernate", word);
89
1
}
90
91
} // namespace yb