我的编程空间,编程开发者的网络收藏夹
学习永远不晚

使用 Python 的 jsonsche

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

使用 Python 的 jsonsche

在OpenStack中, 使用了Python的 jsonschema包, 对json字符串做了验证.


Python JSON Schema Library

https://pypi.python.org/pypi/jsonschema


JSON Schema Introduction

http://json-schema.org/


做法比较简单

1) 定义一个文件 json schema. json schema 类似于一个模板定义文件, 定义了json中的节点名称, 节点值类型

以tempest中的一个schema定义为例 (tempest/api_schema/compute/agents.py)

list_agents = {
    'status_code': [200],
    'response_body': {
        'type': 'object',
        'properties': {
            'agents': {
                'type': 'array',
                'items': {
                    'type': 'object',
                    'properties': {
                        'agent_id': {'type': 'integer'},
                        'hypervisor': {'type': 'string'},
                        'os': {'type': 'string'},
                        'architecture': {'type': 'string'},
                        'version': {'type': 'string'},
                        'url': {'type': 'string', 'format': 'uri'},
                        'md5hash': {'type': 'string'}
                    },
                    'required': ['agent_id', 'hypervisor', 'os',
                                 'architecture', 'version', 'url', 'md5hash']
                }
            }
        },
        'required': ['agents']
    }
}


2) 使用jsonschema包, 对json字符串和json schema做对比, 进行验证

以下代码来自于 /tempest/common/rest_client.py. 

tempest对每一个REST api的返回值, 都使用json schema做了校验

    @classmethod
    def validate_response(cls, schema, resp, body):
        # Only check the response if the status code is a success code
        # TODO(cyeoh): Eventually we should be able to verify that a failure
        # code if it exists is something that we expect. This is explicitly
        # declared in the V3 API and so we should be able to export this in
        # the response schema. For now we'll ignore it.
        if resp.status in HTTP_SUCCESS:
            cls.expected_success(schema['status_code'], resp.status)

            # Check the body of a response
            body_schema = schema.get('response_body')
            if body_schema:
                try:
                    jsonschema.validate(body, body_schema)
                except jsonschema.ValidationError as ex:
                    msg = ("HTTP response body is invalid (%s)") % ex
                    raise exceptions.InvalidHTTPResponseBody(msg)
            else:
                if body:
                    msg = ("HTTP response body should not exist (%s)") % body
                    raise exceptions.InvalidHTTPResponseBody(msg)

            # Check the header of a response
            header_schema = schema.get('response_header')
            if header_schema:
                try:
                    jsonschema.validate(resp, header_schema)
                except jsonschema.ValidationError as ex:
                    msg = ("HTTP response header is invalid (%s)") % ex
                    raise exceptions.InvalidHTTPResponseHeader(msg)


Java 中, 也有一个json-schema-validator的实现, 用法可以参考

http://stackoverflow.com/questions/14511468/java-android-validate-string-json-against-string-schema



免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

使用 Python 的 jsonsche

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

使用 Python 的 jsonsche

在OpenStack中, 使用了Python的 jsonschema包, 对json字符串做了验证.Python JSON Schema Libraryhttps://pypi.python.org/pypi/jsonschemaJSON
2023-01-31

python+etcd的使用

python-etcd是一个etcd的python客户端,它的安装方法如下:git clone https://github.com/jplana/python-etcd.gitcd python-etcdpython setup.py i
2023-01-31

Python collection的使用

Python中的基本数据结构有list,dict,tuple,set。Python还有一个功能比较强大的包collections,可以处理并维护一个有序的dict,可以提高程序的运行效率。 1、collections中defaultdict
2023-01-31

Python中的*使用

Python中的*使用  在为函数传递参数和函数定义时使用参数的时候,时常会看到有和 *和**,下面分别讲解其作用。调用函数时使用*和 ** 假设有函数 def test(a, b, c)test(*args):* 的作用其实就是把序列 a
2023-01-31

thrift的使用--python

转载blog:http://www.cnblogs.com/pinking/p/7726478.html在这里要补充一点的就是在在这里python要安装thrift包时候,可以直接在安装好的thrift好的模块中sudo python se
2023-01-31

pygrametl的使用--python

pygrametl是一个python的package用于ETL(Extract-Transform-Load )简例import MySQLdbfrom pygrametl.datasources import SQLSourceconn
2023-01-31

python的tkinter使用

__author__ = 'Python'import tkinter as tkclass Application(tk.Frame):    def __init__(self, master=None):        tk.Fram
2023-01-31

python-fire的使用

本文完全转载自:https://github.com/google/python-fire/blob/master/docs/guide.md#version-3-firefireobjectfire简单参考实例:http://blog.c
2023-01-31

python下的MySQLdb使用

下载安装MySQLdb <1>linux版本http://sourceforge.net/projects/mysql-python/ 下载,在安装是要先安装setuptools,然后在下载文件目录下,修改mysite.cfg,指定本地my
2023-01-31

python中list的使用

1、list(列表)是一种有序的集合,可以随时添加、修改、删除其中的元素。举例:listClassName = ['Jack','Tom','Mark']                    列表可以根据索引获取元素,如:listClas
2023-01-30

python中assert的使用

在python程序中,如果想要确保程序中的某个条件一定为真才会继续执行的话,而可以使用assert来实现。  例如:>>> age = 10>>> assert 0>> assert age>20Traceback (mos
2023-01-31

Python中ghost的使用

ghost.py is a webkit web client written in python.from ghost import Ghostghost = Ghost()page, extra_resources = ghost.op
2023-01-31

peewee的使用 python orm

自动提交,和定义 table name 。 爬虫。 -- 自动判断 返回的编码resp.encoding = resp.apparent_encoding爬虫- http协议。 http://yxtsunny.lofter.com/po
2023-01-31

python sqlite3 的使用,性

sqlite3 的使用,性能及限制python 中使用sqlite3首先是基本的使用:# coding=utf8__author__ = 'Administrator'# 导入模块,在 python 中是已经内置了这个模块,所以就不需要安装
2023-01-31

python PIL库的使用

(1)PIL可以做很多和图像处理相关的事情: 图像归档(Image Archives)。PIL非常适合于图像归档以及图像的批处理任务。你可以使用PIL创建缩略图,转换图像格式,打印图像等等。图像展示(Image Display)。PIL较新
2023-01-31

Python----函数的使用

1.一个简单的无参函数#!/usr/bin/evn python#filename: function1.pydef sayHello():    print 'Hello World!'sayHello()2.函数传参#!/usr/bin
2023-01-31

使用python的zabbix_api模

使用python的zabbix_api模块,以下是简单的zabbix api的使用zabbix api文档参考https://www.zabbix.com/documentation/2.2/manual/api/reference安装za
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录