예제 #1
0
def test_unsupported_platform1():
    """ Unsupported platform, fallback to terminal. """

    o_platform = sys.platform
    o_stdin = sys.stdin
    o_app = dialite._the_app

    sys.platform = 'meh'

    sys.stdin = FakeStdin()

    try:

        app = dialite._select_app()
        assert app.works()
        assert isinstance(app, TerminalApp)
        dialite._the_app = app

        assert dialite.is_supported()

        with capture_log('info') as log:
            dialite.inform()
        assert len(log) == 1 and '[I' in log[0]

        with capture_log('info') as log:
            dialite.warn()  # no problem
        assert len(log) == 1 and '[W' in log[0]

        with capture_log('info') as log:
            dialite.fail()
        assert len(log) == 1 and '[E' in log[0]

        assert dialite.ask_ok()
        assert dialite.ask_retry()
        assert dialite.ask_yesno()

        sys.stdin.answer = 'no'
        assert not dialite.ask_ok()
        assert not dialite.ask_retry()
        assert not dialite.ask_yesno()

    finally:
        sys.platform = o_platform
        sys.stdin = o_stdin
        dialite._the_app = o_app
예제 #2
0
def test_unsupported_platform1():
    """ Unsupported platform, fallback to terminal. """
    
    o_platform = sys.platform
    o_stdin = sys.stdin
    o_app = dialite._the_app
    
    sys.platform = 'meh'
    
    sys.stdin = FakeStdin()
    
    try:
        
        app = dialite._get_app(True)
        assert app.works()
        assert isinstance(app, TerminalApp)
        
        assert dialite.is_supported()
        
        with capture_log('info') as log:
            dialite.inform()
        assert len(log) == 1 and '[I' in log[0]
        
        with capture_log('info') as log:
            dialite.warn()  # no problem
        assert len(log) == 1 and '[W' in log[0]
        
        with capture_log('info') as log:
            dialite.fail()
        assert len(log) == 1 and '[E' in log[0]
        
        assert dialite.ask_ok()
        assert dialite.ask_retry()
        assert dialite.ask_yesno()
        
        sys.stdin.answer = 'no'
        assert not dialite.ask_ok()
        assert not dialite.ask_retry()
        assert not dialite.ask_yesno()
    
    finally:
        sys.platform = o_platform
        sys.stdin = o_stdin
        dialite._the_app = o_app
예제 #3
0
def test_unsupported_platform2():
    """ Unsupported platform, and also no terminal. """
    
    o_platform = sys.platform
    o_stdin = sys.stdin
    o_app = dialite._the_app
    o_open = webbrowser.open
    
    sys.platform = 'meh'
    sys.stdin = None
    webbrowser.open = lambda x:None
    
    try:
        
        app = dialite._get_app(True)
        assert app.works()
        assert isinstance(app, StubApp)
        
        assert not dialite.is_supported()
        
        dialite.inform()  # no problem
        
        dialite.warn()  # no problem
        
        dialite.fail()  # no problem
        # with raises(SystemExit):
        #     dialite.fail()
        
        with raises(SystemExit):
            dialite.ask_ok()
        
        with raises(SystemExit):
            dialite.ask_retry()
            
        with raises(SystemExit):
            dialite.ask_yesno()
    
    finally:
        sys.platform = o_platform
        sys.stdin = o_stdin
        dialite._the_app = o_app
        webbrowser.open = o_open
예제 #4
0
def test_osx():
    """ Pretend that this is OS X. """
    
    o_platform = sys.platform
    o_app = dialite._the_app
    sys.platform = 'darwin'
    
    try:
        
        app = FakeOSXApp()
        # assert app.works()
        assert isinstance(app, OSXApp)
        dialite._the_app = app
        
        assert dialite.is_supported()
        
        dialite.inform()
        assert len(app._messages) == 1
        
        dialite.warn()
        assert len(app._messages) == 2
        
        dialite.fail()
        assert len(app._messages) == 3
        
        assert dialite.ask_ok()
        assert len(app._messages) == 4
        
        assert dialite.ask_retry()
        assert len(app._messages) == 5
        
        assert dialite.ask_yesno()
        assert len(app._messages) == 6
    
    finally:
        sys.platform = o_platform
        dialite._the_app = o_app
예제 #5
0
def test_linux():
    """ Pretend that this is Linux. """
    
    o_platform = sys.platform
    o_app = dialite._the_app
    sys.platform = 'linux'
    
    try:
        
        app = FakeLinuxApp()
        # assert app.works()
        assert isinstance(app, LinuxApp)
        dialite._the_app = app
        
        assert dialite.is_supported()
        
        dialite.inform()
        assert len(app._messages) == 1 and 'info' in app._messages[-1]
        
        dialite.warn()
        assert len(app._messages) == 2 and 'warn' in app._messages[-1]
        
        dialite.fail()
        assert len(app._messages) == 3 and 'error' in app._messages[-1]
        
        assert dialite.ask_ok()
        assert len(app._messages) == 4 and 'question' in app._messages[-1]
        
        assert dialite.ask_retry()
        assert len(app._messages) == 5 and 'question' in app._messages[-1]
        
        assert dialite.ask_yesno()
        assert len(app._messages) == 6 and 'question' in app._messages[-1]
    
    finally:
        sys.platform = o_platform
        dialite._the_app = o_app
예제 #6
0
파일: manual.py 프로젝트: Konubinix/flexx
from flexx import dialite

PREFIX = 'DIALITE TEST: '

# Calibrate

res = dialite.ask_yesno(PREFIX + 'yes-no',
                  'Do you see two options saying "Yes and "no"? '
                  'If not this test failed before it really started ...')
assert res is True

res = dialite.ask_yesno(PREFIX + 'yes-no', 'Make me a sandwich.')
assert res is False

res = dialite.ask_retry(PREFIX + 'retry', 'Please let me try that again ...')
assert res is True

res = dialite.ask_yesno(PREFIX + 'yes-no', 'Sudo make me a sandwich.')
assert res is True

# Unicode

res = dialite.ask_yesno(PREFIX + 'unicode',
                  'Do you see "double quotes", \'single quotes\', '
                  'a euro symbol (€), pi symbol (π), an A with a roof (Â)?')
assert res is True

# Three message boxes

res = dialite.inform(PREFIX + 'info', 'Awesome! '