villebro commented on a change in pull request #13163:
URL: https://github.com/apache/superset/pull/13163#discussion_r578282170
##########
File path: tests/db_engine_specs/pinot_tests.py
##########
@@ -32,10 +32,48 @@ def test_pinot_time_expression_sec_one_1d_grain(self):
"DATETIMECONVERT(tstamp, '1:SECONDS:EPOCH', '1:SECONDS:EPOCH',
'1:DAYS')",
) # noqa
+ def test_pinot_time_expression_simple_date_format_1d_grain(self):
+ col = column("tstamp")
+ expr = PinotEngineSpec.get_timestamp_expr(col, "%Y-%m-%d %H:%M:%S",
"P1D")
+ result = str(expr.compile())
+ self.assertEqual(
+ result,
+ (
+ "DATETIMECONVERT(tstamp, "
+ + "'1:SECONDS:SIMPLE_DATE_FORMAT:yyyy-MM-dd HH:mm:ss', "
+ + "'1:SECONDS:SIMPLE_DATE_FORMAT:yyyy-MM-dd HH:mm:ss',
'1:DAYS')"
+ ),
+ ) # noqa
+
+ def test_pinot_time_expression_simple_date_format_1w_grain(self):
+ col = column("tstamp")
+ expr = PinotEngineSpec.get_timestamp_expr(col, "%Y-%m-%d %H:%M:%S",
"P1W")
+ result = str(expr.compile())
+ self.assertEqual(
+ result,
+ (
+ "ToDateTime(DATETRUNC('week', FromDateTime(tstamp, "
+ + "'yyyy-MM-dd HH:mm:ss'), 'MILLISECONDS'), 'yyyy-MM-dd
HH:mm:ss')"
+ ),
+ ) # noqa
+
def test_pinot_time_expression_sec_one_1m_grain(self):
col = column("tstamp")
expr = PinotEngineSpec.get_timestamp_expr(col, "epoch_s", "P1M")
result = str(expr.compile())
self.assertEqual(
result, "DATETRUNC('month', tstamp, 'SECONDS')",
) # noqa
+
+ def test_invalid_get_time_expression_arguments(self):
+ with self.assertRaises(NotImplementedError) as context:
+ PinotEngineSpec.get_timestamp_expr(column("tstamp"), None, "P1M")
+ self.assertEqual("Empty date format for 'tstamp'",
str(context.exception))
Review comment:
Is this indented correctly? I'm fine removing the string comparison,
testing for the raise is adequate IMO.
##########
File path: tests/db_engine_specs/pinot_tests.py
##########
@@ -32,10 +32,48 @@ def test_pinot_time_expression_sec_one_1d_grain(self):
"DATETIMECONVERT(tstamp, '1:SECONDS:EPOCH', '1:SECONDS:EPOCH',
'1:DAYS')",
) # noqa
+ def test_pinot_time_expression_simple_date_format_1d_grain(self):
+ col = column("tstamp")
+ expr = PinotEngineSpec.get_timestamp_expr(col, "%Y-%m-%d %H:%M:%S",
"P1D")
+ result = str(expr.compile())
+ self.assertEqual(
+ result,
+ (
+ "DATETIMECONVERT(tstamp, "
+ + "'1:SECONDS:SIMPLE_DATE_FORMAT:yyyy-MM-dd HH:mm:ss', "
+ + "'1:SECONDS:SIMPLE_DATE_FORMAT:yyyy-MM-dd HH:mm:ss',
'1:DAYS')"
+ ),
+ ) # noqa
+
+ def test_pinot_time_expression_simple_date_format_1w_grain(self):
+ col = column("tstamp")
+ expr = PinotEngineSpec.get_timestamp_expr(col, "%Y-%m-%d %H:%M:%S",
"P1W")
+ result = str(expr.compile())
+ self.assertEqual(
+ result,
+ (
+ "ToDateTime(DATETRUNC('week', FromDateTime(tstamp, "
+ + "'yyyy-MM-dd HH:mm:ss'), 'MILLISECONDS'), 'yyyy-MM-dd
HH:mm:ss')"
+ ),
+ ) # noqa
+
def test_pinot_time_expression_sec_one_1m_grain(self):
col = column("tstamp")
expr = PinotEngineSpec.get_timestamp_expr(col, "epoch_s", "P1M")
result = str(expr.compile())
self.assertEqual(
result, "DATETRUNC('month', tstamp, 'SECONDS')",
) # noqa
+
+ def test_invalid_get_time_expression_arguments(self):
+ with self.assertRaises(NotImplementedError) as context:
+ PinotEngineSpec.get_timestamp_expr(column("tstamp"), None, "P1M")
+ self.assertEqual("Empty date format for 'tstamp'",
str(context.exception))
+
+ with self.assertRaises(NotImplementedError) as context:
+ PinotEngineSpec.get_timestamp_expr(
+ column("tstamp"), "epoch_s", "invalid_grain"
+ )
+ self.assertEqual(
+ "No pinot grain spec for 'invalid_grain'", str(context.exception)
+ )
Review comment:
Same here
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]