Python test.support.threading_setup() Examples
The following are 30
code examples of test.support.threading_setup().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
test.support
, or try the search function
.
Example #1
Source File: test_docxmlrpc.py From Fluid-Designer with GNU General Public License v3.0 | 6 votes |
def setUp(self): self._threads = support.threading_setup() # Enable server feedback DocXMLRPCServer._send_traceback_header = True self.evt = threading.Event() threading.Thread(target=server, args=(self.evt, 1)).start() # wait for port to be assigned deadline = time.monotonic() + 10.0 while PORT is None: time.sleep(0.010) if time.monotonic() > deadline: break self.client = http.client.HTTPConnection("localhost:%d" % PORT)
Example #2
Source File: test_thread.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUp(self): self.done_mutex = thread.allocate_lock() self.done_mutex.acquire() self.running_mutex = thread.allocate_lock() self.random_mutex = thread.allocate_lock() self.created = 0 self.running = 0 self.next_ident = 0 key = support.threading_setup() self.addCleanup(support.threading_cleanup, *key)
Example #3
Source File: test_docxmlrpc.py From ironpython3 with Apache License 2.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup() # Enable server feedback DocXMLRPCServer._send_traceback_header = True self.evt = threading.Event() threading.Thread(target=server, args=(self.evt, 1)).start() # wait for port to be assigned n = 1000 while n > 0 and PORT is None: time.sleep(0.001) n -= 1 self.client = http.client.HTTPConnection("localhost:%d" % PORT)
Example #4
Source File: test_asynchat.py From ironpython3 with Apache License 2.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #5
Source File: test_utils.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUp(self): self._get_running_loop = events._get_running_loop events._get_running_loop = lambda: None self._thread_cleanup = support.threading_setup()
Example #6
Source File: test_ftplib.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_main(): tests = [TestFTPClass, TestTimeouts, TestIPv6Environment, TestTLS_FTPClassMixin, TestTLS_FTPClass] thread_info = support.threading_setup() try: support.run_unittest(*tests) finally: support.threading_cleanup(*thread_info)
Example #7
Source File: test_urllib2_localnet.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUpModule(): # Store the threading_setup in a key and ensure that it is cleaned up # in the tearDown global threads_key threads_key = support.threading_setup()
Example #8
Source File: lock_tests.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #9
Source File: test_httpservers.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup() os.environ = support.EnvironmentVarGuard() self.server_started = threading.Event() self.thread = TestServerThread(self, self.request_handler) self.thread.start() self.server_started.wait()
Example #10
Source File: test_poplib.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_main(): tests = [TestPOP3Class, TestTimeouts, TestPOP3_SSLClass, TestPOP3_TLSClass] thread_info = test_support.threading_setup() try: test_support.run_unittest(*tests) finally: test_support.threading_cleanup(*thread_info)
Example #11
Source File: test_poplib.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_main(): tests = [TestPOP3Class, TestTimeouts, TestPOP3_SSLClass, TestPOP3_TLSClass] thread_info = test_support.threading_setup() try: test_support.run_unittest(*tests) finally: test_support.threading_cleanup(*thread_info)
Example #12
Source File: test_os.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUpClass(cls): cls.key = support.threading_setup() with open(support.TESTFN, "wb") as f: f.write(cls.DATA)
Example #13
Source File: test_asynchat.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #14
Source File: test_ftplib.py From android_universal with MIT License | 5 votes |
def test_main(): tests = [TestFTPClass, TestTimeouts, TestIPv6Environment, TestTLS_FTPClassMixin, TestTLS_FTPClass, MiscTestCase] thread_info = support.threading_setup() try: support.run_unittest(*tests) finally: support.threading_cleanup(*thread_info)
Example #15
Source File: test_urllib2_localnet.py From android_universal with MIT License | 5 votes |
def setUpModule(): # Store the threading_setup in a key and ensure that it is cleaned up # in the tearDown global threads_key threads_key = support.threading_setup()
Example #16
Source File: lock_tests.py From android_universal with MIT License | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #17
Source File: utils.py From android_universal with MIT License | 5 votes |
def setUp(self): self._get_running_loop = events._get_running_loop events._get_running_loop = lambda: None self._thread_cleanup = support.threading_setup()
Example #18
Source File: test_os.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def setUpClass(cls): cls.key = support.threading_setup() with open(support.TESTFN, "wb") as f: f.write(cls.DATA)
Example #19
Source File: fork_wait.py From ironpython2 with Apache License 2.0 | 5 votes |
def setUp(self): self._threading_key = support.threading_setup() self.alive = {} self.stop = 0 self.threads = []
Example #20
Source File: test_ftplib.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_main(): tests = [TestFTPClass, TestTimeouts, TestIPv6Environment, TestTLS_FTPClassMixin, TestTLS_FTPClass] thread_info = support.threading_setup() try: support.run_unittest(*tests) finally: support.threading_cleanup(*thread_info)
Example #21
Source File: test_urllib2_localnet.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def setUpModule(): # Store the threading_setup in a key and ensure that it is cleaned up # in the tearDown global threads_key threads_key = support.threading_setup()
Example #22
Source File: lock_tests.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #23
Source File: test_poplib.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_main(): tests = [TestPOP3Class, TestTimeouts, TestPOP3_SSLClass, TestPOP3_TLSClass] thread_info = test_support.threading_setup() try: test_support.run_unittest(*tests) finally: test_support.threading_cleanup(*thread_info)
Example #24
Source File: test_thread.py From ironpython2 with Apache License 2.0 | 5 votes |
def setUp(self): self.done_mutex = thread.allocate_lock() self.done_mutex.acquire() self.running_mutex = thread.allocate_lock() self.random_mutex = thread.allocate_lock() self.created = 0 self.running = 0 self.next_ident = 0 key = support.threading_setup() self.addCleanup(support.threading_cleanup, *key)
Example #25
Source File: test_asynchat.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #26
Source File: _asyncio_test_utils.py From txaio with MIT License | 5 votes |
def setUp(self): self._get_running_loop = events._get_running_loop events._get_running_loop = lambda: None self._thread_cleanup = support.threading_setup()
Example #27
Source File: test_ftplib.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_main(): tests = [TestFTPClass, TestTimeouts, TestNetrcDeprecation, TestIPv6Environment, TestTLS_FTPClassMixin, TestTLS_FTPClass] thread_info = support.threading_setup() try: support.run_unittest(*tests) finally: support.threading_cleanup(*thread_info)
Example #28
Source File: test_urllib2_localnet.py From ironpython3 with Apache License 2.0 | 5 votes |
def setUpModule(): # Store the threading_setup in a key and ensure that it is cleaned up # in the tearDown global threads_key threads_key = support.threading_setup()
Example #29
Source File: lock_tests.py From ironpython3 with Apache License 2.0 | 5 votes |
def setUp(self): self._threads = support.threading_setup()
Example #30
Source File: test_socket.py From ironpython3 with Apache License 2.0 | 4 votes |
def test_main(): tests = [GeneralModuleTests, BasicTCPTest, TCPCloserTest, TCPTimeoutTest, TestExceptions, BufferIOTest, BasicTCPTest2, BasicUDPTest, UDPTimeoutTest ] tests.extend([ NonBlockingTCPTests, FileObjectClassTestCase, FileObjectInterruptedTestCase, UnbufferedFileObjectClassTestCase, LineBufferedFileObjectClassTestCase, SmallBufferedFileObjectClassTestCase, UnicodeReadFileObjectClassTestCase, UnicodeWriteFileObjectClassTestCase, UnicodeReadWriteFileObjectClassTestCase, NetworkConnectionNoServer, NetworkConnectionAttributesTest, NetworkConnectionBehaviourTest, ContextManagersTest, InheritanceTest, NonblockConstantTest ]) tests.append(BasicSocketPairTest) tests.append(TestUnixDomain) tests.append(TestLinuxAbstractNamespace) tests.extend([TIPCTest, TIPCThreadableTest]) tests.extend([BasicCANTest, CANTest]) tests.extend([BasicRDSTest, RDSTest]) tests.extend([ CmsgMacroTests, SendmsgUDPTest, RecvmsgUDPTest, RecvmsgIntoUDPTest, SendmsgUDP6Test, RecvmsgUDP6Test, RecvmsgRFC3542AncillaryUDP6Test, RecvmsgIntoRFC3542AncillaryUDP6Test, RecvmsgIntoUDP6Test, SendmsgTCPTest, RecvmsgTCPTest, RecvmsgIntoTCPTest, SendmsgSCTPStreamTest, RecvmsgSCTPStreamTest, RecvmsgIntoSCTPStreamTest, SendmsgUnixStreamTest, RecvmsgUnixStreamTest, RecvmsgIntoUnixStreamTest, RecvmsgSCMRightsStreamTest, RecvmsgIntoSCMRightsStreamTest, # These are slow when setitimer() is not available InterruptedRecvTimeoutTest, InterruptedSendTimeoutTest, TestSocketSharing, ]) thread_info = support.threading_setup() support.run_unittest(*tests) support.threading_cleanup(*thread_info)