Commit Graph

15 Commits

Author SHA1 Message Date
Alex Willmer 18c89de5a9 Remove unused module imports 2022-04-23 10:01:06 +01:00
Alex Willmer a8317c2393 tests: Remove unittest2, use stdlib unittest
unittest2 is incomplatible with Python 3.10
2022-04-20 17:54:12 +01:00
David Wilson 25bffc424d issue #477: util/fakessh/two_three_compat fixes. 2019-01-26 02:56:35 +00:00
David Wilson 8a0b343760 issue #406: test for FD leak after every TestCase 2018-11-03 13:28:37 +00:00
David Wilson 89676b1257 tests: put unittest.skip() around fakessh tests for the time being 2018-04-16 14:28:07 +01:00
David Wilson f203a91e1a tests: support CentOS Docker images.
- namespace & document test accounts in README.md
- standardize the password format everywhere, and ensure the passwords
  differ everywhere.
- Add MITOGEN_TEST_DISTRO environment variable.
2018-04-16 14:24:39 +01:00
Alex Willmer 841c2b13a1 fakessh_test: Apply timeout decorators to rsync tests
timeoutcontext.timeout uses SIGALRM, hence it will only work on Unix
like operating systems.
2018-04-01 01:17:29 +01:00
Alex Willmer 7e01c5bed5 Import and use unittest2 without aliasing it 2018-03-19 21:58:28 +05:45
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.
2018-03-19 21:58:28 +05:45
Alex Willmer 17da6e9998 Use unittest2 in all tests
This allows using features such as TestCase,assertIsInstance on Python
2.6 and earlier.
2018-03-19 21:58:27 +05:45
David Wilson 7389272dc4 tests: stop fakessh spamming the logs 2018-03-19 21:58:27 +05:45
David Wilson 1510b72a25 fakessh: Add integration test for inter-child rsync. 2018-03-19 21:35:35 +05:45
David Wilson 5dff221842 fakessh: cleanup master test. 2018-03-19 21:35:35 +05:45
David Wilson 3a0f03183c Simple working fakessh_test. 2018-03-19 21:35:35 +05:45
David Wilson 92ae866271 Import random old test scripts into tests/ dir. 2018-03-19 21:35:17 +05:45