[CalendarServer-changes] [5397] CalendarServer/trunk/txdav/propertystore/test/test_base.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Mar 24 20:42:22 PDT 2010


Revision: 5397
          http://trac.macosforge.org/projects/calendarserver/changeset/5397
Author:   wsanchez at apple.com
Date:     2010-03-24 20:42:22 -0700 (Wed, 24 Mar 2010)
Log Message:
-----------
Add PropertyName tests.

Added Paths:
-----------
    CalendarServer/trunk/txdav/propertystore/test/test_base.py

Added: CalendarServer/trunk/txdav/propertystore/test/test_base.py
===================================================================
--- CalendarServer/trunk/txdav/propertystore/test/test_base.py	                        (rev 0)
+++ CalendarServer/trunk/txdav/propertystore/test/test_base.py	2010-03-25 03:42:22 UTC (rev 5397)
@@ -0,0 +1,55 @@
+##
+# Copyright (c) 2010 Apple Inc. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+##
+
+"""
+Property store tests.
+"""
+
+from zope.interface.verify import verifyObject, BrokenMethodImplementation
+
+from twisted.trial import unittest
+
+from txdav.idav import IPropertyName
+from txdav.propertystore.base import PropertyName
+
+
+class PropertyNameTest(unittest.TestCase):
+    def test_interface(self):
+        name = PropertyName("http://calendarserver.org/", "bleargh")
+        try:
+            verifyObject(IPropertyName, name)
+        except BrokenMethodImplementation, e:
+            self.fail(e)
+
+    def test_init(self):
+        name = PropertyName("http://calendarserver.org/", "bleargh")
+
+        self.assertEquals(name.namespace, "http://calendarserver.org/")
+        self.assertEquals(name.name, "bleargh")
+
+    def test_fromString(self):
+        name = PropertyName.fromString("{http://calendarserver.org/}bleargh")
+
+        self.assertEquals(name.namespace, "http://calendarserver.org/")
+        self.assertEquals(name.name, "bleargh")
+
+    def test_toString(self):
+        name = PropertyName("http://calendarserver.org/", "bleargh")
+
+        self.assertEquals(
+            name.toString(),
+            "{http://calendarserver.org/}bleargh"
+        )
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100324/c5e3cbcc/attachment-0001.html>


More information about the calendarserver-changes mailing list