def test_put_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') objs = { 'front-page': [{ 'text': "<p>Action and reaction, ebb and flow, trial and error, change - this is the rhythm of living. Out of our over-confidence, fear; out of our fear, clearer vision, fresh hope. And out of hope, progress.</p><br /> --<i>Bruce Barton</i>" }], '/plone/events': [ { 'description': 'What\'s up doc?' }, ] } self.login('test_user_1_') put_obj_data = app.put_object(objs) self.logout() resp.setBody(put_obj_data) put_obj_resp, method = xmlrpclib.loads(resp._body) expected_resp = ['/plone/front-page', '/plone/events'] self.failUnlessEqual(len(put_obj_resp[0]), len(expected_resp)) for i in put_obj_resp[0]: self.failUnless(i in expected_resp, "'%s' is not in %s?" % (i, expected_resp)) self.failUnlessEqual(self.portal['front-page']['text'].getRaw(), objs['front-page'][0]['text']) self.failUnlessEqual(self.portal['events']['description'], objs['/plone/events'][0]['description'])
def __call__(self, REQUEST, RESPONSE): '''Returns a JSON representation of the current object''' wsapi = ApplicationAPI(self.context, self.request) results = wsapi.get_object() # One result is a tuple (object_data, object_type, extra_info) # We're interested only in object_data result = results.values()[0][0] self._sanitize_results(result) RESPONSE.setHeader('Content-Type', 'application/json') return json.dumps(result)
def test_post_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') objs = {'news1': [{'description': 'News One', 'title': 'news1', 'text': '\n<p>Hot off the press!</p>\n', 'id': 'news1'}, 'News Item']} self.login('test_user_1_') post_obj_data = app.post_object(objs) self.logout() resp.setBody(post_obj_data) post_obj_resp, method = xmlrpclib.loads(resp._body) self.failUnlessEqual(post_obj_resp[0], ['/plone/news1']) self.assertTrue(self.portal['news1'])
def test_delete_object_without_existing_object(self): app = ApplicationAPI(self.portal, '') objs = ['news1'] self.login('test_user_1_') try: app.delete_object(objs) except NotFound: # The expected result. pass except Exception, e: self.fail(e)
def test_get_object_without_existing_object(self): app = ApplicationAPI(self.portal, '') objs = ['news1'] self.logout() try: app.get_object(objs) except NotFound: # The expected result. pass except Exception, e: self.fail(e)
def test_anonymous_get_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') get_obj_data = app.get_object(['/'.join(self.folder.getPhysicalPath()), '']) resp.setBody(get_obj_data) get_obj_resp, method = xmlrpclib.loads(resp._body) get_obj_results = get_obj_resp[0] for path in get_obj_results: self.failUnless(type(get_obj_results[path][0]) == dict) self.failUnless(type(get_obj_results[path][1]) == str) self.failUnless(type(get_obj_results[path][2]) == dict or get_obj_results[path][2] == None)
def test_anonymous_delete_object(self): app = ApplicationAPI(self.portal, '') objs = ['front-page', '/plone/events'] self.logout() try: app.delete_object(objs) except Unauthorized: # The expected result. pass except Exception, e: self.fail(e)
def test_get_schema_invalid_type(self): app = ApplicationAPI(self.portal, '') type_ = 'Bingo Card' self.logout() try: app.get_schema(type_) except ValueError: # The expected result. pass except Exception, e: self.fail(e)
def test_anonymous_post_object(self): app = ApplicationAPI(self.portal, '') objs = {'news1': [{'description': 'News One', 'title': 'news1', 'text': '\n<p>Hot off the press!</p>\n', 'id': 'news1'}, 'News Item']} self.logout() try: app.post_object(objs) except Unauthorized: # The expected result. pass except Exception, e: self.fail(e)
def test_anonymous_get_schema(self): app = ApplicationAPI(self.portal, '') type_ = 'Event' self.logout() try: app.get_schema(type_) except Unauthorized: # The expected result. pass except Exception, e: self.fail(e)
def test_post_object_without_existing_parent_object(self): app = ApplicationAPI(self.portal, '') objs = {'no_folder/news1': [{'description': 'News One', 'title': 'news1', 'text': '\n<p>Hot off the press!</p>\n', 'id': 'news1'}, 'News Item']} self.login('test_user_1_') try: app.post_object(objs) except NotFound: # The expected result. pass except Exception, e: self.fail(e)
def test_delete_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') self.portal.invokeFactory(type_name='News Item', id='news1') objs = ['news1'] self.login('test_user_1_') del_obj_data = app.delete_object(objs) self.logout() resp.setBody(del_obj_data) del_obj_resp, method = xmlrpclib.loads(resp._body) self.failUnlessEqual(del_obj_resp[0], None) self.failUnlessEqual(self.portal.get('news1', 100), 100)
def test_anonymous_get_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') get_obj_data = app.get_object( ['/'.join(self.folder.getPhysicalPath()), '']) resp.setBody(get_obj_data) get_obj_resp, method = xmlrpclib.loads(resp._body) get_obj_results = get_obj_resp[0] for path in get_obj_results: self.failUnless(type(get_obj_results[path][0]) == dict) self.failUnless(type(get_obj_results[path][1]) == str) self.failUnless( type(get_obj_results[path][2]) == dict or get_obj_results[path][2] == None)
def test_anonymous_private_get_object(self): app = ApplicationAPI(self.portal, '') fp = self.portal['front-page'] portal_workflow = getToolByName(self.portal, 'portal_workflow') self.loginAsPortalOwner() portal_workflow.doActionFor(fp, 'retract') self.logout() try: app.get_object(['/'.join(fp.getPhysicalPath()), '']) except Unauthorized: # The expected result. pass except Exception, e: self.fail(e)
def test_put_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') objs = {'front-page': [{'text': "<p>Action and reaction, ebb and flow, trial and error, change - this is the rhythm of living. Out of our over-confidence, fear; out of our fear, clearer vision, fresh hope. And out of hope, progress.</p><br /> --<i>Bruce Barton</i>"}], '/plone/events': [{'description': 'What\'s up doc?'},]} self.login('test_user_1_') put_obj_data = app.put_object(objs) self.logout() resp.setBody(put_obj_data) put_obj_resp, method = xmlrpclib.loads(resp._body) expected_resp = ['/plone/front-page', '/plone/events'] self.failUnlessEqual(len(put_obj_resp[0]), len(expected_resp)) for i in put_obj_resp[0]: self.failUnless(i in expected_resp, "'%s' is not in %s?" % (i, expected_resp)) self.failUnlessEqual(self.portal['front-page']['text'].getRaw(), objs['front-page'][0]['text']) self.failUnlessEqual(self.portal['events']['description'], objs['/plone/events'][0]['description'])
def test_get_schema_with_path(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') type_ = 'Link' self.login('test_user_1_') schema_data = app.get_schema(type_, "Members") resp.setBody(schema_data) schema_resp, method = xmlrpclib.loads(resp._body) self.logout() schema_results = schema_resp[0] expected_results = {'excludeFromNav': {'required': False, 'type': 'boolean'}, 'remoteUrl': {'required': True, 'type': 'string'}, 'description': {'required': False, 'type': 'text'}, 'contributors': {'required': False, 'type': 'lines'}, 'title': {'required': 1, 'type': 'string'}, 'language': {'required': False, 'type': 'string'}, 'rights': {'required': False, 'type': 'text'}, 'modification_date': {'required': False, 'type': 'datetime'}, 'location': {'required': False, 'type': 'string'}, 'creation_date': {'required': False, 'type': 'datetime'}, 'effectiveDate': {'required': False, 'type': 'datetime'}, 'relatedItems': {'required': False, 'type': 'reference'}, 'expirationDate': {'required': False, 'type': 'datetime'}, 'allowDiscussion': {'required': False, 'type': 'boolean'}, 'creators': {'required': False, 'type': 'lines'}, 'id': {'required': 0, 'type': 'string'}, 'subject': {'required': False, 'type': 'lines'}} self.failUnlessEqual(len(schema_results), len(expected_results)) for attr, value in expected_results.iteritems(): self.failUnlessEqual(value, schema_results[attr], "%s != %s for schema attribute '%s'" % (value, schema_results[attr], attr))
def test_get_schema_disallowed_type(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') type_ = 'Large Plone Folder' self.login('test_user_1_') self.failUnlessRaises(ValueError, app.get_schema, type_) self.logout()
def test_post_object(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') objs = { 'news1': [{ 'description': 'News One', 'title': 'news1', 'text': '\n<p>Hot off the press!</p>\n', 'id': 'news1' }, 'News Item'] } self.login('test_user_1_') post_obj_data = app.post_object(objs) self.logout() resp.setBody(post_obj_data) post_obj_resp, method = xmlrpclib.loads(resp._body) self.failUnlessEqual(post_obj_resp[0], ['/plone/news1']) self.assertTrue(self.portal['news1'])
def test_get_schema_with_path_and_non_addable_type(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') collect1 = self.portal.invokeFactory(type_name='Topic', id='collect1') type_ = 'Link' self.login('test_user_1_') self.failUnlessRaises(ValueError, app.get_schema, type_, collect1) self.logout()
def test_anonymous_post_object(self): app = ApplicationAPI(self.portal, '') objs = { 'news1': [{ 'description': 'News One', 'title': 'news1', 'text': '\n<p>Hot off the press!</p>\n', 'id': 'news1' }, 'News Item'] } self.logout() try: app.post_object(objs) except Unauthorized: # The expected result. pass except Exception, e: self.fail(e)
def test_put_object_without_existing_object(self): app = ApplicationAPI(self.portal, '') objs = { 'news1': [{ 'description': 'News One', 'title': 'news1', 'text': '\n<p>Hot off the press!</p>\n', 'id': 'news1' }, 'News Item'] } self.login('test_user_1_') try: app.put_object(objs) except NotFound: # The expected result. pass except Exception, e: self.fail(e)
def post_and_index_object(self, params): wsapi = ApplicationAPI(self.context, self.request) results = wsapi.post_object(params) self._reindex_paths(results) return results
def test_get_schema_with_path(self): resp = Response(FauxResponse()) app = ApplicationAPI(self.portal, '') type_ = 'Link' self.login('test_user_1_') schema_data = app.get_schema(type_, "Members") resp.setBody(schema_data) schema_resp, method = xmlrpclib.loads(resp._body) self.logout() schema_results = schema_resp[0] expected_results = { 'excludeFromNav': { 'required': False, 'type': 'boolean' }, 'remoteUrl': { 'required': True, 'type': 'string' }, 'description': { 'required': False, 'type': 'text' }, 'contributors': { 'required': False, 'type': 'lines' }, 'title': { 'required': 1, 'type': 'string' }, 'language': { 'required': False, 'type': 'string' }, 'rights': { 'required': False, 'type': 'text' }, 'modification_date': { 'required': False, 'type': 'datetime' }, 'location': { 'required': False, 'type': 'string' }, 'creation_date': { 'required': False, 'type': 'datetime' }, 'effectiveDate': { 'required': False, 'type': 'datetime' }, 'relatedItems': { 'required': False, 'type': 'reference' }, 'expirationDate': { 'required': False, 'type': 'datetime' }, 'allowDiscussion': { 'required': False, 'type': 'boolean' }, 'creators': { 'required': False, 'type': 'lines' }, 'id': { 'required': 0, 'type': 'string' }, 'subject': { 'required': False, 'type': 'lines' } } self.failUnlessEqual(len(schema_results), len(expected_results)) for attr, value in expected_results.iteritems(): self.failUnlessEqual( value, schema_results[attr], "%s != %s for schema attribute '%s'" % (value, schema_results[attr], attr))