Esempio n. 1
0
def test_spotify_string_different(tmpdir, monkeypatch):
    p = tmpdir.join('prefs')
    p.write(
        textwrap.dedent('''\
        autologin.canonical_username="******"
        autologin.username="******"
        app.autostart-mode="off"
        app.autostart-banner-seen=true
        core.clock_delta=-1
        app.autostart-configured=true
    '''))

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={
        'autologin.canonical_username': '******',
        'autologin.username': '******'
    })
    assert spotify.process() == ActionResponse(changed=True,
                                               data={'path': p.strpath})
    assert p.read() == textwrap.dedent('''\
        autologin.canonical_username="******"
        autologin.username="******"
        app.autostart-mode="off"
        app.autostart-banner-seen=true
        core.clock_delta=-1
        app.autostart-configured=true
    ''')
Esempio n. 2
0
def test_spotify_boolean_different(tmpdir, monkeypatch):
    p = tmpdir.join('prefs')
    p.write(
        textwrap.dedent('''\
        audio.sync_bitrate_enumeration=3
        audio.play_bitrate_enumeration=0
        ui.hide_hpto=true
        audio.normalize_v2=false
        app.player.autoplay=false
        ui.show_friend_feed=true
    '''))

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'ui.show_friend_feed': False})
    assert spotify.process() == ActionResponse(changed=True,
                                               data={'path': p.strpath})
    assert p.read() == textwrap.dedent('''\
        audio.sync_bitrate_enumeration=3
        audio.play_bitrate_enumeration=0
        ui.hide_hpto=true
        audio.normalize_v2=false
        app.player.autoplay=false
        ui.show_friend_feed=false
    ''')
Esempio n. 3
0
def test_spotify_not_writable(tmpdir, monkeypatch):
    p = tmpdir.join('test.json')

    monkeypatch.setattr('builtins.open',
                        build_open_with_permission_error(p.strpath))
    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'autologin.username': '******'})
    with pytest.raises(ActionError):
        spotify.process()
Esempio n. 4
0
def test_spotify_boolean_inexistent(tmpdir, monkeypatch):
    p = tmpdir.join('prefs').ensure()

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'ui.show_friend_feed': False})
    assert spotify.process() == ActionResponse(changed=True,
                                               data={'path': p.strpath})
    assert p.read() == textwrap.dedent('''\
        ui.show_friend_feed=false
    ''')
Esempio n. 5
0
def test_spotify_file_parsing_invalid(tmpdir, monkeypatch):
    p = tmpdir.join('prefs')
    p.write(textwrap.dedent('''\
        hmmmm
    '''))

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'autologin.username': '******'})
    with pytest.raises(ActionError):
        spotify.process()
Esempio n. 6
0
def test_spotify_string_inexistent(tmpdir, monkeypatch):
    p = tmpdir.join('prefs').ensure()

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'autologin.username': '******'})
    assert spotify.process() == ActionResponse(changed=True,
                                               data={'path': p.strpath})
    assert p.read() == textwrap.dedent('''\
        autologin.username="******"
    ''')
Esempio n. 7
0
def test_spotify_integer_inexistent(tmpdir, monkeypatch):
    p = tmpdir.join('prefs').ensure()

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'audio.sync_bitrate_enumeration': 4},
                      username='******')
    assert spotify.process() == ActionResponse(changed=True,
                                               data={'path': p.strpath})
    assert p.read() == textwrap.dedent('''\
        audio.sync_bitrate_enumeration=4
    ''')
Esempio n. 8
0
def test_spotify_supplied_value_invalid(tmpdir, monkeypatch):
    p = tmpdir.join('prefs')
    p.write(
        textwrap.dedent('''\
        audio.sync_bitrate_enumeration=3
        audio.play_bitrate_enumeration=0
        ui.hide_hpto=true
        audio.normalize_v2=false
        app.player.autoplay=false
        ui.show_friend_feed=true
    '''))

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={'wow': 5.5})
    with pytest.raises(ActionError):
        spotify.process()
Esempio n. 9
0
def test_spotify_file_value_invalid(tmpdir, monkeypatch):
    p = tmpdir.join('prefs')
    p.write(
        textwrap.dedent('''\
        autologin.canonical_username="******"
        autologin.username="******"
        wow=[]
        app.autostart-configured=true
    '''))

    monkeypatch.setattr(Spotify, 'determine_pref_path', lambda self: p.strpath)

    spotify = Spotify(values={
        'autologin.canonical_username': '******',
        'autologin.username': '******'
    })
    with pytest.raises(ActionError):
        spotify.process()
Esempio n. 10
0
def test_determine_pref_path():
    spotify = Spotify(values={'ui.show_friend_feed': False})
    assert spotify.determine_pref_path() == (
        '~/Library/Application Support/Spotify/prefs')
Esempio n. 11
0
def test_determine_pref_path_username():
    spotify = Spotify(values={'ui.show_friend_feed': False}, username='******')
    assert spotify.determine_pref_path() == (
        '~/Library/Application Support/Spotify/Users/fots-user/prefs')