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
3bc4e8d1
Commit
3bc4e8d1
authored
1 year ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
test: api fetcher
parent
b80fcfa3
No related branches found
No related tags found
1 merge request
!20
Preparations for ORM-less scheduling
Pipeline
#3389
failed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_scheduling_api_fetcher.py
+132
-0
132 additions, 0 deletions
tests/test_scheduling_api_fetcher.py
with
132 additions
and
0 deletions
tests/test_scheduling_api_fetcher.py
0 → 100644
+
132
−
0
View file @
3bc4e8d1
#
# Aura Engine (https://gitlab.servus.at/aura/engine)
#
# 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
,
timedelta
from
unittest
import
mock
from
aura_engine.base.config
import
AuraConfig
from
aura_engine.scheduling.api
import
ApiFetcher
class
TestSchedulingApiFetcher
(
unittest
.
TestCase
):
"""
Testing the Configuration.
"""
config
=
None
api_fetcher
=
None
mocked_steering_json
=
None
mocked_tank_json
=
None
#
# Mock
#
# Mock `requests.get` in `SimpleRestApi`
def
mocked_requests_get
(
*
args
,
**
kwargs
):
class
MockResponse
:
def
__init__
(
self
,
json_data
,
status_code
):
self
.
json_data
=
json_data
self
.
status_code
=
status_code
def
json
(
self
):
return
self
.
json_data
print
(
f
"
Calling mocked
'
requests.get
'
with
'
{
args
[
0
]
}
'"
)
if
"
/steering/api/v1/playout
"
in
args
[
0
]:
return
MockResponse
(
TestSchedulingApiFetcher
.
mocked_steering_json
,
200
)
elif
"
/tank/api/v1/playlists/1
"
in
args
[
0
]:
return
MockResponse
(
TestSchedulingApiFetcher
.
mocked_tank_json
,
200
)
return
MockResponse
(
None
,
404
)
#
# Setup
#
def
setUp
(
self
):
self
.
config
=
AuraConfig
()
self
.
api_fetcher
=
ApiFetcher
()
with
open
(
"
./tests/json/steering-api-v1-playout.json
"
,
"
r
"
)
as
file
:
TestSchedulingApiFetcher
.
mocked_steering_json
=
json
.
load
(
file
)
with
open
(
"
./tests/json/tank-api-v1-playlists-1.json
"
,
"
r
"
)
as
file
:
TestSchedulingApiFetcher
.
mocked_tank_json
=
json
.
load
(
file
)
# Update dates that they are in the future
# Format e.g. "start":"2023-05-16T10:06:00"
now
=
datetime
.
now
()
hours
:
int
=
1
for
timeslot
in
TestSchedulingApiFetcher
.
mocked_steering_json
:
one_hour_later
=
(
now
+
timedelta
(
hours
=
hours
)).
strftime
(
"
%Y-%m-%dT%H:%M:%S
"
)
two_hour_later
=
(
now
+
timedelta
(
hours
=
hours
+
1
)).
strftime
(
"
%Y-%m-%dT%H:%M:%S
"
)
timeslot
[
"
start
"
]
=
one_hour_later
timeslot
[
"
end
"
]
=
two_hour_later
hours
+=
1
#
# Test Cases
#
@mock.patch
(
"
aura_engine.base.api.requests.get
"
,
side_effect
=
mocked_requests_get
)
def
test_fetch_data
(
self
,
mock_get
):
print
(
self
.
_testMethodName
)
self
.
api_fetcher
.
start
()
response
=
self
.
api_fetcher
.
get_fetched_data
()
# Test Timetable
self
.
assertEqual
(
list
,
type
(
response
))
self
.
assertEqual
(
2
,
len
(
response
))
# Test Timeslot 1
ts1
=
response
[
0
]
self
.
assertEqual
(
1
,
ts1
[
"
show_id
"
])
self
.
assertEqual
(
"
Musikprogramm
"
,
ts1
[
"
show_name
"
])
self
.
assertEqual
(
"
Wurlitzer
"
,
ts1
[
"
title
"
])
self
.
assertEqual
(
1
,
ts1
[
"
playlist_id
"
])
self
.
assertEqual
(
1
,
ts1
[
"
playlist
"
][
"
id
"
])
self
.
assertEqual
(
"
musikprogramm
"
,
ts1
[
"
playlist
"
][
"
show
"
])
self
.
assertEqual
(
"
test
"
,
ts1
[
"
playlist
"
][
"
description
"
])
self
.
assertEqual
(
"
linear
"
,
ts1
[
"
playlist
"
][
"
playout-mode
"
])
# Test Timeslot 2
ts2
=
response
[
1
]
self
.
assertEqual
(
1
,
ts2
[
"
show_id
"
])
self
.
assertEqual
(
"
Musikprogramm
"
,
ts2
[
"
show_name
"
])
self
.
assertEqual
(
"
Pepi
'
s Polka
"
,
ts2
[
"
title
"
])
self
.
assertEqual
(
1
,
ts2
[
"
playlist_id
"
])
self
.
assertEqual
(
1
,
ts2
[
"
playlist
"
][
"
id
"
])
self
.
assertEqual
(
"
musikprogramm
"
,
ts2
[
"
playlist
"
][
"
show
"
])
self
.
assertEqual
(
"
test
"
,
ts2
[
"
playlist
"
][
"
description
"
])
self
.
assertEqual
(
"
linear
"
,
ts2
[
"
playlist
"
][
"
playout-mode
"
])
self
.
assertEqual
(
"
musikprogramm
"
,
ts2
[
"
default_schedule_playlist
"
][
"
show
"
])
self
.
assertEqual
(
"
test
"
,
ts2
[
"
default_schedule_playlist
"
][
"
description
"
])
self
.
assertEqual
(
"
linear
"
,
ts2
[
"
default_schedule_playlist
"
][
"
playout-mode
"
])
self
.
assertEqual
(
"
musikprogramm
"
,
ts2
[
"
default_show_playlist
"
][
"
show
"
])
self
.
assertEqual
(
"
test
"
,
ts2
[
"
default_show_playlist
"
][
"
description
"
])
self
.
assertEqual
(
"
linear
"
,
ts2
[
"
default_show_playlist
"
][
"
playout-mode
"
])
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