You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
e3b700b553
Full output of failed test ``` ERROR: test_okay (__main__.FakeSshTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "tests/ssh_test.py", line 16, in test_okay ssh_path=testlib.data_path('fakessh.py'), File "/home/alex/src/mitogen/mitogen/master.py", line 650, in ssh return self.connect('ssh', **kwargs) File "/home/alex/src/mitogen/mitogen/parent.py", line 463, in connect return self._connect(context_id, klass, name=name, **kwargs) File "/home/alex/src/mitogen/mitogen/parent.py", line 449, in _connect stream.connect() File "/home/alex/src/mitogen/mitogen/ssh.py", line 104, in connect super(Stream, self).connect() File "/home/alex/src/mitogen/mitogen/parent.py", line 395, in connect self._connect_bootstrap() File "/home/alex/src/mitogen/mitogen/ssh.py", line 116, in _connect_bootstrap time.time() + 10.0): File "/home/alex/src/mitogen/mitogen/parent.py", line 207, in iter_read (''.join(bits)[-300:],) mitogen.core.StreamError: EOF on stream; last 300 bytes received: 'Usage: fakessh.py [options]\n\nfakessh.py: error: no such option: -o\n' ``` |
7 years ago | |
---|---|---|
.. | ||
data | 7 years ago | |
README.md | 7 years ago | |
ansible_helpers_test.py | 7 years ago | |
build_docker_image.py | 7 years ago | |
call_function_test.py | 7 years ago | |
channel_test.py | 7 years ago | |
fakessh_test.py | 7 years ago | |
first_stage_test.py | 7 years ago | |
id_allocation_test.py | 7 years ago | |
importer_test.py | 7 years ago | |
latch_test.py | 7 years ago | |
local_test.py | 7 years ago | |
master_test.py | 7 years ago | |
module_finder_test.py | 7 years ago | |
nested_test.py | 7 years ago | |
parent_test.py | 7 years ago | |
responder_test.py | 7 years ago | |
router_test.py | 7 years ago | |
select_test.py | 7 years ago | |
ssh_test.py | 7 years ago | |
testlib.py | 7 years ago | |
utils_test.py | 7 years ago |
README.md
Warning
This directory is full of disorganized crap, including random hacks I checked in that I'd like to turn into tests. The effort to write tests only really started in September 2017. Pull requests in this area are very welcome!
Running The Tests
Your computer should have an Internet connection, and the docker
command
line tool should be able to connect to a working Docker daemon (localhost or
elsewhere for OS X etc.) that can run new images.
The IP address of the Docker daemon must allow exposing ports from running containers, e.g. it should not be firewalled or port forwarded.
If in doubt, just install Docker on a Linux box in the default configuration and run the tests there.
Steps To Prepare Development Environment
- Get the code
git clone https://github.com/dw/mitogen.git
- Go into the working directory
cd mitogen
- Establish the docker image
./tests/build_docker_image.py
- Build the virtual environment
virtualenv ../venv
- Enable the virtual environment we just built
source ../venv/bin/activate
- Install Mitogen in pip editable mode
pip install -e .
- Run
test.sh