How to use TestStatistic class of com.galenframework.reports package

Best Galen code snippet using com.galenframework.reports.TestStatistic

Source:LayoutTest.java Github

copy

Full Screen

2import com.galenframework.api.Galen;3import com.galenframework.reports.GalenTestInfo;4import com.galenframework.reports.HtmlReportBuilder;5import com.galenframework.reports.TestReport;6import com.galenframework.reports.TestStatistic;7import com.galenframework.reports.model.LayoutReport;8import com.galenframework.speclang2.pagespec.SectionFilter;9import com.galenframework.specs.Spec;10import com.galenframework.utils.GalenUtils;11import com.galenframework.validation.ValidationError;12import com.galenframework.validation.ValidationObject;13import com.galenframework.validation.ValidationResult;14import nl.hsac.fitnesse.fixture.Environment;15import nl.hsac.fitnesse.fixture.slim.SlimFixtureWithMap;16import nl.hsac.fitnesse.fixture.util.FileUtil;17import org.openqa.selenium.WebDriver;18import java.io.File;19import java.io.IOException;20import java.util.ArrayList;21import java.util.Collections;22import java.util.Date;23import java.util.LinkedHashMap;24import java.util.LinkedList;25import java.util.List;26import java.util.Map;27import java.util.Properties;28/**29 * Fixture to check web page layout using Galen Framework.30 * @link http://galenframework.com31 */32public class LayoutTest extends SlimFixtureWithMap {33 private static final String REPORT_OVERVIEW_SYMBOL = "GALEN_TOP_LEVEL_REPORT_INDEX";34 private static final String REPORT_SUBDIR = String.valueOf(new Date().getTime());35 private static final List<GalenTestInfo> ALL_TESTS = new LinkedList<>();36 private String reportBase = new File(filesDir, "galen-reports/" + REPORT_SUBDIR).getPath();37 private List<String> includedTags = Collections.emptyList();38 private List<String> excludedTags = Collections.emptyList();39 private String layoutCheckName;40 private LayoutReport layoutReport = new LayoutReport();41 private TestStatistic testStatistic = new TestStatistic();42 public String verifyLayoutUsing(String specFile) throws IOException {43 String specPath = getFilePathFromWikiUrl(specFile);44 GalenTestInfo test = createGalenTestInfo();45 checkLayout(specPath, test);46 return report();47 }48 protected void checkLayout(String specPath, GalenTestInfo test) throws IOException {49 String reportTitle = getReportTitle(specPath, includedTags(), excludedTags());50 SectionFilter sectionFilter = new SectionFilter(includedTags(), excludedTags());51 checkLayout(specPath, test, reportTitle, sectionFilter, new Properties(), getCurrentValues());52 }53 protected void checkLayout(String specPath, GalenTestInfo test, String reportTitle,54 SectionFilter sectionFilter, Properties properties, Map<String, Object> jsVariables)55 throws IOException {56 TestReport report = test.getReport();57 // ensure we reset test statistic before each call58 testStatistic = new TestStatistic();59 layoutReport = Galen.checkLayout(getDriver(), specPath, sectionFilter, properties, jsVariables);60 // Adding layout report to the test report61 report.layout(layoutReport, reportTitle);62 testStatistic = report.fetchStatistic();63 ALL_TESTS.add(test);64 // re-set name for next test65 setLayoutCheckName(null);66 }67 protected String getReportTitle(String specPath, List<String> includedTags, List<String> excludedTags) {68 String tagsMsg = "";69 if (includedTags != null && !includedTags.isEmpty()) {70 tagsMsg += "; including " + includedTags;71 }72 if (excludedTags != null && !excludedTags.isEmpty()) {73 tagsMsg += "; excluding " + excludedTags;74 }75 return String.format("Layout check using: %s%s", specPath, tagsMsg);76 }77 protected GalenTestInfo createGalenTestInfo() {78 String name = getGalenTestInfoName();79 return GalenTestInfo.fromString(name);80 }81 protected String getGalenTestInfoName() {82 String name = layoutCheckName();83 return name == null ?84 String.format("FitNesse%s%s", getClass().getSimpleName(), ALL_TESTS.size()) : name;85 }86 public int verifiedSpecCount() {87 return getTestStatistic().getTotal();88 }89 public int passedSpecCount() {90 return getTestStatistic().getPassed();91 }92 public int specErrorCount() {93 return getTestStatistic().getErrors();94 }95 public int specWarningCount() {96 return getTestStatistic().getWarnings();97 }98 public Object layoutCheckMessages() {99 List<ValidationResult> errorResults = getLayoutReport().getValidationErrorResults();100 return formatResultsForWiki(errorResults);101 }102 protected Map<List<String>, Map<String, List<String>>> formatResultsForWiki(List<ValidationResult> errorResults) {103 Map<List<String>, Map<String, List<String>>> result = new LinkedHashMap<>();104 for (ValidationResult errorResult : errorResults) {105 List<String> key = formatValidationObjectsForWiki(errorResult.getValidationObjects());106 Map<String, List<String>> value = formatErrorForWiki(errorResult.getSpec(), errorResult.getError());107 if (result.containsKey(key)) {108 // add all current values to new value109 Map<String, List<String>> currentValue = result.get(key);110 addAllCurrentValues(value, currentValue);111 }112 result.put(key, value);113 }114 return result;115 }116 protected List<String> formatValidationObjectsForWiki(List<ValidationObject> validationObjects) {117 List<String> names = new ArrayList<>();118 for (ValidationObject error : validationObjects) {119 names.add(error.getName());120 }121 return names;122 }123 protected Map<String, List<String>> formatErrorForWiki(Spec spec, ValidationError error) {124 String key = error.isOnlyWarn() ? "warning" : "error";125 key += " on: " + spec.toText();126 Map<String, List<String>> messageMap = new LinkedHashMap<>();127 List<String> messages = error.getMessages();128 messageMap.put(key, new ArrayList<>(messages));129 return messageMap;130 }131 protected void addAllCurrentValues(Map<String, List<String>> value, Map<String, List<String>> currentValue) {132 for (Map.Entry<String, List<String>> currentEntries : currentValue.entrySet()) {133 String currentKey = currentEntries.getKey();134 List<String> currentValues = currentEntries.getValue();135 List<String> newValues = value.get(currentKey);136 if (newValues == null) {137 value.put(currentKey, currentValues);138 } else {139 newValues.addAll(currentValues);140 }141 }142 }143 public List<String> includedTags() {144 return includedTags;145 }146 public void setIncludedTags(List<String> includedTags) {147 this.includedTags = includedTags;148 }149 public List<String> excludedTags() {150 return excludedTags;151 }152 public void setExcludedTags(List<String> excludedTags) {153 this.excludedTags = excludedTags;154 }155 public void setLayoutCheckName(String testName) {156 this.layoutCheckName = testName;157 }158 protected String layoutCheckName() {159 return layoutCheckName;160 }161 protected String report() throws IOException {162 generateHtmlReports();163 int testCount = ALL_TESTS.size();164 GalenTestInfo last = ALL_TESTS.get(testCount - 1);165 return createLinkToGalenReport(testCount, last);166 }167 protected String createLinkToGalenReport(int testCount, GalenTestInfo last) {168 String baseName = GalenUtils.convertToFileName(last.getName());169 String fileName = String.format("%s-%s.html", testCount, baseName);170 String testPath = new File(getReportBase(), fileName).getPath();171 return String.format("<a href=\"%s\">%s</a>", getWikiUrl(testPath), fileName);172 }173 protected void generateHtmlReports() throws IOException {174 String dir = getReportBase();175 new HtmlReportBuilder().build(ALL_TESTS, dir);176 String link = createRelativeLinkToOverallReport(dir);177 getEnvironment().setSymbol(REPORT_OVERVIEW_SYMBOL, link);178 }179 protected String createRelativeLinkToOverallReport(String dir) {180 String report = new File(dir, "report.html").getPath();181 String rootDir = getEnvironment().getFitNesseRootDir();182 return FileUtil.getRelativePath(rootDir, report);183 }184 protected LayoutReport getLayoutReport() {185 return layoutReport;186 }187 protected TestStatistic getTestStatistic() {188 return testStatistic;189 }190 protected String getReportBase() {191 return reportBase;192 }193 protected WebDriver getDriver() {194 return getEnvironment().getSeleniumHelper().driver();195 }196 public static String getOverallReportLink() {197 String file = Environment.getInstance().getSymbol(REPORT_OVERVIEW_SYMBOL);198 return file == null ? null : String.format("<a href=\"%s\">Layout Test's Galen Reports</a>", file);199 }200}...

Full Screen

Full Screen

TestStatistic

Using AI Code Generation

copy

Full Screen

1import com.galenframework.reports.TestStatistic;2import com.galenframework.reports.TestStatisticProvider;3import com.galenframework.reports.TestStatisticProviderFactory;4public class CustomTestStatisticProvider implements TestStatisticProvider {5 public TestStatistic getTestStatistic() {6 TestStatistic testStatistic = new TestStatistic();7 testStatistic.setTotal(100);8 testStatistic.setPassed(60);9 testStatistic.setFailed(40);10 return testStatistic;11 }12}13TestStatisticProviderFactory.register(new CustomTestStatisticProvider());14import com.galenframework.reports.TestStatistic;15import com.galenframework.reports.TestStatisticProvider;16import com.galenframework.reports.TestStatisticProviderFactory;17public class CustomTestStatisticProvider implements TestStatisticProvider {18 public TestStatistic getTestStatistic() {19 TestStatistic testStatistic = new TestStatistic();20 testStatistic.setTotal(100);21 testStatistic.setPassed(60);22 testStatistic.setFailed(40);23 return testStatistic;24 }25}26TestStatisticProviderFactory.register(new CustomTestStatisticProvider());27setTotal()28setPassed()29setFailed()30setSkipped()31setErrors()32setWarnings()

Full Screen

Full Screen

TestStatistic

Using AI Code Generation

copy

Full Screen

1TestStatistic testStatistic = new TestStatistic();2testStatistic.setPassed(5);3testStatistic.setFailed(2);4testStatistic.setSkipped(1);5testStatistic.setTotal(8);6testStatistic.setPassedPercentage(62.5);7testStatistic.setFailedPercentage(25);8testStatistic.setSkippedPercentage(12.5);9testStatistic.setDuration(12345);10report.addTestStatistic(testStatistic);

Full Screen

Full Screen

TestStatistic

Using AI Code Generation

copy

Full Screen

1package com.galenframework.reports;2import com.galenframework.reports.TestStatistic;3public class TestStatistic {4 private int passed;5 private int failed;6 private int ignored;7 private int total;8 public TestStatistic() {9 this.passed = 0;10 this.failed = 0;11 this.ignored = 0;12 this.total = 0;13 }14 public TestStatistic(int passed, int failed, int ignored) {15 this.passed = passed;16 this.failed = failed;17 this.ignored = ignored;18 this.total = passed + failed + ignored;19 }20 public void addPassed(int count) {21 this.passed += count;22 this.total += count;23 }24 public void addFailed(int count) {25 this.failed += count;26 this.total += count;27 }28 public void addIgnored(int count) {29 this.ignored += count;30 this.total += count;31 }32 public int getPassed() {33 return passed;34 }35 public int getFailed() {36 return failed;37 }38 public int getIgnored() {39 return ignored;40 }41 public int getTotal() {42 return total;43 }44 public void add(TestStatistic other) {45 this.passed += other.passed;46 this.failed += other.failed;47 this.ignored += other.ignored;48 this.total += other.total;49 }50 public boolean hasFailed() {51 return this.failed > 0;52 }53 public boolean hasPassed() {54 return this.failed == 0;55 }56 public boolean hasIgnored() {57 return this.ignored > 0;58 }59 public String getPassedPercent() {60 if (total == 0) {61 return "0";62 }63 return String.valueOf(Math.round(passed * 100.0 / total));64 }65 public String getFailedPercent() {66 if (total == 0) {67 return "0";68 }69 return String.valueOf(Math.round(failed * 100.0 / total));70 }71 public String getIgnoredPercent() {72 if (total == 0) {73 return "0";74 }75 return String.valueOf(Math.round(ignored * 100.0 / total));76 }77 public String toString() {78 return "TestStatistic{passed=" + passed + ", failed=" + failed + ",

Full Screen

Full Screen

TestStatistic

Using AI Code Generation

copy

Full Screen

1TestStatistic testStatistic = new TestStatistic()2testStatistic.setName("Test Name")3testStatistic.setStatus("passed")4testStatistic.setDuration(123)5testStatistic.setTags(["tag1","tag2"])6testStatistic.setFailureMessage("Failure Message")7testStatistic.setFailureStackTrace("Failure Stack Trace")

Full Screen

Full Screen

TestStatistic

Using AI Code Generation

copy

Full Screen

1TestStatistic testStat = new TestStatistic()2testStat.setTestName("testName")3testStat.setPassed(1)4testStat.setFailed(2)5testStat.setSkipped(3)6testStat.setBrowser("browser")7testStat.setBrowserVersion("browserVersion")8testStat.setOs("os")9testStat.setDevice("device")10testStat.setDeviceOrientation("deviceOrientation")11testStat.setDeviceType("deviceType")12testStat.setDevicePixelRatio(4)13testStat.setDeviceTouchSupport(true)14testStat.setDeviceUserAgent("deviceUserAgent")15testStat.setDeviceViewport("deviceViewport")

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Galen automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful