Exemplo n.º 1
0
    def test_allprop(self):
        vcal_comp = ET.SubElement(self.requested,
                                  "{%s}comp" % caldav.NAMESPACE)
        vcal_comp.set("name", "VCALENDAR")
        vtodo_comp = ET.SubElement(vcal_comp, "{%s}comp" % caldav.NAMESPACE)
        vtodo_comp.set("name", "VTODO")
        ET.SubElement(vtodo_comp, "{%s}allprop" % caldav.NAMESPACE)
        self.extractEqual(
            """\
BEGIN:VCALENDAR
BEGIN:VTODO
COMPLETED:20100829T234417Z
CREATED:20090606T042958Z
END:VTODO
END:VCALENDAR
""",
            """\
BEGIN:VCALENDAR
BEGIN:VTODO
COMPLETED:20100829T234417Z
CREATED:20090606T042958Z
END:VTODO
END:VCALENDAR
""",
        )
Exemplo n.º 2
0
    def test_prop(self):
        vcal_comp = ET.SubElement(
            self.requested, '{%s}comp' % caldav.NAMESPACE)
        vcal_comp.set('name', 'VCALENDAR')
        vtodo_comp = ET.SubElement(vcal_comp, '{%s}comp' % caldav.NAMESPACE)
        vtodo_comp.set('name', 'VTODO')
        completed_prop = ET.SubElement(
            vtodo_comp, '{%s}prop' % caldav.NAMESPACE)
        completed_prop.set('name', 'COMPLETED')
        self.extractEqual("""\
BEGIN:VCALENDAR
BEGIN:VTODO
COMPLETED:20100829T234417Z
CREATED:20090606T042958Z
END:VTODO
END:VCALENDAR
""", """\
BEGIN:VCALENDAR
BEGIN:VTODO
COMPLETED:20100829T234417Z
END:VTODO
END:VCALENDAR
""")
        self.extractEqual("""\
BEGIN:VCALENDAR
BEGIN:VEVENT
CREATED:20090606T042958Z
END:VEVENT
END:VCALENDAR
""", """\
BEGIN:VCALENDAR
END:VCALENDAR
""")
Exemplo n.º 3
0
 def test_one(self):
     self.assertEqual([
         b'<ns0:propstat xmlns:ns0="DAV:"><ns0:status>HTTP/1.1 200 '
         b'OK</ns0:status><ns0:prop><foo /></ns0:prop></ns0:propstat>'
     ], [
         ET.tostring(x) for x in webdav.propstat_as_xml(
             [webdav.PropStatus('200 OK', None, ET.Element('foo'))])
     ])
Exemplo n.º 4
0
 def test_cmp_collation(self):
     el = ET.Element('someel')
     el.text = b"foobar"
     el.set('collation', 'i;octet')
     self.assertFalse(caldav.apply_text_match(el, b"FOOBAR"))
     self.assertTrue(caldav.apply_text_match(el, b"foobar"))
     self.assertFalse(caldav.apply_text_match(el, b"fobar"))
Exemplo n.º 5
0
 def extractEqual(self, incal_str, outcal_str):
     incal = ICalendar.from_ical(incal_str)
     expected_outcal = ICalendar.from_ical(outcal_str)
     outcal = ICalendar()
     caldav.extract_from_calendar(incal, outcal, self.requested)
     self.assertEqual(expected_outcal.to_ical().decode(),
                      outcal.to_ical().decode(),
                      ET.tostring(self.requested))
Exemplo n.º 6
0
    def test_allcomp(self):
        vcal_comp = ET.SubElement(
            self.requested,
            '{%s}comp' % caldav.NAMESPACE)
        vcal_comp.set('name', 'VCALENDAR')
        ET.SubElement(vcal_comp, '{%s}allcomp' % caldav.NAMESPACE)
        self.extractEqual("""\
BEGIN:VCALENDAR
BEGIN:VTODO
COMPLETED:20100829T234417Z
CREATED:20090606T042958Z
END:VTODO
END:VCALENDAR
""", """\
BEGIN:VCALENDAR
BEGIN:VTODO
END:VTODO
END:VCALENDAR
""")
Exemplo n.º 7
0
 def extractEqual(self, incal_str, outcal_str):
     incal = ICalendar.from_ical(incal_str)
     expected_outcal = ICalendar.from_ical(outcal_str)
     outcal = ICalendar()
     outcal = caldav.extract_from_calendar(incal, self.requested)
     self.maxDiff = None
     self.assertMultiLineEqual(
         expected_outcal.to_ical().decode(),
         outcal.to_ical().decode(),
         ET.tostring(self.requested),
     )
Exemplo n.º 8
0
    def test_comp(self):
        comp = ET.SubElement(self.requested, "{%s}comp" % caldav.NAMESPACE)
        comp.set("name", "VCALENDAR")
        self.extractEqual(
            """\
BEGIN:VCALENDAR
BEGIN:VTODO
CLASS:PUBLIC
COMPLETED:20100829T234417Z
CREATED:20090606T042958Z
END:VTODO
END:VCALENDAR
""",
            """\
BEGIN:VCALENDAR
END:VCALENDAR
""",
        )
Exemplo n.º 9
0
 def setUp(self):
     super(ExtractfromCalendarTests, self).setUp()
     self.requested = ET.Element('{%s}calendar-data' % caldav.NAMESPACE)
Exemplo n.º 10
0
 async def get_value(unused_self, href, resource, ret, environ):
     ET.SubElement(ret, '{DAV:}collection')
Exemplo n.º 11
0
    def test_expand(self):
        expand = ET.SubElement(self.requested, '{%s}expand' % caldav.NAMESPACE)
        expand.set('start', '20060103T000000Z')
        expand.set('end', '20060105T000000Z')
        self.extractEqual("""\
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTIMEZONE
LAST-MODIFIED:20040110T032845Z
TZID:US/Eastern
BEGIN:DAYLIGHT
DTSTART:20000404T020000
RRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4
TZNAME:EDT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
END:DAYLIGHT
BEGIN:STANDARD
DTSTART:20001026T020000
RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10
TZNAME:EST
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTAMP:20060206T001121Z
DTSTART;TZID=US/Eastern:20060102T120000
DURATION:PT1H
RRULE:FREQ=DAILY;COUNT=5
SUMMARY:Event #2
UID:[email protected]
END:VEVENT
BEGIN:VEVENT
DTSTAMP:20060206T001121Z
DTSTART;TZID=US/Eastern:20060104T140000
DURATION:PT1H
RECURRENCE-ID;TZID=US/Eastern:20060104T120000
SUMMARY:Event #2 bis
UID:[email protected]
END:VEVENT
END:VCALENDAR
""", """\
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
DTSTAMP:20060206T001121Z
DTSTART:20060103T170000
DURATION:PT1H
RECURRENCE-ID:20060103T170000
SUMMARY:Event #2
UID:[email protected]
END:VEVENT
BEGIN:VEVENT
DTSTAMP:20060206T001121Z
DTSTART:20060104T190000
DURATION:PT1H
RECURRENCE-ID:20060104T170000
SUMMARY:Event #2 bis
UID:[email protected]
END:VEVENT
END:VCALENDAR
""")
Exemplo n.º 12
0
 async def get_value(self, href, resource, ret, environ):
     ET.SubElement(ret, '{DAV:}href').text = '/user/'
Exemplo n.º 13
0
 async def get_value(self, href, resource, ret, environ):
     ET.SubElement(ret, "{DAV:}href").text = "/user/"
Exemplo n.º 14
0
 def test_default_collation(self):
     el = ET.Element('someel')
     el.text = b"foobar"
     self.assertTrue(caldav.apply_text_match(el, b"FOOBAR"))
     self.assertTrue(caldav.apply_text_match(el, b"foobar"))
     self.assertFalse(caldav.apply_text_match(el, b"fobar"))
Exemplo n.º 15
0
 def test_unknown_collation(self):
     el = ET.Element('someel')
     el.set('collation', 'i;blah')
     el.text = b"foobar"
     self.assertRaises(davcommon.UnknownCollation,
                       caldav.apply_text_match, el, b"FOOBAR")