All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rate.karate-core.0.9.0.RC1.source-code.report-template.js Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
window.onload = function() {
  possibleModes = ['failed', 'skipped', 'passed'];
  tests = {};
  modeBorder = {};
  for (mode of possibleModes) {
    tests[mode] = [];
    modeBorder[mode] = document.createElement('div');
    modeBorder[mode].classList.add(mode+'_border');
  }
  sidenavDiv = document.createElement('div');
  sidenavDiv.classList.add('sidenav');
  document.body.appendChild(sidenavDiv);
  addKarateLogoToSidebar();
  sidenavDiv.innerHTML += '

Test Suite Navigation

'; scenarios = document.getElementsByClassName('step-cell'); for (i = 0; i < scenarios.length; ++i) { scenarios[i].id = getIdForTest(i); scenarios[i].innerHTML = (getTextForTest(i) + ' : ' + scenarios[i].innerHTML); mode = scenarios[i].classList[1]; tests[mode].push(i); } for (mode of possibleModes) { buildSidebarVerboseReport(mode); buildSidebarAnchors(mode); sidenavDiv.appendChild(modeBorder[mode]); } buildAccordians(); function addKarateLogoToSidebar() { imgContainer = document.createElement('div'); sidenavDiv.appendChild(imgContainer); imgContainer.classList.add('svgHolder'); img = document.getElementsByTagName('svg'); imgContainer.appendChild(img[0]); box = img[0].getBBox(); viewBox = [box.x, box.y, box.width, box.height].join(" "); img[0].setAttribute("viewBox", viewBox); img[0].style.width = "100px"; img[0].style.height = "100px"; } function getIdForTest(i) { return('test_'+(i+1)); } function getTextForTest(i) { return('Test '+(i+1)); } function buildSidebarVerboseReport(mode) { verboseReport = document.createElement('p'); verboseReport.appendChild(document.createTextNode('# of ' + mode + ' tests: ' + tests[mode].length + '/' + scenarios.length)); verboseReport.appendChild(document.createElement('br')); verboseReport.appendChild(document.createTextNode('('+((tests[mode].length/scenarios.length)*100).toFixed(2) + '%)')); verboseReport.classList.add(mode+'_font'); modeBorder[mode].appendChild(verboseReport); } function buildSidebarAnchors(mode) { suchTests = tests[mode]; for (i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy