Skip to content

Commit cd83f0c

Browse files
evanevanevanevannnnblinkov
authored andcommitted
Fixed solomon tests (#14527)
1 parent 8ee19de commit cd83f0c

File tree

8 files changed

+9
-7
lines changed
  • ydb/tests/fq/solomon
    • canondata
      • test.test_solomon-BadDownsamplingAggregation-_
      • test.test_solomon-BadDownsamplingDisabled-_
      • test.test_solomon-BadDownsamplingFill-_
      • test.test_solomon-BadDownsamplingInterval-_
      • test.test_solomon-BrokenJsonResponse-_
      • test.test_solomon-InvalidProject-_
      • test.test_solomon-UnknownSetting-_

8 files changed

+9
-7
lines changed

ydb/tests/fq/solomon/canondata/test.test_solomon-BadDownsamplingAggregation-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Issues:
77
<main>:1:15: Error: downsampling.aggregation must be one of AVG, COUNT, DEFAULT_AGGREGATION, LAST, MAX, MIN, SUM, but has ABC
88

99

10-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
10+

ydb/tests/fq/solomon/canondata/test.test_solomon-BadDownsamplingDisabled-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Issues:
77
<main>:1:15: Error: downsampling.disabled must be true or false, but has ABC
88

99

10-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
10+

ydb/tests/fq/solomon/canondata/test.test_solomon-BadDownsamplingFill-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Issues:
77
<main>:1:15: Error: downsampling.fill must be one of NONE, NULL, PREVIOUS, but has ABC
88

99

10-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
10+

ydb/tests/fq/solomon/canondata/test.test_solomon-BadDownsamplingInterval-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Issues:
77
<main>:1:15: Error: downsampling.grid_interval must be positive number, but has ABC
88

99

10-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
10+

ydb/tests/fq/solomon/canondata/test.test_solomon-BrokenJsonResponse-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Issues:
44
<main>: Error: Failed to parse response from monitoring: library/cpp/json/json_reader.cpp:xxx: Offset: 2, Code: 4, Error: Missing a name for object member.
55

66

7-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
7+

ydb/tests/fq/solomon/canondata/test.test_solomon-InvalidProject-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Issues:
44
<main>: Error: Error while sending request to monitoring api: 404 Not Found, response: Project invalid does not exist
55

66

7-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
7+

ydb/tests/fq/solomon/canondata/test.test_solomon-UnknownSetting-_/extracted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Issues:
77
<main>:1:15: Error: Unknown setting unk
88

99

10-
(yexception) ydb/tests/tools/kqprun/kqprun.cpp:xxx: ISOTIME Query execution failed
10+

ydb/tests/fq/solomon/test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ def sanitize_issues(s):
2323
# 2022-08-13T16:11:21Z -> ISOTIME
2424
# 2022-08-13T16:11:21.549879Z -> ISOTIME
2525
s = re.sub(r"2\d{3}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(.\d+)?Z", "ISOTIME", s)
26+
# (yexception) ... ->
27+
s = re.sub(r"\(yexception\).*", "", s)
2628
# library/cpp/json/json_reader.cpp:420 -> library/cpp/json/json_reader.cpp:xxx
2729
return re.sub(r"cpp:\d+", "cpp:xxx", s)
2830

0 commit comments

Comments
 (0)