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
76378dcc
Commit
76378dcc
authored
10 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Tests for /api/emailreport/form_input. Fix funky timezones
parent
40638ef8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/metabase/api/emailreport.clj
+6
-5
6 additions, 5 deletions
src/metabase/api/emailreport.clj
src/metabase/models/common.clj
+10
-11
10 additions, 11 deletions
src/metabase/models/common.clj
test/metabase/api/emailreport_test.clj
+52
-0
52 additions, 0 deletions
test/metabase/api/emailreport_test.clj
with
68 additions
and
16 deletions
src/metabase/api/emailreport.clj
+
6
−
5
View file @
76378dcc
(
ns
metabase.api.emailreport
"/api/emailreport endpoints."
(
:require
[
korma.core
:refer
[
where
subselect
fields
order
limit
]]
[
compojure.core
:refer
[
defroutes
GET
PUT
POST
DELETE
]]
[
medley.core
:refer
:all
]
[
metabase.api.common
:refer
:all
]
[
metabase.db
:refer
:all
]
(
metabase.models
[
common
:as
common
]
[
hydrate
:refer
:all
]
[
database
:refer
[
databases-for-org
]]
[
emailreport
:refer
[
EmailReport
modes
days-of-week
times-of-day
]]
[
emailreport-executions
:refer
[
EmailReportExecutions
]]
[
user
:refer
[
users-for-org
]])
[
hydrate
:refer
:all
]
[
database
:refer
[
databases-for-org
]]
[
emailreport
:refer
[
EmailReport
modes
days-of-week
times-of-day
]]
[
emailreport-executions
:refer
[
EmailReportExecutions
]]
[
user
:refer
[
users-for-org
]])
[
metabase.util
:as
util
]))
...
...
This diff is collapsed.
Click to expand it.
src/metabase/models/common.clj
+
10
−
11
View file @
76378dcc
...
...
@@ -63,14 +63,13 @@
:can_write
(
delay
(
user-can?
:write
<>
))))
(
def
timezones
[
'GMT',
'UTC',
'US/Alaska',
'US/Arizona',
'US/Central',
'US/Eastern',
'US/Hawaii',
'US/Mountain',
'US/Pacific',
'America/Costa_Rica
'
])
[
"GMT"
"UTC"
"US/Alaska"
"US/Arizona"
"US/Central"
"US/Eastern"
"US/Hawaii"
"US/Mountain"
"US/Pacific"
"America/Costa_Rica"
])
This diff is collapsed.
Click to expand it.
test/metabase/api/emailreport_test.clj
0 → 100644
+
52
−
0
View file @
76378dcc
(
ns
metabase.api.emailreport-test
"Tests for /api/emailreport endpoints."
(
:require
[
expectations
:refer
:all
]
[
korma.core
:refer
:all
]
[
metabase.db
:refer
:all
]
(
metabase.models
[
database
:refer
[
Database
]]
[
emailreport
:refer
[
EmailReport
]])
[
metabase.test.util
:refer
[
match-$
expect-eval-actual-first
random-name
]]
[
metabase.test-data
:refer
:all
]))
;; ## GET /api/emailreport/form_input
;; Test that we can get the form input options for the Test Org
(
expect-let
[
_
@
test-db
; force lazy loading of Test Data / Metabase DB
_
(
cascade-delete
Database
:name
[
not=
"Test Database"
])]
; Delete all Databases that aren't the Test DB
{
:users
[{
:id
(
user->id
:rasta
)
:name
"Rasta Toucan"
}
{
:id
(
user->id
:crowberto
)
:name
"Crowberto Corv"
}
{
:id
(
user->id
:lucky
)
:name
"Lucky Pigeon"
}
{
:id
(
user->id
:trashbird
)
:name
"Trash Bird"
}]
,
:databases
[{
:id
(
:id
@
test-db
)
:name
"Test Database"
}]
,
:timezones
[
"GMT"
"UTC"
"US/Alaska"
"US/Arizona"
"US/Central"
"US/Eastern"
"US/Hawaii"
"US/Mountain"
"US/Pacific"
"America/Costa_Rica"
]
:times_of_day
[{
:id
"morning"
,
:realhour
8
,
:name
"Morning"
}
{
:id
"midday"
,
:realhour
12
,
:name
"Midday"
}
{
:id
"afternoon"
,
:realhour
16
,
:name
"Afternoon"
}
{
:id
"evening"
,
:realhour
20
,
:name
"Evening"
}
{
:id
"midnight"
,
:realhour
0
,
:name
"Midnight"
}]
,
:days_of_week
[{
:id
"sun"
,
:name
"Sun"
}
{
:id
"mon"
,
:name
"Mon"
}
{
:id
"tue"
,
:name
"Tue"
}
{
:id
"wed"
,
:name
"Wed"
}
{
:id
"thu"
,
:name
"Thu"
}
{
:id
"fri"
,
:name
"Fri"
}
{
:id
"sat"
,
:name
"Sat"
}]
,
:modes
[{
:name
"Active"
,
:id
0
}
{
:name
"Disabled"
,
:id
1
}]
:permissions
[{
:name
"None"
,
:id
0
}
{
:name
"Read Only"
,
:id
1
}
{
:name
"Read & Write"
,
:id
2
}]}
((
user->client
:rasta
)
:get
200
"emailreport/form_input"
:org
(
:id
@
test-org
)))
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