1 /*
2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 import org.testng.annotations.DataProvider;
25 import org.testng.annotations.Test;
26 
27 import static org.testng.Assert.assertEquals;
28 
29 /*
30  * @test
31  * @bug 8077559
32  * @summary Tests Compact String. This one is for String.equalsIgnoreCase.
33  * @run testng/othervm -XX:+CompactStrings EqualsIgnoreCase
34  * @run testng/othervm -XX:-CompactStrings EqualsIgnoreCase
35  */
36 
37 public class EqualsIgnoreCase extends CompactString {
38 
39     @DataProvider
provider()40     public Object[][] provider() {
41         return new Object[][] {
42 
43         new Object[] { STRING_EMPTY, "", true },
44                 new Object[] { STRING_L1, "a", true },
45                 new Object[] { STRING_L2, "aB", true },
46                 new Object[] { STRING_L4, "AbCd", true },
47                 new Object[] { STRING_LLONG, "aBcDeFgH", true },
48                 new Object[] { STRING_U1, "\uFF41", true },
49                 new Object[] { STRING_U1, "\uFF21", true },
50                 new Object[] { STRING_U2, "\uFF41\uFF42", true },
51                 new Object[] { STRING_U2, "\uFF41\uFF22", true },
52                 new Object[] { STRING_U2, "\uFF21\uFF42", true },
53                 new Object[] { STRING_M12, "\uFF41a", true },
54                 new Object[] { STRING_M12, "\uFF21A", true },
55                 new Object[] { STRING_M11, "a\uFF41", true },
56                 new Object[] { STRING_M11, "A\uFF21", true },
57 
58         };
59     }
60 
61     @Test(dataProvider = "provider")
testEqualsIgnoreCase(String str, String anotherString, boolean expected)62     public void testEqualsIgnoreCase(String str, String anotherString,
63             boolean expected) {
64         map.get(str)
65                 .forEach(
66                         (source, data) -> {
67                             assertEquals(
68                                     data.equalsIgnoreCase(anotherString),
69                                     expected,
70                                     String.format(
71                                             "testing String(%s).equalsIgnoreCase(%s), source : %s, ",
72                                             escapeNonASCIIs(data),
73                                             escapeNonASCIIs(anotherString),
74                                             source));
75                         });
76     }
77 }
78