Ejemplo n.º 1
0
def fixjson():
    infile = sys.argv[1]
    outfile = sys.argv[2]

    inf = open(infile, 'r')
    outf = open(outfile, 'w')

    total = 0
    hit = 0

    fixer = JSONFixer()
    for line in inf:
        try:
            line = line.strip()
            if not line:
                continue
            total += 1
            result = fixer.fix(line)
            if result.success:
                outf.write(result.line + "\n")
                if not result.origin:
                    hit += 1
            else:
                print(result)
        except Exception as e:
            print(e, line)
    print("total is {} and hit {} --> ratio:{} \n".format(
        total, hit, hit * 1.0 / total))
    inf.close()
    outf.close()
Ejemplo n.º 2
0
 def test_range_head(self):
     fixer = JSONFixer(200)
     for i in range(1000):
         idx = random.randint(1, len(self.line))
         result = fixer.fix(self.line[idx:])
         if not result.success:
             print(result.line)
         self.assertTrue(result.success)
Ejemplo n.º 3
0
 def test_range_tail(self):
     fixer = JSONFixer()
     for i in range(1000):
         idx = random.randint(1, len(self.line))
         result = fixer.fix(self.line[:idx])
         self.assertTrue(result.success)