David Wilson
f726ef86de
tests: first_stage_test regression due to 1ff27ada49
7 years ago
David Wilson
40b978c9b7
core: Fix source verification.
...
Previously:
* src_id could be spoofed
* auth_id was checked but the message was still delivered!
7 years ago
David Wilson
fe614aa966
core: cleanup handlers on broker crash; closes #112 .
7 years ago
David Wilson
1ff27ada49
Add maximum message size checks. Closes #151 .
7 years ago
David Wilson
80a97fbc9b
core: Rename Sender.put() to Sender.send().
...
Been annoying me for months.
7 years ago
David Wilson
085b3d21bd
core: fix call_function_test regression
...
Second time in 3 weeks. So stupid. This time write tests.
7 years ago
David Wilson
0f29baa077
core: support pickling senders, Receiver.to_sender()
...
CC @moreati, in case this impacts you
7 years ago
David Wilson
17aef51e6e
tests: Import .local() latency test
7 years ago
David Wilson
a8a31728a0
tests: Import Latch soak test
7 years ago
David Wilson
03fcf057dd
tests: just call log_to_file() from testlib
...
Now we can run test.sh with MITOGEN_LOG_LEVEL=debug and things just
work.
7 years ago
David Wilson
761cd9eaf8
tests: import tty_create_child_test.py.
7 years ago
David Wilson
7b12f84366
core: support CallError(str) for service.py.
7 years ago
David Wilson
fccca54068
tests: ensure OpenSSL is initialized prior to test.
7 years ago
David Wilson
4903052f42
fork: reseed Python/SSL PRNGs
...
Mac's SSL seems to have a pthread_atfork handler or similar that does
this for us, no clue if Linux is the same.
7 years ago
David Wilson
48351a1889
issue #155 : parent: support Context.shutdown(), reap children on exit.
...
This permits graceful shutdown of individual contexts, without tearing
down everything.
Update mitogen.parent.Stream to also wait for the child to exit, to
prevent the buildup of zombie processes. This introduces a blocking wait
for process exit on the Broker thread, let's see if we can get away with
it. Chances are reasonable that it'll cause needless hangs on heavily
loaded machines.
7 years ago
David Wilson
4f93c6823a
issue #155 : skeletal fork_test.
7 years ago
David Wilson
2d7821b824
tests: test_stream_name: fix non-localhost Docker
7 years ago
David Wilson
23e279b617
tests: get import_test limping back to health.
7 years ago
David Wilson
f4ba66e3ee
issue #155 : allocate child IDs in batches of 1000.
...
Avoids a roundtrip for every fork.
7 years ago
David Wilson
2132c311b2
tests: mark some tests as skipped
7 years ago
David Wilson
8aada2646c
core: support throwing LatchError in every sleeping thread
...
This is to allow Select() to be used as a generic queueing primitive
that supports graceful shutdown.
7 years ago
Alex Willmer
e3b700b553
tests: Fix no such option -o running FakeSsh.test_okay()
...
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
Alex Willmer
0f82f68fee
parent: Precompute preamble sizes for first stage
...
SSH command size: 453 (no change)
Preamble size: 8941 (-5 bytes)
7 years ago
Alex Willmer
b433645d11
tests: Fix import error
7 years ago
Alex Willmer
c6f3bfd93a
tests: Correct path to apply_mode_spec()
7 years ago
David Wilson
23f78ca5a2
README: move testing bits into tests directory.
7 years ago
David Wilson
f5b5e4849e
tests: import very basic latch_test
7 years ago
David Wilson
f6d87faf37
tests: import ansible_helpers_test.
7 years ago
Alex Willmer
4b373c421b
core: Standardise type of Importer.whitelist
...
This seemed a reasonable streamlining, but I'm happy to be overruled.
7 years ago
Alex Willmer
8338caa419
tests: Add mitogen.core.is_blacklisted_import() tests
...
These test the current behviour, which may not be exactly the intended
behaviour. Refs #98
7 years ago
Alex Willmer
491355548d
tests: Fix typo in ResolveRelPathTest
7 years ago
Alex Willmer
ef35d55523
tests: Remove jinja2/markupsafe modules from FindRelatedTest
...
Not sure how they got there, but Django doesn't use Jinja without
explicit configuration.
7 years ago
Alex Willmer
eee312a57e
tests: Fix expected values FindRelatedTest for Django 1.11.4
7 years ago
Alex Willmer
4424bfbb7a
tests: Add new FindRelatedImportsTest
7 years ago
Alex Willmer
9e43f5e6ba
tests: Remove module under search from expected results
...
This matches a tweak made in 8765f761c9
7 years ago
Alex Willmer
0f9bfc1e21
tests: Rename FindRelatedImportsTest -> FindRelatedTest
7 years ago
David Wilson
afc8697288
core: Ensure add_handler() callbacks really receive _DEAD on shutdown
7 years ago
David Wilson
ccd9c62399
tests: stubs for future whitelist/blacklist tests.
7 years ago
Alex Willmer
f4405c6bbc
Split IterReadTest & WriteAllTest into test_parent
...
This matches their respective functions under test, which now reside in
mitogen.parent.
7 years ago
Alex Willmer
4fb1b928b7
Adjust unittest for master -> parent split
...
Tests should now match changes in
4d31300dd0
7 years ago
Alex Willmer
9ccff0f5d1
Fix TypeError while initiliazing ImporterMixin
...
Since f44356af32
mitogen.core.Importer()
takes a Router instance.
7 years ago
Alex Willmer
fa0f390d4d
FIx syntax error in FindRelatedImportsTest.test_django_db_models
7 years ago
David Wilson
dd088908df
select: clean up API.
7 years ago
David Wilson
219718740b
Move django test script into permanent test
7 years ago
David Wilson
ec1de4b4b9
tests: ensure strace is available in the docker image..
...
..and enable privileged=True since that's needed for ptrace()
7 years ago
David Wilson
b2909ee5f4
Replace nasty print statements in six_brokenpkg.
7 years ago
Alex Willmer
7e01c5bed5
Import and use unittest2 without aliasing it
7 years ago
Alex Willmer
e8e023ce59
Use specific TestCase assertions throughout tests
...
e.g. assert x == y -> self.assertEqual(x, y);
self.assertTrue(isinstance(x, y)) -> self.assertIsInstance(x, y)
These specific methods give more useful errors in the case of a test
failure.
7 years ago
Alex Willmer
df9556d1d9
Replace custom assertContains() with unitest2 assertIn()
7 years ago
Alex Willmer
17da6e9998
Use unittest2 in all tests
...
This allows using features such as TestCase,assertIsInstance on Python
2.6 and earlier.
7 years ago