mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Since the project is now hosted at the JS Foundation we can move to unified copyright notices for the project. Starting with this commit all future contributions to the project should only carry the following copyright notice (except for third-party code which requires copyright information to be preserved): "Copyright JS Foundation and other contributors, http://js.foundation" (without the quotes) This avoids cluttering the codebase with contributor-specific copyright notices which have a higher maintenance overhead and tend to get outdated quickly. Also dropping the year from the copyright notices helps to avoid yearly code changes just to update the copyright notices. Note that each contributor still retains full copyright ownership of his/her contributions and the respective authorship is tracked very accurately via Git. JerryScript-DCO-1.0-Signed-off-by: Tilmann Scheller t.scheller@samsung.com
177 lines
6.3 KiB
C
177 lines
6.3 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "ecma-builtin-helpers.h"
|
|
#include "ecma-globals.h"
|
|
#include "ecma-helpers.h"
|
|
|
|
#include "test-common.h"
|
|
|
|
#define MS_PER_DAY ((ecma_number_t) 86400000)
|
|
#define MS_PER_YEAR ((ecma_number_t) 365 * MS_PER_DAY)
|
|
#define START_OF_GREGORIAN_CALENDAR ((ecma_number_t) (-1970 * MS_PER_YEAR \
|
|
- (1970 / 4) * MS_PER_DAY \
|
|
+ (1970 / 100) * MS_PER_DAY \
|
|
- (1970 / 400) * MS_PER_DAY \
|
|
- MS_PER_DAY))
|
|
|
|
/**
|
|
* Unit test's main function.
|
|
*/
|
|
int
|
|
main ()
|
|
{
|
|
/* int ecma_date_day (time)*/
|
|
|
|
TEST_ASSERT (ecma_date_day (0) == 0);
|
|
TEST_ASSERT (ecma_date_day (MS_PER_DAY) == 1);
|
|
|
|
/* ecma_number_t ecma_date_time_within_day (time) */
|
|
|
|
TEST_ASSERT (ecma_date_time_within_day (0) == 0);
|
|
TEST_ASSERT (ecma_date_time_within_day (42) == 42);
|
|
TEST_ASSERT (ecma_date_time_within_day (42.51) == 42.51);
|
|
TEST_ASSERT (ecma_date_time_within_day (MS_PER_DAY + 42) == 42);
|
|
|
|
/* int ecma_date_days_in_year (year) */
|
|
|
|
TEST_ASSERT (ecma_date_days_in_year (0) == 366);
|
|
TEST_ASSERT (ecma_date_days_in_year (1600) == 366);
|
|
TEST_ASSERT (ecma_date_days_in_year (1603) == 365);
|
|
TEST_ASSERT (ecma_date_days_in_year (1900) == 365);
|
|
TEST_ASSERT (ecma_date_days_in_year (1970) == 365);
|
|
TEST_ASSERT (ecma_date_days_in_year (2000) == 366);
|
|
TEST_ASSERT (ecma_date_days_in_year (2000.45) == 366);
|
|
TEST_ASSERT (ecma_date_days_in_year (2012) == 366);
|
|
TEST_ASSERT (ecma_date_days_in_year (2015) == 365);
|
|
TEST_ASSERT (ecma_date_days_in_year (285616 + 1970) == 365);
|
|
TEST_ASSERT (ecma_date_days_in_year (-1970) == 365);
|
|
|
|
/* int ecma_date_day_from_year (year) */
|
|
|
|
TEST_ASSERT (ecma_date_day_from_year (1969) == -365);
|
|
TEST_ASSERT (ecma_date_day_from_year (1970) == 0);
|
|
TEST_ASSERT (ecma_date_day_from_year (1971) == 365);
|
|
TEST_ASSERT (ecma_date_day_from_year (2000) == 10957);
|
|
|
|
/* int ecma_date_year_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_year_from_time (0) == 1970);
|
|
TEST_ASSERT (ecma_date_year_from_time (0) == 1970);
|
|
TEST_ASSERT (ecma_date_year_from_time (MS_PER_DAY) == 1970);
|
|
TEST_ASSERT (ecma_date_year_from_time ((MS_PER_DAY) * (ecma_number_t) 365 - 1) == 1970);
|
|
TEST_ASSERT (ecma_date_year_from_time (MS_PER_DAY * (ecma_number_t) 365) == 1971);
|
|
TEST_ASSERT (ecma_date_year_from_time (MS_PER_DAY * (ecma_number_t) (365 * (2015 - 1970)))
|
|
== 2014);
|
|
TEST_ASSERT (ecma_date_year_from_time (MS_PER_DAY * (ecma_number_t) (365.25 * (2015 - 1970)))
|
|
== 2015);
|
|
TEST_ASSERT (ecma_date_year_from_time (-MS_PER_YEAR) == 1969);
|
|
TEST_ASSERT (ecma_date_year_from_time (-1970 * MS_PER_YEAR) == 1);
|
|
TEST_ASSERT (ecma_date_year_from_time (START_OF_GREGORIAN_CALENDAR) == 0);
|
|
TEST_ASSERT (ecma_date_year_from_time (START_OF_GREGORIAN_CALENDAR - 1) == -1);
|
|
TEST_ASSERT (ecma_date_year_from_time (START_OF_GREGORIAN_CALENDAR - 3 * MS_PER_YEAR) == -3);
|
|
|
|
/* int ecma_date_day_within_year (time) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* int ecma_date_month_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_month_from_time (START_OF_GREGORIAN_CALENDAR) == 0);
|
|
TEST_ASSERT (ecma_date_month_from_time (0) == 0);
|
|
TEST_ASSERT (ecma_date_month_from_time (-MS_PER_DAY) == 11);
|
|
TEST_ASSERT (ecma_date_month_from_time (31 * MS_PER_DAY) == 1);
|
|
|
|
/* int ecma_date_date_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_date_from_time (START_OF_GREGORIAN_CALENDAR) == 1);
|
|
TEST_ASSERT (ecma_date_date_from_time (0) == 1);
|
|
TEST_ASSERT (ecma_date_date_from_time (-MS_PER_DAY) == 31);
|
|
TEST_ASSERT (ecma_date_date_from_time (31 * MS_PER_DAY) == 1);
|
|
|
|
/* int ecma_date_week_day (ecma_number_t time) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_local_tza () */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_daylight_saving_ta (time) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_local_time (time) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_utc (time) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_hour_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_hour_from_time (START_OF_GREGORIAN_CALENDAR) == 0);
|
|
TEST_ASSERT (ecma_date_hour_from_time (0) == 0);
|
|
TEST_ASSERT (ecma_date_hour_from_time (-MS_PER_DAY) == 0);
|
|
TEST_ASSERT (ecma_date_hour_from_time (-1) == 23);
|
|
|
|
/* ecma_number_t ecma_date_min_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_min_from_time (START_OF_GREGORIAN_CALENDAR) == 0);
|
|
TEST_ASSERT (ecma_date_min_from_time (0) == 0);
|
|
TEST_ASSERT (ecma_date_min_from_time (-MS_PER_DAY) == 0);
|
|
TEST_ASSERT (ecma_date_min_from_time (-1) == 59);
|
|
|
|
/* ecma_number_t ecma_date_sec_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_sec_from_time (START_OF_GREGORIAN_CALENDAR) == 0);
|
|
TEST_ASSERT (ecma_date_sec_from_time (0) == 0);
|
|
TEST_ASSERT (ecma_date_sec_from_time (-MS_PER_DAY) == 0);
|
|
TEST_ASSERT (ecma_date_sec_from_time (-1) == 59);
|
|
|
|
/* ecma_number_t ecma_date_ms_from_time (time) */
|
|
|
|
TEST_ASSERT (ecma_date_ms_from_time (START_OF_GREGORIAN_CALENDAR) == 0);
|
|
TEST_ASSERT (ecma_date_ms_from_time (0) == 0);
|
|
TEST_ASSERT (ecma_date_ms_from_time (-MS_PER_DAY) == 0);
|
|
TEST_ASSERT (ecma_date_ms_from_time (-1) == 999);
|
|
|
|
/* ecma_number_t ecma_date_make_time (hour, min, sec, ms) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_make_day (year, month, date) */
|
|
|
|
TEST_ASSERT (ecma_date_make_day (1970, 0, 1) == 0);
|
|
TEST_ASSERT (ecma_date_make_day (1970, -1, 1) == -31);
|
|
TEST_ASSERT (ecma_date_make_day (1970, 0, 2.5) == 1);
|
|
TEST_ASSERT (ecma_date_make_day (1970, 1, 35) == 65);
|
|
TEST_ASSERT (ecma_date_make_day (1970, 13, 35) == 430);
|
|
TEST_ASSERT (ecma_date_make_day (2016, 2, 1) == 16861);
|
|
TEST_ASSERT (ecma_date_make_day (2016, 8, 31) == 17075);
|
|
TEST_ASSERT (ecma_date_make_day (2016, 9, 1) == 17075);
|
|
|
|
/* ecma_number_t ecma_date_make_date (day, time) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
/* ecma_number_t ecma_date_time_clip (year) */
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return 0;
|
|
} /* main */
|