File: test_dunderdict.py

package info (click to toggle)
jython 2.7.2%2Brepack1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 62,676 kB
  • sloc: python: 640,908; java: 306,458; xml: 1,984; sh: 522; ansic: 126; makefile: 76
file content (37 lines) | stat: -rw-r--r-- 1,149 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from cStringIO import StringIO
from json.tests import PyTest, CTest


class WrapDict(object):

    def __init__(self, d):
        # Force a copy of the items in d, otherwise __dict__ will be a
        # PyDictionary, instead of the desired PyStringMap for this
        # testing
        self.__dict__.update(d)


class TestDunderDictDump(object):

    def use_dunderdict(self, d):
        return WrapDict(d).__dict__

    def test_dump(self):
        sio = StringIO()
        self.json.dump(self.use_dunderdict({}), sio)
        self.assertEqual(sio.getvalue(), '{}')

    def test_dumps(self):
        self.assertEqual(self.dumps(self.use_dunderdict({})), '{}')

    def test_encode_truefalse(self):
        self.assertEqual(self.dumps(
            self.use_dunderdict({True: False, False: True}), sort_keys=True),
            '{"false": true, "true": false}')
        self.assertEqual(self.dumps(
            self.use_dunderdict({2: 3.0, 4.0: 5L, False: 1, 6L: True}), sort_keys=True),
            '{"false": 1, "2": 3.0, "4.0": 5, "6": true}')


class TestPyDump(TestDunderDictDump, PyTest): pass
class TestCDump(TestDunderDictDump, CTest): pass