python/dcerpc: Custom implementations of policy_handle.__init__ and policy_handle...
authorAndrew Bartlett <abartlet@samba.org>
Tue, 21 Apr 2009 09:53:00 +0000 (11:53 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 21 Apr 2009 09:53:00 +0000 (11:53 +0200)
pair-programmed with Jelmer

source4/librpc/ndr/py_misc.c
source4/scripting/python/samba/tests/dcerpc/misc.py

index 4e2556614846d8d76d0fecc0b992254b837a9232..b56c355fc3b4ce2a2966e7abe8b9094e809eb7fb 100644 (file)
@@ -90,3 +90,41 @@ static void py_GUID_patch(PyTypeObject *type)
 
 #define PY_GUID_PATCH py_GUID_patch
 
+static int py_policy_handle_init(PyObject *self, PyObject *args, PyObject *kwargs)
+{
+       char *str = NULL;
+       NTSTATUS status;
+       struct policy_handle *handle = py_talloc_get_ptr(self);
+       const char *kwnames[] = { "uuid", "type", NULL };
+
+       if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|si", discard_const_p(char *, kwnames), &str, &handle->handle_type))
+               return -1;
+
+       if (str != NULL) {
+               status = GUID_from_string(str, &handle->uuid);
+               if (!NT_STATUS_IS_OK(status)) {
+                       PyErr_SetNTSTATUS(status);
+                       return -1;
+               }
+       }
+
+       return 0;
+}
+
+static PyObject *py_policy_handle_repr(PyObject *py_self)
+{
+       struct policy_handle *self = py_talloc_get_ptr(py_self);
+       char *uuid_str = GUID_string(NULL, &self->uuid);
+       PyObject *ret = PyString_FromFormat("policy_handle('%s', %d)", uuid_str, self->handle_type);
+       talloc_free(uuid_str);
+       return ret;
+}
+
+static void py_policy_handle_patch(PyTypeObject *type)
+{
+       type->tp_init = py_policy_handle_init;
+       type->tp_repr = py_policy_handle_repr;
+}
+
+#define PY_POLICY_HANDLE_PATCH py_policy_handle_patch
+
index d9a5573980ca5e8fcd9ca98f61fc0cc885f63f99..8726e8bde5c70e9c2e6c332cb44d9dc9718dd2fe 100644 (file)
@@ -46,3 +46,14 @@ class GUIDTests(unittest.TestCase):
 
          
         
+class PolicyHandleTests(unittest.TestCase):
+
+    def test_init(self):
+        x = misc.policy_handle(text1, 1)
+        self.assertEquals(1, x.handle_type)
+        self.assertEquals(text1, str(x.uuid))
+
+    def test_repr(self):
+        x = misc.policy_handle(text1, 42)
+        self.assertEquals("policy_handle('%s', %d)" % (text1, 42), repr(x))
+