forked from google/gson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFieldNamingPolicyTest.java
More file actions
152 lines (133 loc) · 4.54 KB
/
FieldNamingPolicyTest.java
File metadata and controls
152 lines (133 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
* Copyright (C) 2021 Google Inc.
*
* Licensed 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.
*/
package com.google.gson;
import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.Truth.assertWithMessage;
import com.google.gson.functional.FieldNamingTest;
import java.lang.reflect.Field;
import java.util.Locale;
import org.junit.jupiter.api.Test;
/**
* Performs tests directly against {@link FieldNamingPolicy}; for integration tests see {@link
* FieldNamingTest}.
*/
public class FieldNamingPolicyTest {
@Test
public void testSeparateCamelCase() {
// Map from original -> expected
String[][] argumentPairs = {
{"a", "a"},
{"ab", "ab"},
{"Ab", "Ab"},
{"aB", "a_B"},
{"AB", "A_B"},
{"A_B", "A__B"},
{"firstSecondThird", "first_Second_Third"},
{"__", "__"},
{"_123", "_123"}
};
for (String[] pair : argumentPairs) {
assertThat(FieldNamingPolicy.separateCamelCase(pair[0], '_')).isEqualTo(pair[1]);
}
}
@Test
public void testUpperCaseFirstLetter() {
// Map from original -> expected
String[][] argumentPairs = {
{"a", "A"},
{"ab", "Ab"},
{"AB", "AB"},
{"_a", "_A"},
{"_ab", "_Ab"},
{"__", "__"},
{"_1", "_1"},
// Not a letter, but has uppercase variant (should not be uppercased)
// See https://github.com/google/gson/issues/1965
{"\u2170", "\u2170"},
{"_\u2170", "_\u2170"},
{"\u2170a", "\u2170A"},
};
for (String[] pair : argumentPairs) {
assertThat(FieldNamingPolicy.upperCaseFirstLetter(pair[0])).isEqualTo(pair[1]);
}
}
/** Upper-casing policies should be unaffected by default Locale. */
@Test
public void testUpperCasingLocaleIndependent() throws Exception {
class Dummy {
@SuppressWarnings("unused")
int i;
}
FieldNamingPolicy[] policies = {
FieldNamingPolicy.UPPER_CAMEL_CASE,
FieldNamingPolicy.UPPER_CAMEL_CASE_WITH_SPACES,
FieldNamingPolicy.UPPER_CASE_WITH_UNDERSCORES,
};
Field field = Dummy.class.getDeclaredField("i");
String name = field.getName();
String expected = name.toUpperCase(Locale.ROOT);
Locale oldLocale = Locale.getDefault();
// Set Turkish as Locale which has special case conversion rules
Locale.setDefault(new Locale("tr"));
try {
// Verify that default Locale has different case conversion rules
assertWithMessage("Test setup is broken")
.that(name.toUpperCase(Locale.getDefault()))
.doesNotMatch(expected);
for (FieldNamingPolicy policy : policies) {
// Should ignore default Locale
assertWithMessage("Unexpected conversion for %s", policy)
.that(policy.translateName(field))
.matches(expected);
}
} finally {
Locale.setDefault(oldLocale);
}
}
/** Lower casing policies should be unaffected by default Locale. */
@Test
public void testLowerCasingLocaleIndependent() throws Exception {
class Dummy {
@SuppressWarnings({"unused", "ConstantField"})
int I;
}
FieldNamingPolicy[] policies = {
FieldNamingPolicy.LOWER_CASE_WITH_DASHES,
FieldNamingPolicy.LOWER_CASE_WITH_DOTS,
FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES,
};
Field field = Dummy.class.getDeclaredField("I");
String name = field.getName();
String expected = name.toLowerCase(Locale.ROOT);
Locale oldLocale = Locale.getDefault();
// Set Turkish as Locale which has special case conversion rules
Locale.setDefault(new Locale("tr"));
try {
// Verify that default Locale has different case conversion rules
assertWithMessage("Test setup is broken")
.that(name.toLowerCase(Locale.getDefault()))
.doesNotMatch(expected);
for (FieldNamingPolicy policy : policies) {
// Should ignore default Locale
assertWithMessage("Unexpected conversion for %s", policy)
.that(policy.translateName(field))
.matches(expected);
}
} finally {
Locale.setDefault(oldLocale);
}
}
}