mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
fd0dbd1ebf
With the goal of centralizing all tests in the system, this is a first step to establish a Tests sub-tree. It will contain all of the unit tests and test harnesses for the various components in the system.
43 lines
869 B
C++
43 lines
869 B
C++
/*
|
|
* Copyright (c) 2021, Brian Gianforcaro <bgianf@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/StringView.h>
|
|
#include <LibTest/TestCase.h>
|
|
#include <time.h>
|
|
|
|
const auto expected_epoch = "Thu Jan 1 00:00:00 1970\n"sv;
|
|
|
|
TEST_CASE(asctime)
|
|
{
|
|
time_t epoch = 0;
|
|
auto result = asctime(localtime(&epoch));
|
|
EXPECT_EQ(expected_epoch, StringView(result));
|
|
}
|
|
|
|
TEST_CASE(asctime_r)
|
|
{
|
|
char buffer[26] {};
|
|
time_t epoch = 0;
|
|
auto result = asctime_r(localtime(&epoch), buffer);
|
|
EXPECT_EQ(expected_epoch, StringView(result));
|
|
}
|
|
|
|
TEST_CASE(ctime)
|
|
{
|
|
time_t epoch = 0;
|
|
auto result = ctime(&epoch);
|
|
|
|
EXPECT_EQ(expected_epoch, StringView(result));
|
|
}
|
|
|
|
TEST_CASE(ctime_r)
|
|
{
|
|
char buffer[26] {};
|
|
time_t epoch = 0;
|
|
auto result = ctime_r(&epoch, buffer);
|
|
|
|
EXPECT_EQ(expected_epoch, StringView(result));
|
|
}
|