Return-Path: X-Original-To: apmail-chemistry-dev-archive@www.apache.org Delivered-To: apmail-chemistry-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 802C3982E for ; Wed, 14 Dec 2011 18:29:59 +0000 (UTC) Received: (qmail 34435 invoked by uid 500); 14 Dec 2011 18:29:59 -0000 Delivered-To: apmail-chemistry-dev-archive@chemistry.apache.org Received: (qmail 34395 invoked by uid 500); 14 Dec 2011 18:29:59 -0000 Mailing-List: contact dev-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list dev@chemistry.apache.org Received: (qmail 34387 invoked by uid 99); 14 Dec 2011 18:29:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 18:29:59 +0000 X-ASF-Spam-Status: No, hits=-2001.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 18:29:51 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id BC0CF113EEE for ; Wed, 14 Dec 2011 18:29:30 +0000 (UTC) Date: Wed, 14 Dec 2011 18:29:30 +0000 (UTC) From: "Jeff Potts (Updated) (JIRA)" To: dev@chemistry.apache.org Message-ID: <915111193.12038.1323887370771.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <805090168.31501.1322762320041.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (CMIS-481) Cannot set a property to null MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CMIS-481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jeff Potts updated CMIS-481: ---------------------------- Affects Version/s: cmislib 0.4 cmislib 0.4.1 Fix Version/s: cmislib 0.5 > Cannot set a property to null > ----------------------------- > > Key: CMIS-481 > URL: https://issues.apache.org/jira/browse/CMIS-481 > Project: Chemistry > Issue Type: Bug > Components: python-cmislib > Affects Versions: cmislib 0.4, cmislib 0.4.1 > Reporter: Jeff Potts > Assignee: Jeff Potts > Priority: Minor > Fix For: cmislib 0.5 > > > Currently, when you create a props dict and use it with either createDocument or updateProperties, the code tries to guess the appropriate cmis element name (cmis:propertyString, cmis:propertyDateTime, etc.) by performing a type test on the value. It does not currently do a lookup to the type definition to determine the property type (or even validate that the property name is defined as part of the property). > Additionally, there is no specific check for None. So if you want to try to set a property to null there is no way to do it. The code will treat properties set to None as a string. If you happen to be setting a string prop, the value will be converted to the string "None". If you happen to be setting any other data type, it is likely you'll see a runtime exception. > >>> doc.properties['sc:level'] > 4 > >>> doc = doc.updateProperties({'sc:level':None}) > Traceback (most recent call last): > File "", line 1, in > File "/opt/src/chemistry/cmislib/src/cmislib/model.py", line 1947, in updateProperties > **args) > File "/opt/src/chemistry/cmislib/src/cmislib/model.py", line 283, in put > self._processCommonErrors(result) > File "/opt/src/chemistry/cmislib/src/cmislib/model.py", line 315, in _processCommonErrors > raise RuntimeException(error.status, error.url) > cmislib.exceptions.RuntimeException: Error 500 at http://localhost:8080/alfresco/s/cmis/s/workspace:SpacesStore/i/4d783751-0a96-4b01-96a1-2b3e03d45d90 > >>> doc = doc.updateProperties({'sc:difficulty':None}) > >>> doc.properties['sc:difficulty'] > u'None' > In order to properly set a property to null, the code cannot rely on the type test. It will have to do a lookup to the type definition so that it can figure out which cmis property element name to use. As long as we're incurring the cost of the type definition lookup, we might as well validate that the property is defined. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira