Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
df8d51e6
Commit
df8d51e6
authored
7 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Add MetabaseApi.table_query_metadata snapshot test
parent
73bc209a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/test/services/MetabaseApi.integ.spec.js
+31
-0
31 additions, 0 deletions
frontend/test/services/MetabaseApi.integ.spec.js
frontend/test/services/__snapshots__/MetabaseApi.integ.spec.js.snap
+3631
-0
3631 additions, 0 deletions
...est/services/__snapshots__/MetabaseApi.integ.spec.js.snap
with
3662 additions
and
0 deletions
frontend/test/services/MetabaseApi.integ.spec.js
0 → 100644
+
31
−
0
View file @
df8d51e6
import
{
useSharedAdminLogin
}
from
"
__support__/integrated_tests
"
;
import
{
MetabaseApi
}
from
"
metabase/services
"
;
describe
(
"
MetabaseApi
"
,
()
=>
{
beforeAll
(()
=>
useSharedAdminLogin
());
describe
(
"
table_query_metadata
"
,
()
=>
{
// these table IDs correspond to the sample dataset in the fixture db
[
1
,
2
,
3
,
4
].
map
(
tableId
=>
it
(
`should have the correct metadata for table
${
tableId
}
`
,
async
()
=>
{
expect
(
stripKeys
(
await
MetabaseApi
.
table_query_metadata
({
tableId
})),
).
toMatchSnapshot
();
}),
);
});
});
function
stripKeys
(
object
)
{
// handles both arrays and objects
if
(
object
&&
typeof
object
===
"
object
"
)
{
for
(
const
key
in
object
)
{
if
(
/^
((
updated|created
)
_at|last_analyzed
)
$/
.
test
(
key
))
{
delete
object
[
key
];
}
else
{
stripKeys
(
object
[
key
]);
}
}
}
return
object
;
}
This diff is collapsed.
Click to expand it.
frontend/test/services/__snapshots__/MetabaseApi.integ.spec.js.snap
0 → 100644
+
3631
−
0
View file @
df8d51e6
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment