mirror of
https://github.com/beautifier/js-beautify.git
synced 2025-02-24 07:11:17 +00:00
49 lines
1.2 KiB
Python
Executable File
49 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import copy
|
|
import jsbeautifier
|
|
options = jsbeautifier.default_options()
|
|
options.wrap_line_length = 80
|
|
data = ''
|
|
data_min = ''
|
|
|
|
|
|
def beautifier_test_underscore():
|
|
jsbeautifier.beautify(data, options)
|
|
|
|
|
|
def beautifier_test_underscore_min():
|
|
jsbeautifier.beautify(data_min, options)
|
|
|
|
|
|
def report_perf(fn):
|
|
import timeit
|
|
iter = 50
|
|
time = timeit.timeit(
|
|
fn +
|
|
"()",
|
|
setup="from __main__ import " +
|
|
fn +
|
|
"; gc.enable()",
|
|
number=iter)
|
|
print(fn + ": " + str(iter / time) + " cycles/sec")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
dirname = os.path.dirname(os.path.abspath(__file__))
|
|
underscore_file = os.path.join(
|
|
dirname, "../", "test/resources/underscore.js")
|
|
underscore_min_file = os.path.join(
|
|
dirname, "../", "test/resources/underscore-min.js")
|
|
data = copy.copy(''.join(open(underscore_file).readlines()))
|
|
data_min = copy.copy(''.join(open(underscore_min_file).readlines()))
|
|
|
|
# warm up
|
|
beautifier_test_underscore()
|
|
beautifier_test_underscore_min()
|
|
|
|
report_perf("beautifier_test_underscore")
|
|
report_perf("beautifier_test_underscore_min")
|