https://github.com/robotframework/RIDE
Raw File
Tip revision: 763a0f456478a3fd396a57ca110ce315b08ace55 authored by HelioGuilherme66 on 28 April 2020, 22:36:08 UTC
Fix for locking wxPython version to 4.0.7.post2
Tip revision: 763a0f4
test_run_anything.py
#  Copyright 2008-2015 Nokia Networks
#  Copyright 2016-     Robot Framework Foundation
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.

import unittest
import time
import os
import sys
from nose.tools import assert_equal, assert_true

from robotide.run.runanything import RunConfig
from robotide.run.ui import Runner
from resources import PYAPP_REFERENCE as _


SCRIPT = os.path.join(os.path.dirname(__file__),
                      'process_test_scripts.py').replace(' ', '<SPACE>')


class _TestableRunner(Runner):
    output = property(lambda self: self._window.output)
    outstr = property(lambda self: self._window.outstr)
    finished = property(lambda self: self._window.finished)
    def _get_output_window(self, notebook):
        return _FakeOutputWindow()

class _FakeOutputWindow(object):
    outstr = property(lambda self: ''.join(self.output))
    def __init__(self):
        self.output = []
    def update_output(self, output, finished):
        self.output.append(output)
        self.finished = finished


class TestRunAnything(unittest.TestCase):

    def test_run(self):
        self.runner = self._create_runner('python %s count_args a b c' % SCRIPT)
        self._wait_until_finished()
        assert_true(self.runner.finished)
        assert_equal(self.runner.outstr, '3\n')

    if sys.version_info[:2] >= (2,6):
        def test_stopping(self):
            self.runner = self._create_runner('python %s output 0.8' % SCRIPT)
            time.sleep(0.3)
            self.runner.stop()
            self._sleep_and_log_output(0.1)
            assert_true(self.runner.finished)
            assert_true(self.runner.outstr.startswith('start\nrunning '))

    def test_error(self):
        self.runner = self._create_runner('invalid command')
        self._wait_until_finished()
        assert_true(self.runner.finished)
        assert_true(self.runner.outstr)

    def test_stderr(self):
        self.runner = self._create_runner('python %s stderr' % SCRIPT)
        self._wait_until_finished()
        assert_true(self.runner.finished)
        assert_equal(self.runner.outstr, 'This is stderr\n')

    def _create_runner(self, cmd):
        runner = _TestableRunner(RunConfig('test', cmd, ''), None)
        runner.run()
        return runner

    def _wait_until_finished(self):
        self.runner._process.wait()
        self.runner.OnTimer()

    def _sleep_and_log_output(self, amount):
        time.sleep(amount)
        self.runner.OnTimer()


if __name__ == '__main__':
    unittest.main()

back to top