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