Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/gtest/utilities/test_stringUtils.cpp
41145 views
1
/*
2
* Copyright (c) 2018, 2021, 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
25
#include "precompiled.hpp"
26
#include "memory/resourceArea.hpp"
27
#include "utilities/stringUtils.hpp"
28
#include "unittest.hpp"
29
30
TEST(StringUtils, similarity) {
31
const char* str1 = "the quick brown fox jumps over the lazy dog";
32
const char* str2 = "the quick brown fox jumps over the lazy doh";
33
EXPECT_NEAR(0.95349, StringUtils::similarity(str1, strlen(str1), str2, strlen(str2)), 1e-5);
34
}
35
36
static size_t count_char(const char* s, size_t len, char ch) {
37
size_t cnt = 0;
38
39
for (size_t i = 0; i < len; ++i) {
40
if (s[i] == ch) {
41
cnt++;
42
}
43
}
44
return cnt;
45
}
46
47
static size_t count_char(const stringStream& ss, char ch) {
48
return count_char(ss.base(), ss.size(), ch);
49
}
50
51
static const char* const lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit,\n" \
52
"sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n" \
53
"Lacinia at quis risus sed vulputate odio ut enim blandit.\n" \
54
"Amet risus nullam eget felis eget.\n" \
55
"Viverra orci sagittis eu volutpat odio facilisis mauris sit.\n" \
56
"Erat velit scelerisque in dictum non.\n";
57
58
59
TEST_VM(StringUtils, replace_no_expand) {
60
ResourceMark rm;
61
stringStream ss;
62
63
ss.print_raw(lorem);
64
size_t newlines = count_char(ss, '\n');
65
char* s2 = ss.as_string(false);
66
int deleted = StringUtils::replace_no_expand(s2, "\n", "");
67
ASSERT_EQ(newlines, (size_t)deleted);
68
69
newlines = count_char(s2, strlen(s2), '\n');
70
ASSERT_EQ(newlines, (size_t)0);
71
72
deleted = StringUtils::replace_no_expand(s2, "\n", "");
73
ASSERT_EQ(deleted, 0);
74
}
75
76