def test_post_nodes_subresource(self):
     chassis = obj_utils.create_test_chassis(self.context)
     ndict = apiutils.node_post_data()
     ndict['chassis_uuid'] = chassis.uuid
     response = self.post_json('/chassis/nodes', ndict,
                               expect_errors=True)
     self.assertEqual(http_client.FORBIDDEN, response.status_int)
Exemple #2
0
 def test_post_nodes_subresource(self):
     chassis = obj_utils.create_test_chassis(self.context)
     ndict = apiutils.node_post_data()
     ndict['chassis_uuid'] = chassis.uuid
     response = self.post_json('/chassis/nodes', ndict,
                               expect_errors=True)
     self.assertEqual(http_client.FORBIDDEN, response.status_int)