@@ -56,10 +56,52 @@ test_that("generic operations work as intended", {
56
56
57
57
# Can't reproduce this warning because we forced compatibility
58
58
hms_result <- hms_test_vec - date_vec
59
- expect_warning({
60
- difftime_result <- as_hms(difftime_test_vec - date_vec )
61
- }, regexp = " Incompatible methods \\ (\" Ops.difftime\" , \" -.Date\" ) for \" -\" " )
62
- expect_equal(hms_result , difftime_result )
59
+ expect_warning(
60
+ difftime_result <- as_hms(difftime_test_vec - date_vec ),
61
+ regexp = " Incompatible methods \\ (\" Ops.difftime\" , \" -.Date\" ) for \" -\" "
62
+ )
63
+ expect_equal(hms_result , difftime_result , info = " hms - Date not equal to difftime - Date" )
63
64
64
65
expect_equal(date_vec - hms_test_vec , date_vec - difftime_test_vec )
66
+
67
+ # hms {+-} POSIXt
68
+ posixct_vec <- as.POSIXct(
69
+ c(" 2023-03-26 03:00:00" , " 2023-10-29 02:00:00" , NA_character_ , " 1970-01-01 00:00:00" ),
70
+ tz = " Europe/Berlin"
71
+ )
72
+
73
+ posix_difftime_result <- posixct_vec + as.difftime(1.0 , units = " hours" )
74
+ expect_equal(
75
+ format(posix_difftime_result , usetz = TRUE ),
76
+ c(" 2023-03-26 04:00:00 CEST" , " 2023-10-29 02:00:00 CET" , NA_character_ , " 1970-01-01 01:00:00 CET" )
77
+ )
78
+ expect_equal(posixct_vec + hms(hours = 1L ), posix_difftime_result )
79
+ expect_equal(hms(hours = 1L ) + posixct_vec , posix_difftime_result )
80
+ expect_equal(as.difftime(1.0 , units = " hours" ) + posixct_vec , posix_difftime_result )
81
+
82
+ posix_difftime_result <- posixct_vec - as.difftime(1.0 , units = " hours" )
83
+ expect_equal(
84
+ format(posix_difftime_result , usetz = TRUE ),
85
+ c(" 2023-03-26 01:00:00 CET" , " 2023-10-29 01:00:00 CEST" , NA , " 1969-12-31 23:00:00 CET" ),
86
+ info = " POSIXct - difftime"
87
+ )
88
+ expect_equal(posixct_vec - hms(hours = 1L ), posix_difftime_result )
89
+
90
+ hms_result <- hms(hours = 1L ) - posixct_vec
91
+ expect_warning(
92
+ difftime_result <- as.difftime(3600.0 , units = " secs" ) - posixct_vec ,
93
+ regexp = " Incompatible methods \\ (\" Ops.difftime\" , \" -.POSIXt\" ) for \" -\" "
94
+ )
95
+ # FIXME this currently returns a different result than difftime - POSIXt.
96
+ # hms - POSIXt produces a hms
97
+ # difftime - POSIXt produces a POSIXt
98
+ expect_equal(
99
+ as.numeric(hms_result ), as.numeric(difftime_result ),
100
+ info = " hms - POSIXt not equal to difftime - POSIXt"
101
+ )
102
+ expect_hms_equal(hms_result , new_hms(c(- 1679788800.0 , - 1698534000.0 , NA_real_ , 7200.0 )))
103
+ expect_equal(
104
+ difftime_result ,
105
+ as.POSIXct(c(- 1679788800.0 , - 1698534000.0 , NA_real_ , 7200.0 ), origin = " 1970-01-01" , tz = " Europe/Berlin" )
106
+ )
65
107
})
0 commit comments