aboutsummaryrefslogtreecommitdiffstats
path: root/tests/perf/10ge2p1x520-dot1ad-l2xcbase-ndrchk.robot
AgeCommit message (Expand)AuthorFilesLines
2017-06-05CSIT-524: Traffic generator using python profilesTibor Frank1-9/+11
2017-04-21Added Ethernet frame size tags for performance tests:Maciek Konstantynowicz1-9/+9
2017-03-30Update: NDRCHK rate values and typospmikus1-15/+15
2017-03-08CSIT-530: Add common setup and teardown to perf testsTibor Frank1-65/+59
2017-01-18Renaming of all perf TCs.Tibor Frank1-18/+18
2017-01-12CSIT-501: Perf tests re-taggingTibor Frank1-11/+11
2017-01-10CSIT-469 Rename performance suitespmikus1-0/+283
gging import siphon DEFAULT_LOGFILE = None DEFAULT_LOGLEVEL = "info" DEFAULT_SIPHON ="clicmd" DEFAULT_FORMAT = "markdown" DEFAULT_OUTPUT = None DEFAULT_TEMPLATES = os.path.dirname(__file__) + "/siphon_templates" ap = argparse.ArgumentParser() ap.add_argument("--log-file", default=DEFAULT_LOGFILE, help="Log file [%s]" % DEFAULT_LOGFILE) ap.add_argument("--log-level", default=DEFAULT_LOGLEVEL, choices=["debug", "info", "warning", "error", "critical"], help="Logging level [%s]" % DEFAULT_LOGLEVEL) ap.add_argument("--type", '-t', metavar="siphon_type", default=DEFAULT_SIPHON, choices=siphon.process.siphons.keys(), help="Siphon type to process [%s]" % DEFAULT_SIPHON) ap.add_argument("--format", '-f', default=DEFAULT_FORMAT, choices=siphon.process.formats.keys(), help="Output format to generate [%s]" % DEFAULT_FORMAT) ap.add_argument("--output", '-o', metavar="file", default=DEFAULT_OUTPUT, help="Output file (uses stdout if not defined) [%s]" % DEFAULT_OUTPUT) ap.add_argument("--templates", metavar="directory", default=DEFAULT_TEMPLATES, help="Path to render templates directory [%s]" % DEFAULT_TEMPLATES) ap.add_argument("input", nargs='+', metavar="input_file", help="Input .siphon files") args = ap.parse_args() logging.basicConfig(filename=args.log_file, level=getattr(logging, args.log_level.upper(), None)) log = logging.getLogger("siphon_process") # Determine where to send the generated output if args.output is None: out = sys.stdout else: out = open(args.output, "w+") # Get our processor klass = siphon.process.siphons[args.type] processor = klass(template_directory=args.templates, format=args.format) # Load the input files processor.load_json(args.input) # Process the data processor.process(out=out) # All done