使用自定义管理器方法创建fixture, json转储和避免类型错误的方法:xxx不是json序列化的



我试图使用自定义管理器方法创建一个测试夹具,因为我的应用程序使用了一个数据库表的子集和更少的记录。所以我放弃了使用initial_data的想法。在管理中,我是这样做的。

sitedict = Site.objects.filter(pk=1234).values()[0]
custdict = Customer.objects.filter(custid=123456).values()[0]
customer = {"pk":123456,"model":"myapp.customer","fields":custdict}
site = {"pk":0001,"model":"myapp.site","fields":sitedict}
csvfile = open('shoppingcart/bsofttestdata.csv','wb')
csv_writer = csv.writer(csvfile) 
csv_writer.writerow([customer,site])

然后我修改了我的CSV文件,用双引号代替单引号,等等。然后我确实将该文件保存为json。抱歉,如果它太愚蠢的方式,但这是我第一次创建testdata,我想学习更好的方式。该文件的示例数据如下:myapp/fixtures/testdata.json

[{"pk": 123456, "model": "myapp.customer", "fields": {"city": "abc", "maritalstatus": None, "zipcode": "12345", "lname": "fdfdf", "state": "AZ", "agentid": 1111, "fname": "sdadsad", "email": "abcd@xxx.com", "phone": "0000000000", "custid":123456,"datecreate": datetime.datetime(2011, 3, 29, 11, 40, 18, 157612)}},{"pk":0001, "model": "myapp.site", "fields": {"url": "http://google.com", "websitecode": "", "notify": True, "fee": 210.0, "id":0001}}]

我用这个来运行我的测试,但我得到了以下错误:

EProblem installing fixture '/var/lib/django/myproject/myapp/fixtures/testdata.json':    
    Traceback (most recent call last):
      File "/usr/lib/pymodules/python2.6/django/core/management/commands/loaddata.py", line 150, in handle
        for obj in objects:
      File "/usr/lib/pymodules/python2.6/django/core/serializers/json.py", line 41, in Deserializer
        for obj in PythonDeserializer(simplejson.load(stream)):
      File "/usr/lib/pymodules/python2.6/simplejson/__init__.py", line 267, in load
        parse_constant=parse_constant, **kw)
      File "/usr/lib/pymodules/python2.6/simplejson/__init__.py", line 307, in loads
        return _default_decoder.decode(s)
      File "/usr/lib/pymodules/python2.6/simplejson/decoder.py", line 335, in decode
        obj, end = self.raw_decode(s, idx=_w(s, 0).end())
      File "/usr/lib/pymodules/python2.6/simplejson/decoder.py", line 353, in raw_decode
        raise ValueError("No JSON object could be decoded")
    ValueError: No JSON object could be decoded

当我们有JSON不支持的数据类型时,与其使用原始查找替换,不如使用如下所示的方法。这将有助于摆脱TypeError: xxxxxxx不是JSON可序列化的,或者特别为Datetime问题堆叠post将是有帮助的。

编辑:

我没有写入csv然后手动修改它,而是做了以下操作:

with open('myapp/fixtures/customer_testdata.json',mode = 'w') as f:
    json.dump(customer,f,indent=2)

这里是我用来解决TypeError的小代码:xxxx not json blah blah问题

for key in cust.keys():
    value = cust[key]
    if isinstance(cust[key],datetime.datetime):
        temp = cust[key].timetuple() # this converts datetime.datetime to time.struct_time
        cust.update({key:{'__class__':'time.asctime','__value__':time.asctime(temp)}})
return cust

如果我们转换日期时间。Datetime为任何其他类型,那么我们必须相应地更改类。例如timestamp -> float在这里是日期时间转换的绝佳参考

希望对大家有帮助

最新更新