def test_GT_1215ServiceResourcePutFunc(self):

        with app.test_request_context("/testservice", data=CORRECT_ARGS, method="PUT"):
            args = ServiceParser.parsePutParameters()
            self.assertEquals(args[LOG_SIZE], LOG_SIZE_VALUE)

        with app.test_request_context("/testservice", data=INCORRECT_ARGS, method="PUT"):
            with self.assertRaises(BadRequest):
                args = ServiceParser.parsePutParameters()
    def test_GT_1215ServiceResourcePutFunc(self):

        with app.test_request_context('/testservice',
                                      data=CORRECT_ARGS,
                                      method='PUT'):
            args = ServiceParser.parsePutParameters()
            self.assertEquals(args[LOG_SIZE], LOG_SIZE_VALUE)

        with app.test_request_context('/testservice',
                                      data=INCORRECT_ARGS,
                                      method='PUT'):
            with self.assertRaises(BadRequest):
                args = ServiceParser.parsePutParameters()
Example #3
0
 def put(self, serviceName):
     parserList = ServiceParser.parsePutParameters()
     updateService(serviceName, parserList)
     return {serviceName: SRV_NAME_UPD}
Example #4
0
 def put(self, serviceName):
     parserList = ServiceParser.parsePutParameters()
     updateService(serviceName, parserList)
     return {serviceName: SRV_NAME_UPD}