~landscape/zope3/ztk-1.1.3

« back to all changes in this revision

Viewing changes to src/twisted/web2/dav/test/test_report.py

  • Committer: Andreas Hasenack
  • Date: 2009-07-20 17:49:16 UTC
  • Revision ID: andreas@canonical.com-20090720174916-g2tn6qmietz2hn0u
Revert twisted removal, it breaks several dozen tests [trivial]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##
 
2
# Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
 
3
#
 
4
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
5
# of this software and associated documentation files (the "Software"), to deal
 
6
# in the Software without restriction, including without limitation the rights
 
7
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
8
# copies of the Software, and to permit persons to whom the Software is
 
9
# furnished to do so, subject to the following conditions:
 
10
 
11
# The above copyright notice and this permission notice shall be included in all
 
12
# copies or substantial portions of the Software.
 
13
 
14
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
15
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
16
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
17
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
18
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
19
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
20
# SOFTWARE.
 
21
#
 
22
# DRI: Wilfredo Sanchez, wsanchez@apple.com
 
23
##
 
24
 
 
25
from twisted.web2.iweb import IResponse
 
26
from twisted.web2.stream import MemoryStream
 
27
from twisted.web2 import responsecode
 
28
 
 
29
import twisted.web2.dav.test.util
 
30
from twisted.web2.test.test_server import SimpleRequest
 
31
from twisted.web2.dav import davxml
 
32
 
 
33
class REPORT(twisted.web2.dav.test.util.TestCase):
 
34
    """
 
35
    REPORT request
 
36
    """
 
37
    def test_REPORT_no_body(self):
 
38
        """
 
39
        REPORT request with no body
 
40
        """
 
41
        def do_test(response):
 
42
            response = IResponse(response)
 
43
 
 
44
            if response.code != responsecode.BAD_REQUEST:
 
45
                self.fail("Unexpected response code for REPORT with no body: %s"
 
46
                          % (response.code,))
 
47
 
 
48
        request = SimpleRequest(self.site, "REPORT", "/")
 
49
        request.stream = MemoryStream("")
 
50
 
 
51
        return self.send(request, do_test)
 
52
 
 
53
    def test_REPORT_unknown(self):
 
54
        """
 
55
        Unknown/bogus report type
 
56
        """
 
57
        def do_test(response):
 
58
            response = IResponse(response)
 
59
 
 
60
            if response.code != responsecode.FORBIDDEN:
 
61
                self.fail("Unexpected response code for unknown REPORT: %s"
 
62
                          % (response.code,))
 
63
        class GoofyReport (davxml.WebDAVUnknownElement):
 
64
            namespace = "GOOFY:"
 
65
            name      = "goofy-report"
 
66
            def __init__(self): super(GoofyReport, self).__init__()
 
67
 
 
68
        request = SimpleRequest(self.site, "REPORT", "/")
 
69
        request.stream = MemoryStream(GoofyReport().toxml())
 
70
 
 
71
        return self.send(request, do_test)