mirror of
https://gitee.com/an-tao/drogon.git
synced 2024-12-04 12:47:42 +08:00
fd2a612945
* add digest filter in examples * Add getMd5() function to the public API Co-authored-by: Adrián Ortiz Gutiérrez <aortiz@MacBook-Pro.local> Co-authored-by: antao <antao2002@gmail.com>
19 lines
541 B
C++
19 lines
541 B
C++
#include <drogon/utils/Utilities.h>
|
|
#include <gtest/gtest.h>
|
|
#include <string>
|
|
|
|
TEST(Md5Test, md5)
|
|
{
|
|
EXPECT_EQ(drogon::utils::getMd5(
|
|
"123456789012345678901234567890123456789012345"
|
|
"678901234567890123456789012345678901234567890"
|
|
"1234567890"),
|
|
"49CB3608E2B33FAD6B65DF8CB8F49668");
|
|
EXPECT_EQ(drogon::utils::getMd5("1"), "C4CA4238A0B923820DCC509A6F75849B");
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
} |