tests/testthat/_snaps/gregorian-year-day.md

validates value ranges

Code
  year_day(50000)
Condition
  Error in `year_day()`:
  ! `year` must be between [-32767, 32767].
  i Invalid results at locations: 1.
Code
  year_day(2020, 367)
Condition
  Error in `year_day()`:
  ! `day` must be between [1, 366].
  i Invalid results at locations: 1.
Code
  year_day(2020, 1, 24)
Condition
  Error in `year_day()`:
  ! `hour` must be between [0, 23].
  i Invalid results at locations: 1.
Code
  year_day(2020, 1, 1, 60)
Condition
  Error in `year_day()`:
  ! `minute` must be between [0, 59].
  i Invalid results at locations: 1.
Code
  year_day(2020, 1, 1, 1, 60)
Condition
  Error in `year_day()`:
  ! `second` must be between [0, 59].
  i Invalid results at locations: 1.
Code
  year_day(2020, 1, 1, 1, 1, 1000, subsecond_precision = "millisecond")
Condition
  Error in `year_day()`:
  ! `subsecond` must be between [0, 999].
  i Invalid results at locations: 1.
Code
  year_day(2020, 1, 1, 1, 1, 1e+06, subsecond_precision = "microsecond")
Condition
  Error in `year_day()`:
  ! `subsecond` must be between [0, 999999].
  i Invalid results at locations: 1.
Code
  year_day(2020, 1, 1, 1, 1, 1e+09, subsecond_precision = "nanosecond")
Condition
  Error in `year_day()`:
  ! `subsecond` must be between [0, 999999999].
  i Invalid results at locations: 1.

full ptype is correct

[1] "year_day<year>"
[1] "year_day<hour>"
[1] "year_day<nanosecond>"
[1] "year_day<day>"

abbreviated ptype is correct

[1] "yd<year>"
[1] "yd<hour>"
[1] "yd<nano>"
[1] "yd<day>"

setters recycling works both ways

Code
  x <- year_day(1:2)
  y <- 1:3
  set_day(x, y)
Condition
  Error in `set_field_year_day()`:
  ! Can't recycle `x` (size 2) to match `value` (size 3).

setters require integer value

Code
  set_year(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_day(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_hour(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_minute(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_second(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_millisecond(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_microsecond(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1
Code
  set_nanosecond(x, 1.5)
Condition
  Error in `set_field_year_day()`:
  ! Can't convert from `value` <double> to <integer> due to loss of precision.
  * Locations: 1

setters check value range

Code
  set_year(x, 1e+05)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [-32767, 32767].
  i Invalid results at locations: 1.
Code
  set_day(x, 367)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [1, 366].
  i Invalid results at locations: 1.
Code
  set_hour(x, 24)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [0, 23].
  i Invalid results at locations: 1.
Code
  set_minute(x, 60)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [0, 59].
  i Invalid results at locations: 1.
Code
  set_second(x, 60)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [0, 59].
  i Invalid results at locations: 1.
Code
  set_millisecond(x, -1)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [0, 999].
  i Invalid results at locations: 1.
Code
  set_microsecond(x, -1)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [0, 999999].
  i Invalid results at locations: 1.
Code
  set_nanosecond(x, -1)
Condition
  Error in `set_field_year_day()`:
  ! `value` must be between [0, 999999999].
  i Invalid results at locations: 1.

setters require minimum precision

Code
  set_hour(year_day(year = 1), 1)
Condition
  Error in `set_hour()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be at least "day".
  i `x` has a precision of "year".
Code
  set_minute(year_day(year = 1, day = 1), 1)
Condition
  Error in `set_minute()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be at least "hour".
  i `x` has a precision of "day".
Code
  set_second(year_day(year = 1, day = 1, hour = 1), 1)
Condition
  Error in `set_second()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be at least "minute".
  i `x` has a precision of "hour".
Code
  set_millisecond(year_day(year = 1, day = 1, hour = 1, minute = 1), 1)
Condition
  Error in `set_millisecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "millisecond".
  i `x` has a precision of "minute".
Code
  set_microsecond(year_day(year = 1, day = 1, hour = 1, minute = 1), 1)
Condition
  Error in `set_microsecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "microsecond".
  i `x` has a precision of "minute".
Code
  set_nanosecond(year_day(year = 1, day = 1, hour = 1, minute = 1), 1)
Condition
  Error in `set_nanosecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "nanosecond".
  i `x` has a precision of "minute".

setters require correct subsecond precision

Code
  set_millisecond(year_day(year = 1, day = 3, hour = 4, minute = 5, second = 6,
    subsecond = 7, subsecond_precision = "microsecond"), 1)
Condition
  Error in `set_millisecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "millisecond".
  i `x` has a precision of "microsecond".
Code
  set_millisecond(year_day(year = 1, day = 3, hour = 4, minute = 5, second = 6,
    subsecond = 7, subsecond_precision = "nanosecond"), 1)
Condition
  Error in `set_millisecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "millisecond".
  i `x` has a precision of "nanosecond".
Code
  set_microsecond(year_day(year = 1, day = 3, hour = 4, minute = 5, second = 6,
    subsecond = 7, subsecond_precision = "millisecond"), 1)
Condition
  Error in `set_microsecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "microsecond".
  i `x` has a precision of "millisecond".
Code
  set_microsecond(year_day(year = 1, day = 3, hour = 4, minute = 5, second = 6,
    subsecond = 7, subsecond_precision = "nanosecond"), 1)
Condition
  Error in `set_microsecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "microsecond".
  i `x` has a precision of "nanosecond".
Code
  set_nanosecond(year_day(year = 1, day = 3, hour = 4, minute = 5, second = 6,
    subsecond = 7, subsecond_precision = "millisecond"), 1)
Condition
  Error in `set_nanosecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "nanosecond".
  i `x` has a precision of "millisecond".
Code
  set_nanosecond(year_day(year = 1, day = 3, hour = 4, minute = 5, second = 6,
    subsecond = 7, subsecond_precision = "microsecond"), 1)
Condition
  Error in `set_nanosecond()`:
  ! Can't perform this operation because of the precision of `x`.
  i The precision of `x` must be "second" or "nanosecond".
  i `x` has a precision of "microsecond".

invalid dates must be resolved when converting to another calendar

Code
  as_year_quarter_day(year_day(2019, 366))
Condition
  Error in `as_sys_time()`:
  ! Can't convert `x` to another type because some dates are invalid.
  i The following locations are invalid: 1.
  i Resolve invalid dates with `invalid_resolve()`.

invalid dates must be resolved when converting to a sys-time

Code
  as_sys_time(year_day(2019, 366))
Condition
  Error in `as_sys_time()`:
  ! Can't convert `x` to another type because some dates are invalid.
  i The following locations are invalid: 1.
  i Resolve invalid dates with `invalid_resolve()`.

invalid dates must be resolved when converting to a naive-time

Code
  as_naive_time(year_day(2019, 366))
Condition
  Error in `as_sys_time()`:
  ! Can't convert `x` to another type because some dates are invalid.
  i The following locations are invalid: 1.
  i Resolve invalid dates with `invalid_resolve()`.

default formats are correct

Code
  format(year_day(2019))
Output
  [1] "2019"
Code
  format(year_day(2019, 1))
Output
  [1] "2019-001"
Code
  format(year_day(2019, 1, 1))
Output
  [1] "2019-001T01"
Code
  format(year_day(2019, 1, 1, 2, 3, 50, subsecond_precision = "microsecond"))
Output
  [1] "2019-001T01:02:03.000050"

can't compute a unsupported difference precision

Code
  (expect_error(calendar_count_between(x, x, "day")))
Output
  <error/rlang_error>
  Error in `calendar_count_between_standardize_precision_n()`:
  ! `precision` must be one of: 'year'.

only granular precisions are allowed

Code
  seq(year_day(2019, 1), by = 1, length.out = 2)
Condition
  Error in `seq()`:
  ! `from` must be 'year' precision.

strict mode can be activated

Code
  invalid_resolve(year_day(2019, 1))
Condition
  Error in `strict_validate_invalid()`:
  ! The global option, `clock.strict`, is currently set to `TRUE`. In this mode, `invalid` must be set and cannot be left as `NULL`.

throws known classed error

Code
  invalid_resolve(year_day(2019, 366))
Condition
  Error in `invalid_resolve()`:
  ! Invalid date found at location 1.
  i Resolve invalid date issues by specifying the `invalid` argument.

minimums are right

Code
  clock_minimum(clock_empty_year_day_year)
Output
  <year_day<year>[1]>
  [1] "-32767"
Code
  clock_minimum(clock_empty_year_day_day)
Output
  <year_day<day>[1]>
  [1] "-32767-001"
Code
  clock_minimum(clock_empty_year_day_hour)
Output
  <year_day<hour>[1]>
  [1] "-32767-001T00"
Code
  clock_minimum(clock_empty_year_day_minute)
Output
  <year_day<minute>[1]>
  [1] "-32767-001T00:00"
Code
  clock_minimum(clock_empty_year_day_second)
Output
  <year_day<second>[1]>
  [1] "-32767-001T00:00:00"
Code
  clock_minimum(clock_empty_year_day_millisecond)
Output
  <year_day<millisecond>[1]>
  [1] "-32767-001T00:00:00.000"
Code
  clock_minimum(clock_empty_year_day_microsecond)
Output
  <year_day<microsecond>[1]>
  [1] "-32767-001T00:00:00.000000"
Code
  clock_minimum(clock_empty_year_day_nanosecond)
Output
  <year_day<nanosecond>[1]>
  [1] "-32767-001T00:00:00.000000000"

maximums are right

Code
  clock_maximum(clock_empty_year_day_year)
Output
  <year_day<year>[1]>
  [1] "32767"
Code
  clock_maximum(clock_empty_year_day_day)
Output
  <year_day<day>[1]>
  [1] "32767-365"
Code
  clock_maximum(clock_empty_year_day_hour)
Output
  <year_day<hour>[1]>
  [1] "32767-365T23"
Code
  clock_maximum(clock_empty_year_day_minute)
Output
  <year_day<minute>[1]>
  [1] "32767-365T23:59"
Code
  clock_maximum(clock_empty_year_day_second)
Output
  <year_day<second>[1]>
  [1] "32767-365T23:59:59"
Code
  clock_maximum(clock_empty_year_day_millisecond)
Output
  <year_day<millisecond>[1]>
  [1] "32767-365T23:59:59.999"
Code
  clock_maximum(clock_empty_year_day_microsecond)
Output
  <year_day<microsecond>[1]>
  [1] "32767-365T23:59:59.999999"
Code
  clock_maximum(clock_empty_year_day_nanosecond)
Output
  <year_day<nanosecond>[1]>
  [1] "32767-365T23:59:59.999999999"

add_*() respect recycling rules

Code
  add_years(year_day(1:2), 1:3)
Condition
  Error in `add_years()`:
  ! Can't recycle `x` (size 2) to match `n` (size 3).


Try the clock package in your browser

Any scripts or data that you put into this service are public.

clock documentation built on May 31, 2023, 9:39 p.m.