How to use GalenMain class of com.galenframework package

Best Galen code snippet using com.galenframework.GalenMain

Source:GalenMainTest.java Github

copy

Full Screen

...22import java.io.IOException;23import java.io.PrintStream;24import java.util.LinkedList;25import java.util.List;26import com.galenframework.GalenMain;27import com.galenframework.components.DummyCompleteListener;28import com.galenframework.components.JsTestRegistry;29import com.galenframework.config.GalenProperty;30import com.galenframework.runner.CompleteListener;31import com.galenframework.suite.reader.GalenSuiteReader;32import com.galenframework.tests.GalenTest;33import com.galenframework.config.GalenConfig;34import com.galenframework.specs.Spec;35import com.galenframework.validation.PageValidation;36import com.galenframework.validation.ValidationResult;37import org.apache.commons.io.FileUtils;38import org.apache.commons.lang3.StringUtils;39import org.testng.annotations.AfterMethod;40import org.testng.annotations.BeforeClass;41import org.testng.annotations.BeforeMethod;42import org.testng.annotations.Test;43import com.google.common.io.Files;44@Test(singleThreaded = true)45public class GalenMainTest {46 @BeforeMethod47 public void initGalenProperties() {48 GalenConfig.getConfig().setProperty(GalenProperty.GALEN_USE_FAIL_EXIT_CODE, "false");49 }50 @AfterMethod51 public void resetConfigToDefaults() throws IOException {52 GalenConfig.getConfig().reset();53 }54 @Test55 public void shouldRun_javascriptTest_andGenerateReports() throws Exception {56 File reportsDir = Files.createTempDir();57 String htmlReportPath = reportsDir.getAbsolutePath();58 String testngReportPath = reportsDir.getAbsolutePath() + "/testng-report.html";59 String jsonReportPath = reportsDir.getAbsolutePath() + "/json-reports";60 JsTestRegistry.get().clear();61 new GalenMain().execute("test",62 getClass().getResource("/js-tests/simple-with-error.test.js").getFile(),63 "--htmlreport", htmlReportPath,64 "--testngreport", testngReportPath,65 "--jsonreport", jsonReportPath);66 assertThat(JsTestRegistry.get().getEvents().size(), is(3));67 assertThat(JsTestRegistry.get().getEvents().get(0), is("Test #1 was invoked"));68 assertThat(JsTestRegistry.get().getEvents().get(1), is("Test #2 was invoked"));69 assertThat(JsTestRegistry.get().getEvents().get(2), is("Test #3 was invoked"));70 71 String testngReportContent = FileUtils.readFileToString(new File(testngReportPath));72 73 assertThat(testngReportContent, containsString("<test name=\"Test number 1\">"));74 assertThat(testngReportContent, containsString("<class name=\"Test number 1\">"));75 76 assertThat(testngReportContent, containsString("<test name=\"Test number 2\">"));77 assertThat(testngReportContent, containsString("<class name=\"Test number 2\">"));78 79 assertThat(testngReportContent, containsString("<test name=\"Test number 3\">"));80 assertThat(testngReportContent, containsString("<class name=\"Test number 3\">"));81 82 83 String htmlReportContent = FileUtils.readFileToString(new File(htmlReportPath + File.separator + "report.html"));84 85 assertThat(htmlReportContent, containsString("\"testId\" : \"1-test-number-1\""));86 assertThat(htmlReportContent, containsString("\"testId\" : \"2-test-number-2\""));87 assertThat(htmlReportContent, containsString("\"testId\" : \"3-test-number-3\""));88 File jsonReportDir = new File(jsonReportPath);89 assertThat("json-reports folder should be created", jsonReportDir.exists() && jsonReportDir.isDirectory(), is(true));90 assertThat("json-reports folder contains files", asList(jsonReportDir.list()), containsInAnyOrder(91 "1-test-number-1.json",92 "2-test-number-2.json",93 "3-test-number-3.json",94 "report.json"));95 }96 97 @Test 98 public void shouldRun_javascriptTestWithEvents() throws Exception {99 JsTestRegistry.get().clear();100 new GalenMain().execute("test",101 getClass().getResource("/js-tests/with-events.test.js").getFile());102 assertThat(JsTestRegistry.get().getEvents(), contains(103 "Before test suite",104 "Before test: Test number 1",105 "Test #1 was invoked",106 "After test: Test number 1",107 "Before test: Test number 2",108 "Test #2 was invoked",109 "After test: Test number 2",110 "After test suite"));111 }112 @Test113 public void shouldRun_javascriptTest_regardlessOfItsSuffix() throws Exception {114 JsTestRegistry.get().clear();115 new GalenMain().execute("test",116 getClass().getResource("/js-tests/test-without-galen-suffix.js").getFile());117 assertThat(JsTestRegistry.get().getEvents(), contains(118 "Test #1 was invoked"));119 }120 @Test121 public void shouldFind_javascriptTests_basedOnConfigProperty() throws Exception {122 JsTestRegistry.get().clear();123 GalenConfig.getConfig().setProperty(GalenProperty.TEST_JS_SUFFIX, ".blahblah.js");124 new GalenMain().execute("test",125 getClass().getResource("/js-tests/tests-with-custom-suffix").getFile());126 assertThat(JsTestRegistry.get().getEvents(), containsInAnyOrder(127 "Test #1 was invoked",128 "Test #2 was invoked"129 ));130 }131 @Test 132 public void shouldRunJavascriptTests_andFilterThem() throws Exception {133 JsTestRegistry.get().clear();134 new GalenMain().execute("test",135 getClass().getResource("/js-tests/testfilter.test.js").getFile());136 assertThat(JsTestRegistry.get().getEvents(), contains(137 "Test D invoked",138 "Test C invoked",139 "Test A invoked"140 ));141 }142 @Test143 public void shouldRunJavascriptTests_onlyForSpecifiedGroups_withTwoGroups() throws Exception {144 JsTestRegistry.get().clear();145 new GalenMain().execute("test",146 getClass().getResource("/js-tests/testgroups.test.js").getFile(),147 "--groups", "mobile,tablet");148 assertThat(JsTestRegistry.get().getEvents(), contains(149 "Test A invoked",150 "Test B invoked",151 "Test C invoked"152 ));153 }154 @Test155 public void shouldRunJavascriptTests_onlyForSpecifiedGroups_withOneGroup() throws Exception {156 JsTestRegistry.get().clear();157 new GalenMain().execute("test",158 getClass().getResource("/js-tests/testgroups.test.js").getFile(),159 "--groups", "tablet");160 assertThat(JsTestRegistry.get().getEvents(), contains(161 "Test B invoked",162 "Test C invoked"163 ));164 }165 @Test166 public void shouldRunJavascriptTests_withExcludedGroups() throws Exception {167 JsTestRegistry.get().clear();168 new GalenMain().execute("test",169 getClass().getResource("/js-tests/testgroups.test.js").getFile(),170 "--excluded-groups", "tablet");171 assertThat(JsTestRegistry.get().getEvents(), contains(172 "Test A invoked",173 "Test D invoked"174 ));175 }176 /**177 * Comes from https://github.com/galenframework/galen/issues/184178 * Test Retry Handler179 * @throws Exception180 */181 @Test182 public void shouldRunJavascriptTests_andRetryThem() throws Exception {183 File htmlReportDir = Files.createTempDir();184 JsTestRegistry.get().clear();185 new GalenMain().execute("test",186 getClass().getResource("/js-tests/testretry.test.js").getFile(),187 "--htmlreport", htmlReportDir.getAbsolutePath());188 List<String> events = JsTestRegistry.get().getEvents();189 assertThat(events, contains(190 "Before test suite event",191 "Before test event for: Test A",192 "Test A invoked",193 "After test event for: Test A",194 "Retry handler invoked for test: Test A",195 "Before test event for: Test A",196 "Test A invoked",197 "After test event for: Test A",198 "Retry handler invoked for test: Test A",199 "Before test event for: Test A",200 "Test A invoked",201 "After test event for: Test A",202 "Retry handler invoked for test: Test A",203 "Before test event for: Test B",204 "Test B invoked",205 "After test event for: Test B",206 "Retry handler invoked for test: Test B",207 "Before test event for: Test B",208 "Test B invoked",209 "After test event for: Test B",210 "Retry handler invoked for test: Test B",211 "Before test event for: Test B",212 "Test B invoked",213 "After test event for: Test B",214 "Retry handler invoked for test: Test B",215 "Before test event for: Test C",216 "Test C invoked",217 "After test event for: Test C",218 "After test suite event"219 ));220 String htmlReportContent = FileUtils.readFileToString(new File(htmlReportDir.getAbsolutePath()221 + File.separator + "report.html"));222 int amountOfReportedTests = StringUtils.countMatches(htmlReportContent, "\"testId\"");223 assertThat("Amount of reported tests should be", amountOfReportedTests, is(3));224 }225 226 @Test 227 public void shouldGenerate_configFile() throws Exception {228 new GalenMain().execute("config");229 assertThat("config file should exist", new File("galen.config").exists(), is(true));230 new File("galen.config").delete();231 }232 233 @Test 234 public void shouldNot_overrideExistingConfigFile() throws IOException {235 File file = new File("galen.config");236 file.createNewFile();237 FileUtils.writeStringToFile(file, "someTestDate = qwertyuiop");238 239 new GalenMain().execute("config");240 String data = FileUtils.readFileToString(file);241 assertThat(data, is("someTestDate = qwertyuiop"));242 243 file.delete();244 }245 246 @Test 247 public void shouldRun_filteredTestInSuite() throws Exception {248 String testUrl = getClass().getResource("/suites/suite-for-filtering.test").getFile();249 GalenMain galen = new GalenMain();250 251 final List<String> executedSuites = new LinkedList<>();252 253 CompleteListener listener = new DummyCompleteListener() {254 @Override255 public void onTestStarted(GalenTest test) {256 executedSuites.add(test.getName());257 }258 };259 galen.setListener(listener);260 261 galen.execute("test", testUrl,262 "--filter", "*with filter*");263 264 assertThat("Amount of executed tests should be", executedSuites.size(), is(3));265 assertThat(executedSuites, hasItems(266 "Test 1 with filter one", 267 "Test 1 with filter two",268 "Test 2 with filter"));269 }270 @Test271 public void shouldCheckLayout_inJsTests_andPassCustomJsVariables() throws Exception {272 String testUrl = getClass().getResource("/suites/custom-js-variables-for-checklayout/simple.test.js").getFile();273 GalenMain galen = new GalenMain();274 final List<String> errorMessages = new LinkedList<>();275 CompleteListener listener = new DummyCompleteListener() {276 @Override277 public void onSpecError(PageValidation pageValidation, String objectName, Spec spec, ValidationResult result) {278 errorMessages.addAll(result.getError().getMessages());279 }280 };281 galen.setListener(listener);282 galen.execute("test", testUrl);283 assertThat(errorMessages, hasItems("\"caption\" text is \"Hi my name is John\" but should be \"Hi my name is Jack\""));284 }285 @Test286 public void shouldPrintHelp() throws Exception {287 ByteArrayOutputStream baos = new ByteArrayOutputStream();288 PrintStream ps = new PrintStream(baos);289 new GalenMain(ps, System.err).execute("help");290 String realText = baos.toString("UTF-8");291 assertThat(realText, allOf(containsString("Galen Framework is an open-source tool for testing layout"),292 containsString("Apache License")));293 }294}...

Full Screen

Full Screen

Source:GalenMain.java Github

copy

Full Screen

...21import com.galenframework.config.GalenConfig;22import com.galenframework.runner.CombinedListener;23import com.galenframework.runner.CompleteListener;24import org.apache.commons.lang3.ArrayUtils;25public class GalenMain {26 private final PrintStream outStream;27 private final PrintStream errStream;28 private CompleteListener listener;29 public GalenMain() {30 this.outStream = System.out;31 this.errStream = System.err;32 }33 public GalenMain(PrintStream outStream, PrintStream errStream) {34 this.outStream = outStream;35 this.errStream = errStream;36 }37 public void execute(String...arguments) {38 FailureListener failureListener = new FailureListener();39 CombinedListener combinedListener = new CombinedListener();40 combinedListener.add(failureListener);41 if (listener != null) {42 combinedListener.add(listener);43 }44 if (arguments.length > 0) {45 String actionName = arguments[0];46 String[] actionArguments = ArrayUtils.subarray(arguments, 1, arguments.length);47 GalenAction action = GalenAction.create(actionName, actionArguments, outStream, errStream, combinedListener);48 try {49 action.execute();50 } catch (Exception ex) {51 throw new RuntimeException(ex);52 }53 } else {54 new GalenActionVersion(arguments, outStream, errStream).execute();55 }56 combinedListener.done();57 if (GalenConfig.getConfig().getUseFailExitCode()) {58 if (failureListener.hasFailures()) {59 errStream.println("There were failures in galen tests");60 System.exit(1);61 }62 }63 }64 public static void main (String[] args) {65 new GalenMain().execute(args);66 }67 public CompleteListener getListener() {68 return listener;69 }70 public void setListener(CompleteListener listener) {71 this.listener = listener;72 }73}...

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1import com.galenframework.GalenMain;2import com.galenframework.reports.GalenTestInfo;3import com.galenframework.testng.TestNgTestBase;4import com.galenframework.testng.GalenTestNgTestBase;5import org.testng.annotations.Test;6import com.galenframework.reports.GalenReportsContainer;7import com.galenframework.reports.GalenTestInfo;8import com.galenframework.reports.GalenPageTest;9import com.galenframework.reports.GalenTestInfo;10import com.galenframework.reports.GalenPageTest;11import com.galenframework.reports.GalenTestInfo;12import com.galenframework.reports.GalenPageTest;13import com.galenframework.reports.GalenTestInfo;14import com.galenframework.reports.GalenPageTest;15import com.galenframework.reports.GalenTestInfo;16import com.galenframework.reports.GalenPageTest;17import com.galenframework.reports.GalenTestInfo;18import com.g

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1import com.galenframework.GalenMain;2import com.galenframework.reports.GalenTestInfo;3import com.galenframework.reports.GalenReportUtil;4import com.galenframework.reports.GalenTestInfo;5import com.galenframework.reports.GalenReportBuilder;6import com.galenframework.reports.TestNgTestResult;7import com.galenframework.reports.GalenTestInfo;8import com.galenframework.reports.GalenReportBuilder;9import com.galenframework.reports.TestNgTestResult;10import java.util.List;11import java.util.ArrayList;12import java.io.File;13import java.io.IOException;14import org.testng.an

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1package com.galenframework.java.sample;2import java.io.IOException;3import com.galenframework.GalenMain;4public class GalenMainTest {5public static void main(String[] args) throws IOException {6 GalenMain.main(new String[] { "check", "src/test/resources/specs/2.spec", "-Dwebdriver.chrome.driver=C:/Users/Abhishek/Desktop/Abhishek/Testing/chromedriver.exe", "-Dwebdriver.gecko.driver=C:/Users/Abhishek/Desktop/Abhishek/Testing/geckodriver.exe", "-Dgalen.browser=chrome", "--htmlreport", "target/galen-html-report

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1import com.galenframework.GalenMain;2public class 1 {3 public static void main(String[] args) throws Exception {4 }5}6import com.galenframework.GalenMain;7public class 2 {8 public static void main(String[] args) throws Exception {9 }10}11import com.galenframework.GalenMain;12public class 3 {13 public static void main(String[] args) throws Exception {14 }15}16import com.galenframework.GalenMain;17public class 4 {18 public static void main(String[] args) throws Exception {19 }20}21import com.galenframework.GalenMain;22public class 5 {23 public static void main(String[] args) throws Exception {24 }25}26import com.galenframework.GalenMain;27public class 6 {28 public static void main(String[] args) throws Exception {29 GalenMain.main(new String[]{"check", "specs

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1import com.galenframework.GalenMain;2public class 1 {3 public static void main(String[] args) throws Exception {4 String[] arguments = new String[] { "check", "home.gspec", "--htmlreport", "reports" };5 GalenMain.main(arguments);6 }7}8import com.galenframework.api.GalenMain;9public class 2 {10 public static void main(String[] args) throws Exception {11 String[] arguments = new String[] { "check", "home.gspec", "--htmlreport", "reports" };12 GalenMain.main(arguments);13 }14}

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1import com.galenframework.GalenMain;2public class GalenMainTest {3 public static void main(String[] args) {4 }5}6node {7 stage('Galen test') {8 }9}10node {11 stage('Galen test') {12 }13}

Full Screen

Full Screen

GalenMain

Using AI Code Generation

copy

Full Screen

1package com.galenframework.java.sample;2import java.io.IOException;3import java.util.LinkedList;4import java.util.List;5import com.galenframework.java.sample.components.GalenMain;6public class GalenTest {7 public static void main(String[] args) throws IOException {8 GalenMain galenMain = new GalenMain();9 List<String> testList = new LinkedList<String>();10 testList.add("C:\\Users\\Desktop\\TestSuites\\TestSuite1.spec");11 galenMain.executeTests(testList);12 }13}14package com.galenframework.java.sample;15import java.io.IOException;16import java.util.LinkedList;17import java.util.List;18import com.galenframework.java.sample.components.GalenMain;19public class GalenTest {20 public static void main(String[] args) throws IOException {21 GalenMain galenMain = new GalenMain();22 List<String> testList = new LinkedList<String>();23 testList.add("C:\\Users\\Desktop\\TestSuites\\TestSuite2.spec");24 galenMain.executeTests(testList);25 }26}27package com.galenframework.java.sample;28import java.io.IOException;29import java.util.LinkedList;30import java.util.List;31import com.galenframework.java.sample.components.GalenMain;32public class GalenTest {33 public static void main(String[] args) throws IOException {34 GalenMain galenMain = new GalenMain();35 List<String> testList = new LinkedList<String>();36 testList.add("C:\\Users\\Desktop\\TestSuites\\TestSuite3.spec");37 galenMain.executeTests(testList);38 }39}40package com.galenframework.java.sample;41import java.io.IOException;42import java.util.LinkedList;43import java.util.List;44import com.galenframework.java.sample.components.GalenMain;45public class GalenTest {46 public static void main(String[] args) throws IOException {47 GalenMain galenMain = new GalenMain();48 List<String> testList = new LinkedList<String>();49 testList.add("C:\\Users\\Desktop\\TestSuites\\TestSuite4.spec");50 galenMain.executeTests(testList);51 }52}

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.

Most used methods in GalenMain

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