This repository was archived by the owner on Oct 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjunit.xml
More file actions
157 lines (157 loc) · 12.6 KB
/
junit.xml
File metadata and controls
157 lines (157 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="jest tests" tests="55" failures="0" errors="0" time="22.614">
<testsuite name="ListTables" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="2.902" tests="3">
<testcase classname="ListTables renders a list of tables" name="ListTables renders a list of tables" time="0.099">
</testcase>
<testcase classname="ListTables calls onTableClick when a table row is clicked" name="ListTables calls onTableClick when a table row is clicked" time="0.009">
</testcase>
<testcase classname="ListTables changes row background color on mouse enter and leave" name="ListTables changes row background color on mouse enter and leave" time="0.025">
</testcase>
</testsuite>
<testsuite name="SchemaDetails" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="2.931" tests="1">
<testcase classname="SchemaDetails renders schema details correctly" name="SchemaDetails renders schema details correctly" time="0.146">
</testcase>
</testsuite>
<testsuite name="ExplorerDetails" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="2.994" tests="3">
<testcase classname="ExplorerDetails renders loading state initially" name="ExplorerDetails renders loading state initially" time="0.016">
</testcase>
<testcase classname="ExplorerDetails renders error state" name="ExplorerDetails renders error state" time="0.003">
</testcase>
<testcase classname="ExplorerDetails renders catalogs" name="ExplorerDetails renders catalogs" time="0.051">
</testcase>
</testsuite>
<testsuite name="CatalogDetails" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="3.15" tests="2">
<testcase classname="CatalogDetails renders catalog details correctly" name="CatalogDetails renders catalog details correctly" time="0.189">
</testcase>
<testcase classname="CatalogDetails renders schemas correctly" name="CatalogDetails renders schemas correctly" time="0.018">
</testcase>
</testsuite>
<testsuite name="TableDetails" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="8.402" tests="1">
<testcase classname="TableDetails renders table details correctly" name="TableDetails renders table details correctly" time="0.205">
</testcase>
</testsuite>
<testsuite name="ListColumns" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:23" time="6.936" tests="1">
<testcase classname="ListColumns renders a list of columns" name="ListColumns renders a list of columns" time="0.024">
</testcase>
</testsuite>
<testsuite name="ListCatalogs" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:23" time="7.059" tests="3">
<testcase classname="ListCatalogs renders a list of catalogs" name="ListCatalogs renders a list of catalogs" time="0.038">
</testcase>
<testcase classname="ListCatalogs calls onCatalogClick when a catalog row is clicked" name="ListCatalogs calls onCatalogClick when a catalog row is clicked" time="0.016">
</testcase>
<testcase classname="ListCatalogs changes row background color on mouse enter and leave" name="ListCatalogs changes row background color on mouse enter and leave" time="0.031">
</testcase>
</testsuite>
<testsuite name="ListSchema" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:23" time="7.627" tests="1">
<testcase classname="ListSchema renders a list of schemas" name="ListSchema renders a list of schemas" time="0.02">
</testcase>
</testsuite>
<testsuite name="Main Component" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="11.122" tests="2">
<testcase classname="Main Component should render the logo" name="Main Component should render the logo" time="0.094">
</testcase>
<testcase classname="Main Component should render children content" name="Main Component should render children content" time="0.007">
</testcase>
</testsuite>
<testsuite name="CatalogTree" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:23" time="8.323" tests="1">
<testcase classname="CatalogTree renders tree" name="CatalogTree renders tree" time="0.204">
</testcase>
</testsuite>
<testsuite name="getColumnIconClass" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:28" time="3.032" tests="9">
<testcase classname="getColumnIconClass should return ToggleOffIcon for BOOLEAN and BINARY" name="getColumnIconClass should return ToggleOffIcon for BOOLEAN and BINARY" time="0">
</testcase>
<testcase classname="getColumnIconClass should return CheckBoxOutlineBlankIcon for NULL" name="getColumnIconClass should return CheckBoxOutlineBlankIcon for NULL" time="0">
</testcase>
<testcase classname="getColumnIconClass should return PersonIcon for USER_DEFINED_TYPE" name="getColumnIconClass should return PersonIcon for USER_DEFINED_TYPE" time="0">
</testcase>
<testcase classname="getColumnIconClass should return TocIcon for TABLE_TYPE" name="getColumnIconClass should return TocIcon for TABLE_TYPE" time="0">
</testcase>
<testcase classname="getColumnIconClass should return NumbersIcon for BYTE, SHORT, INT, LONG, FLOAT, DOUBLE, and DECIMAL" name="getColumnIconClass should return NumbersIcon for BYTE, SHORT, INT, LONG, FLOAT, DOUBLE, and DECIMAL" time="0.001">
</testcase>
<testcase classname="getColumnIconClass should return CalendarMonthIcon for DATE, TIMESTAMP, TIMESTAMP_NTZ, and INTERVAL" name="getColumnIconClass should return CalendarMonthIcon for DATE, TIMESTAMP, TIMESTAMP_NTZ, and INTERVAL" time="0">
</testcase>
<testcase classname="getColumnIconClass should return AbcIcon for STRING and CHAR" name="getColumnIconClass should return AbcIcon for STRING and CHAR" time="0">
</testcase>
<testcase classname="getColumnIconClass should return DataObjectIcon for ARRAY, STRUCT, and MAP" name="getColumnIconClass should return DataObjectIcon for ARRAY, STRUCT, and MAP" time="0">
</testcase>
<testcase classname="getColumnIconClass should return NotListedLocationIcon for unknown types" name="getColumnIconClass should return NotListedLocationIcon for unknown types" time="0.001">
</testcase>
</testsuite>
<testsuite name="useListSchemas" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:30" time="1.706" tests="1">
<testcase classname="useListSchemas fetches and returns Schemas" name="useListSchemas fetches and returns Schemas" time="0.072">
</testcase>
</testsuite>
<testsuite name="ExplorerPanel" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:30" time="1.681" tests="4">
<testcase classname="ExplorerPanel renders message when no entity is selected" name="ExplorerPanel renders message when no entity is selected" time="0.004">
</testcase>
<testcase classname="ExplorerPanel renders catalog details correctly" name="ExplorerPanel renders catalog details correctly" time="0.001">
</testcase>
<testcase classname="ExplorerPanel renders schema details correctly" name="ExplorerPanel renders schema details correctly" time="0.001">
</testcase>
<testcase classname="ExplorerPanel renders table details correctly" name="ExplorerPanel renders table details correctly" time="0.001">
</testcase>
</testsuite>
<testsuite name="loadSettingEnv" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:31" time="1.201" tests="3">
<testcase classname="loadSettingEnv should load settings and update them correctly" name="loadSettingEnv should load settings and update them correctly" time="0.056">
</testcase>
<testcase classname="loadSettingEnv should handle missing settings data" name="loadSettingEnv should handle missing settings data" time="0.001">
</testcase>
<testcase classname="loadSettingEnv should handle partial settings data" name="loadSettingEnv should handle partial settings data" time="0.002">
</testcase>
</testsuite>
<testsuite name="insertEntityToNotebook" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:32" time="1.81" tests="5">
<testcase classname="insertEntityToNotebook should insert the path into the current cell's editor" name="insertEntityToNotebook should insert the path into the current cell's editor" time="0.001">
</testcase>
<testcase classname="insertEntityToNotebook should log an error if there is no active notebook" name="insertEntityToNotebook should log an error if there is no active notebook" time="0">
</testcase>
<testcase classname="insertEntityToNotebook should log an error if there is no active cell" name="insertEntityToNotebook should log an error if there is no active cell" time="0.001">
</testcase>
<testcase classname="insertEntityToNotebook should log an error if there is no editor in the current cell" name="insertEntityToNotebook should log an error if there is no editor in the current cell" time="0">
</testcase>
<testcase classname="insertEntityToNotebook should log an error if replaceSelection method is not available on the editor" name="insertEntityToNotebook should log an error if replaceSelection method is not available on the editor" time="0">
</testcase>
</testsuite>
<testsuite name="useListCatalogs" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:31" time="2.244" tests="1">
<testcase classname="useListCatalogs fetches and returns catalogs" name="useListCatalogs fetches and returns catalogs" time="0.079">
</testcase>
</testsuite>
<testsuite name="useLoginWithToken" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:31" time="2.464" tests="1">
<testcase classname="useLoginWithToken should successfully exchange token" name="useLoginWithToken should successfully exchange token" time="0.126">
</testcase>
</testsuite>
<testsuite name="requestAPI" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:32" time="2.167" tests="5">
<testcase classname="requestAPI should make a successful request and return JSON data" name="requestAPI should make a successful request and return JSON data" time="0.006">
</testcase>
<testcase classname="requestAPI should handle non-JSON response" name="requestAPI should handle non-JSON response" time="0.059">
</testcase>
<testcase classname="requestAPI should handle empty response body" name="requestAPI should handle empty response body" time="0.001">
</testcase>
<testcase classname="requestAPI should throw a ResponseError for unsuccessful response" name="requestAPI should throw a ResponseError for unsuccessful response" time="0.022">
</testcase>
<testcase classname="requestAPI should throw a NetworkError for network issues" name="requestAPI should throw a NetworkError for network issues" time="0.003">
</testcase>
</testsuite>
<testsuite name="useListTables" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:31" time="3.541" tests="1">
<testcase classname="useListTables fetches and returns tables" name="useListTables fetches and returns tables" time="0.084">
</testcase>
</testsuite>
<testsuite name="CatalogExplorer" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="16.446" tests="3">
<testcase classname="CatalogExplorer should create and open a widget for a catalog" name="CatalogExplorer should create and open a widget for a catalog" time="0.089">
</testcase>
<testcase classname="CatalogExplorer should create and open a widget for a schema" name="CatalogExplorer should create and open a widget for a schema" time="0.012">
</testcase>
<testcase classname="CatalogExplorer should create and open a widget for a table" name="CatalogExplorer should create and open a widget for a table" time="0.017">
</testcase>
</testsuite>
<testsuite name="Menu Component" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="16.515" tests="1">
<testcase classname="Menu Component should render the selection buttons" name="Menu Component should render the selection buttons" time="0.147">
</testcase>
</testsuite>
<testsuite name="Junity extension" errors="0" failures="0" skipped="0" timestamp="2024-12-05T13:41:20" time="20.362" tests="3">
<testcase classname="Junity extension Activates without crashing" name="Junity extension Activates without crashing" time="0.068">
</testcase>
<testcase classname="Junity extension Should use default settings if no env vars are set" name="Junity extension Should use default settings if no env vars are set" time="0.007">
</testcase>
<testcase classname="Junity extension Should update settings if env vars are set" name="Junity extension Should update settings if env vars are set" time="0.003">
</testcase>
</testsuite>
</testsuites>