fixing tests

This commit is contained in:
evilchili
2022-12-07 18:19:38 -08:00
parent 27e8ee48eb
commit 70f55105de
6 changed files with 93 additions and 53 deletions
+11
View File
@@ -5,6 +5,7 @@ from pathlib import Path
from dotenv import load_dotenv
import groove.db
from groove.playlist import Playlist
from sqlalchemy import create_engine, insert
from sqlalchemy.orm import sessionmaker
@@ -77,3 +78,13 @@ def db(in_memory_db):
{'playlist_id': '3', 'track': '2', 'track_id': '3'},
])
yield in_memory_db
@pytest.fixture(scope='function')
def empty_playlist(db):
return Playlist(
name='an empty playlist fixture',
slug='an-empty-playlist',
description='a fixture',
session=db
)
+35 -35
View File
@@ -1,73 +1,73 @@
# 70, 73-81, 84, 88-97, 100-104
import pytest
from groove import playlist
from groove.exceptions import PlaylistValidationError
def test_create(db):
pl = playlist.Playlist(slug='test-create-playlist', session=db, create_ok=True)
assert pl.record.id
def test_create(empty_playlist):
assert empty_playlist.record.id
@pytest.mark.parametrize('vals, expected', [
(dict(name='missing-the-slug', ), TypeError),
(dict(name='missing-the-slug', slug=''), PlaylistValidationError),
(dict(slug='missing-the-name', name=''), PlaylistValidationError),
])
def test_create_missing_fields(vals, expected, db):
with pytest.raises(expected):
assert playlist.Playlist(**vals, session=db, create_ok=True).record.id
@pytest.mark.parametrize('tracks', [
('01 Guns Blazing', ),
('01 Guns Blazing', '02 UNKLE'),
])
def test_add(db, tracks):
pl = playlist.Playlist(slug='test-create-playlist', session=db)
count = pl.add(tracks)
assert count == len(tracks)
def test_add(tracks, empty_playlist):
assert empty_playlist.add(tracks) == len(tracks)
def test_add_no_matches(db):
pl = playlist.Playlist(slug='playlist-one', session=db)
assert pl.add(('no match', )) == 0
def test_add_no_matches(empty_playlist):
assert empty_playlist.add(('no match', )) == 0
def test_add_multiple_matches(db):
pl = playlist.Playlist(slug='playlist-one', session=db)
assert pl.add('UNKLE',) == 0
def test_add_multiple_matches(empty_playlist):
assert empty_playlist.add('UNKLE',) == 0
def test_delete(db):
pl = playlist.Playlist(slug='playlist-one', session=db)
expected = pl.record.id
assert pl.delete() == expected
assert not pl.exists
assert pl.deleted
def test_delete(empty_playlist):
expected = empty_playlist.record.id
assert empty_playlist.delete() == expected
assert not empty_playlist.exists
assert empty_playlist.deleted
def test_delete_playlist_not_exist(db):
pl = playlist.Playlist(slug='playlist-doesnt-exist', session=db, create_ok=False)
pl = playlist.Playlist(name='foo', slug='foo', session=db, create_ok=False)
assert not pl.delete()
assert not pl.exists
assert not pl.deleted
def test_cannot_create_after_delete(db):
pl = playlist.Playlist(slug='playlist-one', session=db)
pl.delete()
def test_cannot_create_after_delete(db, empty_playlist):
empty_playlist.delete()
with pytest.raises(RuntimeError):
assert pl.record
assert not pl.exists
assert empty_playlist.record
assert not empty_playlist.exists
def test_entries(db):
pl = playlist.Playlist(slug='playlist-one', session=db)
# assert twice for branch coverage of cached values
pl = playlist.Playlist.by_slug('playlist-one', db)
assert pl.entries
assert pl.entries
def test_playlist_not_exist_formatted(db):
pl = playlist.Playlist(slug='fnord', session=db, create_ok=False)
assert not repr(pl)
assert not pl.as_dict
def test_playlist_formatted(db):
pl = playlist.Playlist(slug='playlist-one', session=db)
pl = playlist.Playlist(name='foo', slug='foo', session=db, create_ok=False)
assert repr(pl)
assert pl.as_string
assert pl.as_dict
def test_playlist_formatted(db, empty_playlist):
assert repr(empty_playlist)
assert empty_playlist.as_string
assert empty_playlist.as_dict