Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine
Commits
e9f2d8ed
Commit
e9f2d8ed
authored
1 year ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
test: steering API model
parent
cdae579e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!20
Preparations for ORM-less scheduling
Pipeline
#3354
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_scheduling_api_steering.py
+84
-0
84 additions, 0 deletions
tests/test_scheduling_api_steering.py
with
84 additions
and
0 deletions
tests/test_scheduling_api_steering.py
0 → 100644
+
84
−
0
View file @
e9f2d8ed
#
# Aura Engine (https://code.aura.radio/)
#
# Copyright (C) 2017-now() - The Aura Engine Team.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
json
import
os
import
unittest
from
datetime
import
datetime
import
validators
from
aura_engine.base.config
import
AuraConfig
from
aura_steering_api.models.timeslot
import
Timeslot
from
aura_steering_api.types
import
UNSET
class
TestApiSteering
(
unittest
.
TestCase
):
"""
Testing the Configuration.
"""
config
:
AuraConfig
mocked_steering_json
=
None
def
setUp
(
self
):
self
.
config
=
AuraConfig
()
with
open
(
"
./tests/json/steering-api-v1-playout.json
"
,
"
r
"
)
as
file
:
self
.
mocked_steering_json
=
json
.
load
(
file
)
def
test_api_steering_timeslot_model
(
self
):
print
(
self
.
_testMethodName
)
print
(
"
Steering JSON:
"
+
str
(
self
.
mocked_steering_json
))
# FIXME Steering doesn't provide JSON as per a valid JSON schema.
# Hence we need to split the array manually
timetable
=
[]
timeslot
=
Timeslot
()
for
entry
in
self
.
mocked_steering_json
:
t
=
timeslot
.
from_dict
(
entry
)
self
.
assertIsNotNone
(
t
.
to_dict
())
timetable
.
append
(
t
)
self
.
assertIsNotNone
(
timetable
)
self
.
assertEqual
(
2
,
len
(
timetable
))
t1
=
timetable
[
0
]
self
.
assertEqual
(
17
,
t1
.
id
)
self
.
assertEqual
(
datetime
.
strptime
(
"
2023-05-16T10:06:00
"
,
"
%Y-%m-%dT%H:%M:%S
"
),
t1
.
start
)
self
.
assertEqual
(
datetime
.
strptime
(
"
2023-05-16T10:10:00
"
,
"
%Y-%m-%dT%H:%M:%S
"
),
t1
.
end
)
self
.
assertEqual
(
"
Music Show
"
,
t1
.
title
)
self
.
assertEqual
(
17
,
t1
.
schedule_id
)
self
.
assertEqual
(
False
,
t1
.
is_repetition
)
self
.
assertEqual
(
1
,
t1
.
playlist_id
)
self
.
assertEqual
(
None
,
t1
.
schedule_default_playlist_id
)
self
.
assertEqual
(
None
,
t1
.
show_default_playlist_id
)
self
.
assertEqual
(
1
,
t1
.
show_id
)
self
.
assertEqual
(
"
Musikprogramm
"
,
t1
.
show_name
)
self
.
assertEqual
(
"
Musikredaktion
"
,
t1
.
show_hosts
)
self
.
assertEqual
(
"
Unmoderiertes Musikprogramm
"
,
t1
.
show_type
)
self
.
assertEqual
(
""
,
t1
.
show_categories
)
self
.
assertEqual
(
""
,
t1
.
show_topics
)
self
.
assertEqual
(
""
,
t1
.
show_musicfocus
)
self
.
assertEqual
(
""
,
t1
.
show_languages
)
self
.
assertEqual
(
"
Standard
"
,
t1
.
show_fundingcategory
)
self
.
assertEqual
(
""
,
t1
.
memo
)
if
__name__
==
"
__main__
"
:
unittest
.
main
()
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