def test_artist_track1popularity(self): artist = Artist.create("kesha", "ACL") result = artist.track1popularity self.assertEqual(result, 80)
def test_artist_imageLink(self): artist = Artist.create("kesha", "ACL") result = artist.imageLink self.assertTrue(isinstance(result, str))
def test_artist_track1(self): artist = Artist.create("kesha", "ACL") result = artist.track1 self.assertEqual(result, "TiK ToK")
def test_artist_followers(self): artist = Artist.create("kesha", "ACL") result = artist.followers self.assertTrue(isinstance(result, int))
def test_artist_spotifyID(self): artist = Artist.create("kesha", "ACL") result = artist.spotifyID self.assertTrue(isinstance(result, str))
def test_artist_popularity(self): artist = Artist.create("kesha", "ACL") result = artist.popularity self.assertTrue(isinstance(result, int))
def test_artist_genres(self): artist = Artist.create("kesha", "ACL") result = artist.genres self.assertTrue(result) #check not empty
def test_artist_bio(self): artist = Artist.create("kesha", "ACL") result = artist.bio self.assertTrue(isinstance(result, str))
def test_artist_name(self): artist = Artist.create("kesha", "ACL") result = artist.name self.assertEqual(result, "Kesha")
from webapp.models import Artist, Concerts artistlist = Artist.objects.all() for artist in artistlist: artist.delete() concertlist = Concerts.objects.all() for c in concertlist: artist = Artist.create(c.artists[0], c.concertName) if artist is not None: try: artist.save() except: continue