Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 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__())
Esempio n. 11
0
 def testDictWithOneFloatKey(self):
     item = JsonItem({'a': 4.3})
     self.assertEqual("1 dict of length 1. Values:\n  1 float",
                      item.__str__())
Esempio n. 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__())
Esempio n. 13
0
 def testInt(self):
     item = JsonItem(4)
     self.assertEqual("1 int",
                      item.__str__())
Esempio n. 14
0
 def testDictWithOneFloatKey(self):
     item = JsonItem({'a': 4.3})
     self.assertEqual("1 dict of length 1. Values:\n  1 float",
                      item.__str__())
Esempio n. 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__())
Esempio n. 16
0
 def testDictWithOneLongKey(self):
     item = JsonItem({'a': 100L})
     self.assertEqual("1 dict of length 1. Values:\n  1 long",
                      item.__str__())
Esempio n. 17
0
 def testListWithOneInt(self):
     item = JsonItem([4])
     self.assertEqual("1 list of length 1. Values:\n  1 int",
                      item.__str__())
Esempio n. 18
0
 def testListWithTwoInts(self):
     item = JsonItem([4, 5])
     self.assertEqual("1 list of length 2. Values:\n  2 ints",
                      item.__str__())
Esempio n. 19
0
 def testDictWithOneBooleanKey(self):
     item = JsonItem({'a': True})
     self.assertEqual("1 dict of length 1. Values:\n  1 boolean",
                      item.__str__())
Esempio n. 20
0
 def testDictWithOneNoneKey(self):
     item = JsonItem({'a': None})
     self.assertEqual("1 dict of length 1. Values:\n  1 None",
                      item.__str__())
Esempio n. 21
0
 def testListWithAnEmptyList(self):
     item = JsonItem([[]])
     self.assertEqual("1 list of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
Esempio n. 22
0
 def testInt(self):
     item = JsonItem(4)
     self.assertEqual("1 int", item.__str__())
Esempio n. 23
0
 def testDictWithOneBooleanKey(self):
     item = JsonItem({'a': True})
     self.assertEqual("1 dict of length 1. Values:\n  1 boolean",
                      item.__str__())
Esempio n. 24
0
 def testDictWithOneNoneKey(self):
     item = JsonItem({'a': None})
     self.assertEqual("1 dict of length 1. Values:\n  1 None",
                      item.__str__())
Esempio n. 25
0
 def testEmptyList(self):
     item = JsonItem([])
     self.assertEqual("1 list of length 0.", item.__str__())
Esempio n. 26
0
 def testListWithOneInt(self):
     item = JsonItem([4])
     self.assertEqual("1 list of length 1. Values:\n  1 int",
                      item.__str__())
Esempio n. 27
0
 def testListWithTwoInts(self):
     item = JsonItem([4, 5])
     self.assertEqual("1 list of length 2. Values:\n  2 ints",
                      item.__str__())
Esempio n. 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__())
Esempio n. 29
0
 def testEmptyDict(self):
     item = JsonItem({})
     self.assertEqual("1 dict of length 0.",
                      item.__str__())
Esempio n. 30
0
 def testListWithOneDict(self):
     item = JsonItem([{}])
     self.assertEqual("1 list of length 1. Values:\n  1 dict of length 0.",
                      item.__str__())
Esempio n. 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__())
Esempio n. 32
0
 def testListWithAnEmptyList(self):
     item = JsonItem([[]])
     self.assertEqual("1 list of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
Esempio n. 33
0
 def testDictWithOneEmptyListKey(self):
     item = JsonItem({'a': []})
     self.assertEqual("1 dict of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
Esempio n. 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__())
Esempio n. 35
0
 def testListWithOneDict(self):
     item = JsonItem([{}])
     self.assertEqual("1 list of length 1. Values:\n  1 dict of length 0.",
                      item.__str__())
Esempio n. 36
0
 def testEmptyDict(self):
     item = JsonItem({})
     self.assertEqual("1 dict of length 0.", item.__str__())
Esempio n. 37
0
 def testDictWithOneStrKey(self):
     item = JsonItem({'x': u'y'})
     self.assertEqual("1 dict of length 1. Values:\n  1 unicode",
                      item.__str__())
Esempio n. 38
0
 def testEmptyList(self):
     item = JsonItem([])
     self.assertEqual("1 list of length 0.",
                      item.__str__())
Esempio n. 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__())
Esempio n. 40
0
 def testDictWithOneStrKey(self):
     item = JsonItem({'x': u'y'})
     self.assertEqual("1 dict of length 1. Values:\n  1 unicode",
                      item.__str__())
Esempio n. 41
0
 def testDictWithOneEmptyListKey(self):
     item = JsonItem({'a': []})
     self.assertEqual("1 dict of length 1. Values:\n  1 list of length 0.",
                      item.__str__())
Esempio n. 42
0
 def testDictWithOneIntKey(self):
     item = JsonItem({'x': 4})
     self.assertEqual("1 dict of length 1. Values:\n  1 int",
                      item.__str__())
Esempio n. 43
0
 def testDictWithOneIntKey(self):
     item = JsonItem({'x': 4})
     self.assertEqual("1 dict of length 1. Values:\n  1 int",
                      item.__str__())