blob: 342b2faf13a82f7011697d4524c264af36ad71f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vi:ts=4:et
from . import localhost
import threading
import pycurl
import pytest
import unittest
from . import appmanager
from . import util
setup_module, teardown_module = appmanager.setup(('app', 8380))
class WorkerThread(threading.Thread):
def __init__(self, share):
threading.Thread.__init__(self)
self.curl = util.DefaultCurl()
self.curl.setopt(pycurl.URL, 'http://%s:8380/success' % localhost)
self.curl.setopt(pycurl.SHARE, share)
self.sio = util.BytesIO()
self.curl.setopt(pycurl.WRITEFUNCTION, self.sio.write)
def run(self):
self.curl.perform()
self.curl.close()
class ShareTest(unittest.TestCase):
def test_share(self):
s = pycurl.CurlShare()
s.setopt(pycurl.SH_SHARE, pycurl.LOCK_DATA_COOKIE)
s.setopt(pycurl.SH_SHARE, pycurl.LOCK_DATA_DNS)
s.setopt(pycurl.SH_SHARE, pycurl.LOCK_DATA_SSL_SESSION)
t1 = WorkerThread(s)
t2 = WorkerThread(s)
t1.start()
t2.start()
t1.join()
t2.join()
del s
self.assertEqual('success', t1.sio.getvalue().decode())
self.assertEqual('success', t2.sio.getvalue().decode())
def test_share_close(self):
s = pycurl.CurlShare()
s.close()
def test_share_close_twice(self):
s = pycurl.CurlShare()
s.close()
s.close()
# positional arguments are rejected
def test_positional_arguments(self):
with pytest.raises(TypeError):
pycurl.CurlShare(1)
# keyword arguments are rejected
def test_keyword_arguments(self):
with pytest.raises(TypeError):
pycurl.CurlShare(a=1)
|