示例#1
0
 def testListWithAListWithAnInt(self):
     item = JsonItem([[4]])
     self.assertEqual(
         '\n'.join([
             "1 list of length 1. Values:", "  1 list of length 1. Values:",
             "    1 int"
         ]), item.__str__())
示例#2
0
 def testListWithTwoSameLengthDictsLengthCompare(self):
     item = JsonItem([{'a': 3}, {'b': 4}], strictness='length')
     self.assertEqual(
         '\n'.join([
             "1 list of length 2. Values:",
             "  2 dicts of length 1. Values:", "    1 int"
         ]), item.__str__())
示例#3
0
 def testListWithOneDictAndOneInt(self):
     item = JsonItem([{}, 4])
     self.assertEqual(
         '\n'.join([
             "1 list of length 2. Values:", "  1 dict of length 0.",
             "  1 int"
         ]), item.__str__())
示例#4
0
 def testListWithTwoUnequalListsKeysCompare(self):
     item = JsonItem([[4, 5], [6, 7]], strictness='keys')
     self.assertEqual(
         '\n'.join([
             "1 list of length 2. Values:", "  1 list of length 2. Values:",
             "    2 ints", "  1 list of length 2. Values:", "    2 ints"
         ]), item.__str__())
示例#5
0
 def testListWithTwoEqualDictsEqualCompare(self):
     item = JsonItem([{'a': 3, 'b': 4}, {'a': 3, 'b': 4}],
                     strictness='equal')
     self.assertEqual('\n'.join(["1 list of length 2. Values:",
                                 "  2 dicts of length 2. Values:",
                                 "    2 ints"]),
                      item.__str__())
示例#6
0
 def testListWithTwoDifferentLengthDictsLengthCompare(self):
     item = JsonItem([{'a': 3}, {'b': 4, 'c': 5}], strictness='length')
     self.assertEqual(
         '\n'.join([
             "1 list of length 2. Values:", "  1 dict of length 1. Values:",
             "    1 int", "  1 dict of length 2. Values:", "    2 ints"
         ]), item.__str__())
示例#7
0
 def testListWithTwoEqualListsEqualCompare(self):
     item = JsonItem([[4, 5], [4, 5]], strictness='equal')
     self.assertEqual(
         '\n'.join([
             "1 list of length 2. Values:",
             "  2 lists of length 2. Values:", "    2 ints"
         ]), item.__str__())
示例#8
0
 def testListWithTwoUnequalListsKeysCompare(self):
     item = JsonItem([[4, 5], [6, 7]], strictness='keys')
     self.assertEqual('\n'.join(["1 list of length 2. Values:",
                                 "  1 list of length 2. Values:",
                                 "    2 ints",
                                 "  1 list of length 2. Values:",
                                 "    2 ints"]),
                      item.__str__())
示例#9
0
 def testListWithTwoDifferentLengthDictsLengthCompare(self):
     item = JsonItem([{'a': 3}, {'b': 4, 'c': 5}], strictness='length')
     self.assertEqual('\n'.join(["1 list of length 2. Values:",
                                 "  1 dict of length 1. Values:",
                                 "    1 int",
                                 "  1 dict of length 2. Values:",
                                 "    2 ints"]),
                      item.__str__())
示例#10
0
 def testListWithTwoEqualDictsEqualCompare(self):
     item = JsonItem([{
         'a': 3,
         'b': 4
     }, {
         'a': 3,
         'b': 4
     }],
                     strictness='equal')
     self.assertEqual(
         '\n'.join([
             "1 list of length 2. Values:",
             "  2 dicts of length 2. Values:", "    2 ints"
         ]), item.__str__())
示例#11
0
 def testDictWithOneFloatKey(self):
     item = JsonItem({'a': 4.3})
     self.assertEqual("1 dict of length 1. Values:\n  1 float",
                      item.__str__())
示例#12
0
 def testListWithAListWithAnInt(self):
     item = JsonItem([[4]])
     self.assertEqual('\n'.join(["1 list of length 1. Values:",
                                 "  1 list of length 1. Values:",
                                 "    1 int"]),
                      item.__str__())
示例#13
0
 def testInt(self):
     item = JsonItem(4)
     self.assertEqual("1 int",
                      item.__str__())
示例#14
0
 def testDictWithOneFloatKey(self):
     item = JsonItem({'a': 4.3})
     self.assertEqual("1 dict of length 1. Values:\n  1 float",
                      item.__str__())
示例#15
0
 def testListWithTwoSameLengthDictsLengthCompare(self):
     item = JsonItem([{'a': 3}, {'b': 4}], strictness='length')
     self.assertEqual('\n'.join(["1 list of length 2. Values:",
                                 "  2 dicts of length 1. Values:",
                                 "    1 int"]),
                      item.__str__())
示例#16
0
 def testDictWithOneLongKey(self):
     item = JsonItem({'a': 100L})
     self.assertEqual("1 dict of length 1. Values:\n  1 long",
                      item.__str__())
示例#17
0
 def testListWithOneInt(self):
     item = JsonItem([4])
     self.assertEqual("1 list of length 1. Values:\n  1 int",
                      item.__str__())
示例#18
0
 def testListWithTwoInts(self):
     item = JsonItem([4, 5])
     self.assertEqual("1 list of length 2. Values:\n  2 ints",
                      item.__str__())
示例#19
0
 def testDictWithOneBooleanKey(self):
     item = JsonItem({'a': True})
     self.assertEqual("1 dict of length 1. Values:\n  1 boolean",
                      item.__str__())
示例#20
0
 def testDictWithOneNoneKey(self):
     item = JsonItem({'a': None})
     self.assertEqual("1 dict of length 1. Values:\n  1 None",
                      item.__str__())
示例#21
0
 def testListWithAnEmptyList(self):
     item = JsonItem([[]])
     self.assertEqual("1 list of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
示例#22
0
 def testInt(self):
     item = JsonItem(4)
     self.assertEqual("1 int", item.__str__())
示例#23
0
 def testDictWithOneBooleanKey(self):
     item = JsonItem({'a': True})
     self.assertEqual("1 dict of length 1. Values:\n  1 boolean",
                      item.__str__())
示例#24
0
 def testDictWithOneNoneKey(self):
     item = JsonItem({'a': None})
     self.assertEqual("1 dict of length 1. Values:\n  1 None",
                      item.__str__())
示例#25
0
 def testEmptyList(self):
     item = JsonItem([])
     self.assertEqual("1 list of length 0.", item.__str__())
示例#26
0
 def testListWithOneInt(self):
     item = JsonItem([4])
     self.assertEqual("1 list of length 1. Values:\n  1 int",
                      item.__str__())
示例#27
0
 def testListWithTwoInts(self):
     item = JsonItem([4, 5])
     self.assertEqual("1 list of length 2. Values:\n  2 ints",
                      item.__str__())
示例#28
0
 def testListWithTwoEqualListsEqualCompare(self):
     item = JsonItem([[4, 5], [4, 5]], strictness='equal')
     self.assertEqual('\n'.join(["1 list of length 2. Values:",
                                 "  2 lists of length 2. Values:",
                                 "    2 ints"]),
                      item.__str__())
示例#29
0
 def testEmptyDict(self):
     item = JsonItem({})
     self.assertEqual("1 dict of length 0.",
                      item.__str__())
示例#30
0
 def testListWithOneDict(self):
     item = JsonItem([{}])
     self.assertEqual("1 list of length 1. Values:\n  1 dict of length 0.",
                      item.__str__())
示例#31
0
 def testDictWithTwoStrKeys(self):
     item = JsonItem({'a': u'b', 'c': u'd'})
     self.assertEqual("1 dict of length 2. Values:\n  2 unicodes",
                      item.__str__())
示例#32
0
 def testListWithAnEmptyList(self):
     item = JsonItem([[]])
     self.assertEqual("1 list of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
示例#33
0
 def testDictWithOneEmptyListKey(self):
     item = JsonItem({'a': []})
     self.assertEqual("1 dict of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
示例#34
0
 def testListWithOneDictAndOneInt(self):
     item = JsonItem([{}, 4])
     self.assertEqual('\n'.join(["1 list of length 2. Values:",
                                 "  1 dict of length 0.",
                                 "  1 int"]),
                      item.__str__())
示例#35
0
 def testListWithOneDict(self):
     item = JsonItem([{}])
     self.assertEqual("1 list of length 1. Values:\n  1 dict of length 0.",
                      item.__str__())
示例#36
0
 def testEmptyDict(self):
     item = JsonItem({})
     self.assertEqual("1 dict of length 0.", item.__str__())
示例#37
0
 def testDictWithOneStrKey(self):
     item = JsonItem({'x': u'y'})
     self.assertEqual("1 dict of length 1. Values:\n  1 unicode",
                      item.__str__())
示例#38
0
 def testEmptyList(self):
     item = JsonItem([])
     self.assertEqual("1 list of length 0.",
                      item.__str__())
示例#39
0
 def testDictWithTwoStrKeys(self):
     item = JsonItem({'a': u'b', 'c': u'd'})
     self.assertEqual("1 dict of length 2. Values:\n  2 unicodes",
                      item.__str__())
示例#40
0
 def testDictWithOneStrKey(self):
     item = JsonItem({'x': u'y'})
     self.assertEqual("1 dict of length 1. Values:\n  1 unicode",
                      item.__str__())
示例#41
0
 def testDictWithOneEmptyListKey(self):
     item = JsonItem({'a': []})
     self.assertEqual("1 dict of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
示例#42
0
 def testDictWithOneIntKey(self):
     item = JsonItem({'x': 4})
     self.assertEqual("1 dict of length 1. Values:\n  1 int",
                      item.__str__())
示例#43
0
 def testDictWithOneIntKey(self):
     item = JsonItem({'x': 4})
     self.assertEqual("1 dict of length 1. Values:\n  1 int",
                      item.__str__())