mirror of
				https://github.com/KevinMidboe/spotify-downloader.git
				synced 2025-10-29 18:00:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: UTF-8 -*-
 | 
						|
 | 
						|
import spotdl
 | 
						|
 | 
						|
raw_song = 'http://open.spotify.com/track/0JlS7BXXD07hRmevDnbPDU'
 | 
						|
 | 
						|
 | 
						|
def test_spotify_title():
 | 
						|
    expect_title = 'David André Østby - Intro'
 | 
						|
    title = spotdl.generate_songname(raw_song)
 | 
						|
    assert title == expect_title
 | 
						|
 | 
						|
 | 
						|
def test_youtube_url():
 | 
						|
    expect_url = 'youtube.com/watch?v=rg1wfcty0BA'
 | 
						|
    url = spotdl.generate_youtube_url(raw_song)
 | 
						|
    assert url == expect_url
 | 
						|
 | 
						|
 | 
						|
def test_youtube_title():
 | 
						|
    expect_title = 'Intro - David André Østby'
 | 
						|
    content = spotdl.go_pafy(raw_song)
 | 
						|
    title = spotdl.get_youtube_title(content)
 | 
						|
    assert title == expect_title
 | 
						|
 | 
						|
 | 
						|
def test_check_exists():
 | 
						|
    expect_check = False
 | 
						|
    content = spotdl.go_pafy(raw_song)
 | 
						|
    music_file = spotdl.misc.generate_filename(content.title)
 | 
						|
    music_file = spotdl.misc.fix_decoding(music_file)
 | 
						|
    check = spotdl.check_exists(music_file, raw_song)
 | 
						|
    assert check == expect_check
 | 
						|
 | 
						|
 | 
						|
def test_download():
 | 
						|
    expect_download = True
 | 
						|
    content = spotdl.go_pafy(raw_song)
 | 
						|
    download = spotdl.download_song(content)
 | 
						|
    assert download == expect_download
 | 
						|
 | 
						|
 | 
						|
def test_convert():
 | 
						|
    # exit code 0 = success
 | 
						|
    expect_convert = 0
 | 
						|
    content = spotdl.go_pafy(raw_song)
 | 
						|
    music_file = spotdl.misc.generate_filename(content.title)
 | 
						|
    music_file = spotdl.misc.fix_decoding(music_file)
 | 
						|
    input_song = music_file + spotdl.args.input_ext
 | 
						|
    output_song = music_file + spotdl.args.output_ext
 | 
						|
    convert = spotdl.convert.song(input_song, output_song)
 | 
						|
    assert convert == expect_convert
 | 
						|
 | 
						|
 | 
						|
def test_metadata():
 | 
						|
    expect_metadata = True
 | 
						|
    content = spotdl.go_pafy(raw_song)
 | 
						|
    music_file = spotdl.misc.generate_filename(content.title)
 | 
						|
    music_file = spotdl.misc.fix_decoding(music_file)
 | 
						|
    meta_tags = spotdl.generate_metadata(raw_song)
 | 
						|
 | 
						|
    output_song = music_file + spotdl.args.output_ext
 | 
						|
    metadata_output = spotdl.metadata.embed(output_song, meta_tags)
 | 
						|
 | 
						|
    input_song = music_file + spotdl.args.input_ext
 | 
						|
    metadata_input = spotdl.metadata.embed(input_song, meta_tags)
 | 
						|
 | 
						|
    assert metadata_output == (metadata_input == expect_metadata)
 | 
						|
 | 
						|
 | 
						|
def check_exists2():
 | 
						|
    expect_check = True
 | 
						|
    content = spotdl.go_pafy(raw_song)
 | 
						|
    music_file = spotdl.misc.generate_filename(content.title)
 | 
						|
    music_file = spotdl.misc.fix_decoding(music_file)
 | 
						|
    check = spotdl.check_exists(music_file, raw_song)
 | 
						|
    assert check == expect_check
 |