Exemple #1
0
 def test_artist_track1popularity(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.track1popularity
     self.assertEqual(result, 80)
Exemple #2
0
 def test_artist_imageLink(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.imageLink
     self.assertTrue(isinstance(result, str))
Exemple #3
0
 def test_artist_track1(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.track1
     self.assertEqual(result, "TiK ToK")
Exemple #4
0
 def test_artist_followers(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.followers
     self.assertTrue(isinstance(result, int))
Exemple #5
0
 def test_artist_spotifyID(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.spotifyID
     self.assertTrue(isinstance(result, str))
Exemple #6
0
 def test_artist_popularity(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.popularity
     self.assertTrue(isinstance(result, int))
Exemple #7
0
 def test_artist_genres(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.genres
     self.assertTrue(result)  #check not empty
Exemple #8
0
 def test_artist_bio(self):
     artist = Artist.create("kesha", "ACL")
     result = artist.bio
     self.assertTrue(isinstance(result, str))
Exemple #9
0
 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