def setUpClass(cls): token = environ.get('KB_AUTH_TOKEN', None) cls.ctx = { 'token': token, 'provenance': [{ 'service': 'AssemblyRAST', 'method': 'please_never_use_it_in_production', 'method_params': [] }], 'authenticated': 1 } config_file = environ.get('KB_DEPLOYMENT_CONFIG', None) cls.cfg = {} config = ConfigParser() config.read(config_file) for nameval in config.items('AssemblyRAST'): cls.cfg[nameval[0]] = nameval[1] cls.wsURL = cls.cfg['workspace-url'] cls.ws = workspaceService(cls.wsURL, token=token) cls.serviceImpl = AssemblyRAST(cls.cfg) cls.shockURL = cls.cfg['shock-url'] cls.handleURL = cls.cfg['handle-service-url'] logger.info('shockURL=' + cls.shockURL)
def get_config(): if not get_config_file(): return None retconfig = {} config = ConfigParser() config.read(get_config_file()) for nameval in config.items(get_service_name() or 'AssemblyRAST'): retconfig[nameval[0]] = nameval[1] return retconfig config = get_config() from AssemblyRAST.AssemblyRASTImpl import AssemblyRAST # noqa @IgnorePep8 impl_AssemblyRAST = AssemblyRAST(config) class JSONObjectEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, set): return list(obj) if isinstance(obj, frozenset): return list(obj) if hasattr(obj, 'toJSONable'): return obj.toJSONable() return json.JSONEncoder.default(self, obj) class JSONRPCServiceCustom(JSONRPCService): def call(self, ctx, jsondata):