Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
einsteinathome
boinc
Commits
9c87e50c
Unverified
Commit
9c87e50c
authored
Jan 14, 2021
by
Christian Beer
Committed by
GitHub
Jan 14, 2021
Browse files
Merge pull request #4120 from hectorespert/lib_base64_tests
Test base64 library
parents
679588d8
6b104a49
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
9c87e50c
...
...
@@ -35,6 +35,9 @@
/html/nbproject/
*.project
# CLion files
.idea
#
*.pfx
*.pvk
...
...
tests/.gitignore
0 → 100644
View file @
9c87e50c
gtest
tests/unit-tests/lib/test_base64.cpp
0 → 100644
View file @
9c87e50c
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2020 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
#include "gtest/gtest.h"
#include "base64.h"
using
namespace
std
;
namespace
test_base64
{
// The fixture for testing class Foo.
class
test_base64
:
public
::
testing
::
Test
{
protected:
// You can remove any or all of the following functions if its body
// is empty.
test_base64
()
{
// You can do set-up work for each test here.
}
virtual
~
test_base64
()
{
// You can do clean-up work that doesn't throw exceptions here.
}
// If the constructor and destructor are not enough for setting up
// and cleaning up each test, you can define the following methods:
virtual
void
SetUp
()
{
// Code here will be called immediately after the constructor (right
// before each test).
}
virtual
void
TearDown
()
{
// Code here will be called immediately after each test (right
// before the destructor).
}
// Objects declared here can be used by all tests in the test case for Foo.
};
TEST_F
(
test_base64
,
r_base64_encode
)
{
EXPECT_EQ
(
r_base64_encode
(
"Boinc"
),
"Qm9pbmM="
);
EXPECT_EQ
(
r_base64_encode
(
"B o i n c"
),
"QiBvIGkgbiBj"
);
EXPECT_EQ
(
r_base64_encode
(
"Bòíncüñ"
),
"QsOyw61uY8O8w7E="
);
EXPECT_EQ
(
r_base64_encode
(
"äöüß"
),
"w6TDtsO8w58="
);
EXPECT_EQ
(
r_base64_encode
(
"new
\n
line"
),
"bmV3CmxpbmU="
);
}
TEST_F
(
test_base64
,
r_base64_decode
)
{
EXPECT_EQ
(
r_base64_decode
(
"Qm9pbmM="
),
"Boinc"
);
EXPECT_EQ
(
r_base64_decode
(
"QiBvIGkgbiBj"
),
"B o i n c"
);
EXPECT_EQ
(
r_base64_decode
(
"QsOyw61uY8O8w7E="
),
"Bòíncüñ"
);
EXPECT_EQ
(
r_base64_decode
(
"w6TDtsO8w58="
),
"äöüß"
);
EXPECT_EQ
(
r_base64_decode
(
"bmV3CmxpbmU="
),
"new
\n
line"
);
}
}
// namespace
win_build/unittests_vs2019.vcxproj
View file @
9c87e50c
...
...
@@ -94,6 +94,7 @@
<ClCompile
Include=
"..\tests\unit-tests\lib\test_parse.cpp"
/>
<ClCompile
Include=
"..\tests\unit-tests\lib\test_str_util.cpp"
/>
<ClCompile
Include=
"..\tests\unit-tests\lib\test_url.cpp"
/>
<ClCompile
Include=
"..\tests\unit-tests\lib\test_base64.cpp"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"libboinc_vs2019.vcxproj"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment