def test_normal_play_song():
    file_path = get_file_path("play_list/normal_play_song")
    sid = "1699763"  # 没收
    type = "e"
    channel = "4221247"  # 缘系MHZ
    play_list = get_play_list(sid, type, channel)
    write_to_file(file_path, play_list)


# if __name__ == "__main__":
#     nose.runmodule()
示例#2
0
def test_programmes_collect():
    file_path = get_file_path("programmes_collect")
    programmes_collect = client.fm.programmes_collect()
    write_to_file(file_path, programmes_collect)
示例#3
0
def test_channels_collect():
    file_path = get_file_path("channels_collect")
    channels_collect = client.fm.channels_collect()
    write_to_file(file_path, channels_collect)
示例#4
0
def test_channels():
    file_path = get_file_path("channels")
    channels = client.fm.channels()
    write_to_file(file_path, channels)
示例#5
0
def test_channels():
    file_path = get_file_path("channels")
    channels = client.fm.channels()
    write_to_file(file_path, channels)
示例#6
0
def test_search_channel():
    file_path = get_file_path("search_channel")
    query = "华语"
    search_channel = client.fm.search_channel(query=query)
    write_to_file(file_path, search_channel)
示例#7
0
def test_song_detail():
    file_path = get_file_path("song_detail")
    s = {"1954748": "漂洋过海来看你"}
    sid = "1954748"
    song_detail = client.fm.song_detail(sid=sid)
    write_to_file(file_path, song_detail)
示例#8
0
def test_user_play_record():
    file_path = get_file_path("user_play_record")
    user_play_record = client.fm.user_play_record()
    write_to_file(file_path, user_play_record)
示例#9
0
def test_song_lyric():
    file_path = get_file_path("song_lyric")
    sid = "1954748"
    ssid = "1c3c"
    song_lyric = client.fm.song_lyric(sid=sid, ssid=ssid)
    write_to_file(file_path, song_lyric)
示例#10
0
def test_user_play_record():
    file_path = get_file_path("user_play_record")
    user_play_record = client.fm.user_play_record()
    write_to_file(file_path, user_play_record)
示例#11
0
def test_programme_detail():
    file_path = get_file_path("programme_detail")
    pid = "1364115"  # 日本BGN
    programme_detail = client.fm.programmes_detail(pid=pid)
    write_to_file(file_path, programme_detail)
示例#12
0
def test_hot_and_guess_programmes():
    file_path = get_file_path("hot_and_guess_programmes")
    hot_and_guess_programmes = client.fm.hot_and_guess_programmes()
    write_to_file(file_path, hot_and_guess_programmes)
示例#13
0
def test_programmes_collect():
    file_path = get_file_path("programmes_collect")
    programmes_collect = client.fm.programmes_collect()
    write_to_file(file_path, programmes_collect)
示例#14
0
def test_channels_collect():
    file_path = get_file_path("channels_collect")
    channels_collect = client.fm.channels_collect()
    write_to_file(file_path, channels_collect)
示例#15
0
def test_hot_and_guess_programmes():
    file_path = get_file_path("hot_and_guess_programmes")
    hot_and_guess_programmes = client.fm.hot_and_guess_programmes()
    write_to_file(file_path, hot_and_guess_programmes)
示例#16
0
def test_programme_detail():
    file_path = get_file_path("programme_detail")
    pid = "1364115"  # 日本BGN
    programme_detail = client.fm.programmes_detail(pid=pid)
    write_to_file(file_path, programme_detail)
示例#17
0
def test_user_info():
    file_path = get_file_path("user_info")
    user_info = client.fm.user_info()
    write_to_file(file_path, user_info)
示例#18
0
def test_song_lyric():
    file_path = get_file_path("song_lyric")
    sid = "1954748"
    ssid = "1c3c"
    song_lyric = client.fm.song_lyric(sid=sid, ssid=ssid)
    write_to_file(file_path, song_lyric)
示例#19
0
def test_song_detail():
    file_path = get_file_path("song_detail")
    s = {"1954748": "漂洋过海来看你"}
    sid = "1954748"
    song_detail = client.fm.song_detail(sid=sid)
    write_to_file(file_path, song_detail)
示例#20
0
def test_user_info():
    file_path = get_file_path("user_info")
    user_info = client.fm.user_info()
    write_to_file(file_path, user_info)
示例#21
0
def test_search_channel():
    file_path = get_file_path("search_channel")
    query = "华语"
    search_channel = client.fm.search_channel(query=query)
    write_to_file(file_path, search_channel)
示例#22
0
def test_search_programme():
    file_path = get_file_path("search_programme")
    query = "华语"
    search_programme = client.fm.search_programme(query=query)
    write_to_file(file_path, search_programme)
示例#23
0
def test_search_programme():
    file_path = get_file_path("search_programme")
    query = "华语"
    search_programme = client.fm.search_programme(query=query)
    write_to_file(file_path, search_programme)