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
356985d5
Unverified
Commit
356985d5
authored
2 years ago
by
Ngoc Khuat
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
manual backport #29112 (#29174)
parent
cd8708d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
enterprise/backend/test/metabase_enterprise/advanced_config/api/logs_test.clj
+31
-17
31 additions, 17 deletions
...est/metabase_enterprise/advanced_config/api/logs_test.clj
test/metabase/test/data.clj
+1
-0
1 addition, 0 deletions
test/metabase/test/data.clj
with
32 additions
and
17 deletions
enterprise/backend/test/metabase_enterprise/advanced_config/api/logs_test.clj
+
31
−
17
View file @
356985d5
(
ns
metabase-enterprise.advanced-config.api.logs-test
(
ns
^
:mb/once
metabase-enterprise.advanced-config.api.logs-test
"Tests for /api/ee/logs endpoints"
(
:require
[
clojure.test
:refer
:all
]
[
java-time
:as
t
]
[
metabase-enterprise.advanced-config.api.logs
:as
ee.api.logs
]
[
metabase.models.query-execution
:refer
[
QueryExecution
]]
[
metabase.public-settings.premium-features-test
:as
premium-features.test
]
[
metabase.query-processor.util
:as
qp.util
]
...
...
@@ -22,20 +23,33 @@
(
testing
"GET /api/logs/query_execution/:yyyy-mm"
(
let
[
test-user
:crowberto
user-id
(
mt/user->id
test-user
)]
(
mt/with-temp*
[
QueryExecution
[
qe-a
(
merge
query-execution-defaults
{
:executor_id
user-id
:started_at
(
t/minus
now
(
t/days
2
))})]
QueryExecution
[
qe-b
(
merge
query-execution-defaults
{
:executor_id
user-id
:started_at
(
t/minus
now
(
t/days
32
))})]]
(
testing
"Query Executions within `:yyyy-mm` are returned."
;; QueryExecution is an unbounded mega table and query it could result in a full table scan :( (See: #29103)
;; Run the test in an empty database to make querying less intense.
(
mt/with-empty-h2-app-db
(
mt/with-temp*
[
QueryExecution
[
qe-a
(
merge
query-execution-defaults
{
:executor_id
user-id
:started_at
(
t/minus
now
(
t/days
2
))})]
QueryExecution
[
qe-b
(
merge
query-execution-defaults
{
:executor_id
user-id
:started_at
(
t/minus
now
(
t/days
32
))})]]
(
premium-features.test/with-premium-features
#
{
:advanced-config
}
(
is
(
=
[(
select-keys
qe-a
[
:started_at
:id
])]
(
->>
(
mt/user-http-request
test-user
:get
200
"ee/logs/query_execution/2023-02"
)
(
filter
#
(
#
{
user-id
}
(
:executor_id
%
)))
(
filter
#
((
set
(
map
:id
[
qe-a
qe-b
]))
(
:id
%
)))
(
map
#
(
select-keys
%
[
:started_at
:id
])))))))
(
testing
"Logs endpoint only works when `:advanced-config` feature is available."
(
premium-features.test/with-premium-features
#
{}
(
is
(
=
"This API endpoint is only enabled if you have a premium token with the :advanced-config feature."
(
mt/user-http-request
test-user
:get
402
"ee/logs/query_execution/2023-02"
)))))))))
(
testing
"Query Executions within `:yyyy-mm` are returned."
(
is
(
=
[(
select-keys
qe-a
[
:started_at
:id
])]
;; we're calling the function directly instead of calling the API
;; because we want the test to run against the empty h2 DB we bound above
;; Until we figure out how to completely re-bind a database for API calls
;; this should be enough
(
->>
(
ee.api.logs/query-execution-logs
2023
2
)
(
filter
#
(
#
{
user-id
}
(
:executor_id
%
)))
(
filter
#
((
set
(
map
:id
[
qe-a
qe-b
]))
(
:id
%
)))
(
map
#
(
select-keys
%
[
:started_at
:id
]))))))))))
(
testing
"permission tests"
(
testing
"require admins"
(
premium-features.test/with-premium-features
#
{
:advanced-config
}
(
is
(
=
"You don't have permissions to do that."
(
mt/user-http-request
:rasta
:get
403
"ee/logs/query_execution/2023-02"
)))))
(
testing
"only works when `:advanced-config` feature is available."
(
premium-features.test/with-premium-features
#
{}
(
is
(
=
"This API endpoint is only enabled if you have a premium token with the :advanced-config feature."
(
mt/user-http-request
:crowberto
:get
402
"ee/logs/query_execution/2023-02"
))))))))
This diff is collapsed.
Click to expand it.
test/metabase/test/data.clj
+
1
−
0
View file @
356985d5
...
...
@@ -257,6 +257,7 @@
Makes use of functionality in the [[metabase.db.schema-migrations-test.impl]] namespace since that already does what
we need."
{
:style/indent
0
}
[
&
body
]
`
(
schema-migrations-test.impl/with-temp-empty-app-db
[
conn
#
:h2
]
(
schema-migrations-test.impl/run-migrations-in-range!
conn
#
[
0
"v99.00-000"
])
; this should catch all migrations)
...
...
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