Add a test case
This commit is contained in:
parent
c0aaba15e2
commit
a79fbd1b19
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
.direnv
|
.direnv
|
||||||
.envrc
|
.envrc
|
||||||
|
.pytest_cache
|
||||||
__pycache__
|
__pycache__
|
||||||
cue_to_meta.egg-info
|
cue_to_meta.egg-info
|
||||||
venv
|
venv
|
||||||
|
@ -8,3 +8,6 @@ install_requires = Click
|
|||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts = cue_to_meta = cue_to_meta:cli
|
console_scripts = cue_to_meta = cue_to_meta:cli
|
||||||
|
|
||||||
|
[options.extras_require]
|
||||||
|
test = pytest
|
||||||
|
49
test_cue_to_meta.py
Normal file
49
test_cue_to_meta.py
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
"""Test case for cue_to_meta."""
|
||||||
|
|
||||||
|
# Copyright (c) 2023 Mark Cornick
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
# copy of this software and associated documentation files (the
|
||||||
|
# "Software"), to deal in the Software without restriction, including
|
||||||
|
# without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
# permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
# the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included
|
||||||
|
# in all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
import io
|
||||||
|
|
||||||
|
import cue_to_meta
|
||||||
|
|
||||||
|
|
||||||
|
def test_cue_to_meta():
|
||||||
|
cue_text = """PERFORMER "mcornick"
|
||||||
|
TITLE "Luv'n Time International"
|
||||||
|
FILE "recording.mp3" MP3
|
||||||
|
TRACK 01 AUDIO
|
||||||
|
TITLE "Track 1"
|
||||||
|
PERFORMER "Artist 1"
|
||||||
|
INDEX 01 00:00:00
|
||||||
|
TRACK 02 AUDIO
|
||||||
|
TITLE "Track 2"
|
||||||
|
PERFORMER "Artist 2"
|
||||||
|
INDEX 01 02:42:00"""
|
||||||
|
expected_meta = """000000:Artist 1 - Track 1
|
||||||
|
000242:Artist 2 - Track 2
|
||||||
|
"""
|
||||||
|
cue = io.StringIO(cue_text)
|
||||||
|
meta = io.StringIO()
|
||||||
|
cue_to_meta.cue_to_meta(cue, meta)
|
||||||
|
assert meta.getvalue() == expected_meta
|
Loading…
Reference in New Issue
Block a user