How to use ScenarioModelBuilderTest class of com.tngtech.jgiven.impl package

Best JGiven code snippet using com.tngtech.jgiven.impl.ScenarioModelBuilderTest

Source:ScenarioModelBuilderTest.java Github

copy

Full Screen

...27import java.util.List;28import org.junit.Test;29import org.junit.runner.RunWith;30@RunWith(DataProviderRunner.class)31public class ScenarioModelBuilderTest extends ScenarioTestBaseForTesting<GivenTestStep, WhenTestStep, ThenTestStep> {32 public ScenarioModelBuilder getScenarioModelBuilder() {33 ScenarioModelBuilder scenarioModelBuilder = new ScenarioModelBuilder();34 scenarioModelBuilder.setReportModel(new ReportModel());35 return scenarioModelBuilder;36 }37 public void startScenario(String title) {38 getScenario().setModel(new ReportModel());39 getScenario().startScenario(title);40 }41 @Test42 public void testAddTagDynamically() {43 ReportModel reportModel = new ReportModel();44 ScenarioModelBuilder scenarioModelBuilder = getScenarioModelBuilder();45 scenarioModelBuilder.setReportModel(reportModel);46 scenarioModelBuilder.scenarioStarted("Test");47 scenarioModelBuilder.tagAdded(DynamicTag.class, "A", "B");48 scenarioModelBuilder.tagAdded(DynamicTag.class);49 assertThat(reportModel.getTagMap()).hasSize(3);50 Iterator<Tag> iterator = reportModel.getTagMap().values().iterator();51 assertThat(iterator.next().getValues()).containsExactly("A");52 assertThat(iterator.next().getValues()).containsExactly("B");53 assertThat(iterator.next().getValues()).containsExactly("default");54 }55 @DataProvider56 public static Object[][] testData() {57 return new Object[][] {58 {5, 6, 30},59 {2, 2, 4},60 {-5, 1, -5},61 };62 }63 @Test64 @UseDataProvider("testData")65 public void test(int a, int b, int expectedResult) throws Throwable {66 String description = "values can be multiplied";67 startScenario(description);68 given().$d_and_$d(a, b);69 when().both_values_are_multiplied_with_each_other();70 then().the_result_is(expectedResult);71 getScenario().finished();72 ScenarioModel model = getScenario().getScenarioModel();73 assertThat(model.getDescription()).isEqualTo(description);74 ScenarioCaseModel case0 = model.getCase(0);75 assertThat(case0.getExecutionStatus()).isEqualTo(ExecutionStatus.SUCCESS);76 assertThat(case0.getCaseNr()).isEqualTo(1);77 assertThat(case0.getExplicitArguments()).isEmpty();78 assertThat(case0.getSteps()).hasSize(3);79 assertThat(case0.getSteps()).extracting("failed").isEqualTo(asList(false, false, false));80 assertThat(case0.getSteps()).extracting("pending").isEqualTo(asList(false, false, false));81 assertThat(case0.getSteps()).extracting("skipped").isEqualTo(asList(false, false, false));82 StepModel step0 = case0.getSteps().get(0);83 assertThat(step0.getWords()).hasSize(4);84 assertThat(step0.getCompleteSentence()).isEqualTo("Given " + a + " and " + b);85 assertThat(extractIsArg(step0.getWords())).isEqualTo(Arrays.asList(false, true, false, true));86 StepModel step2 = case0.getSteps().get(2);87 assertThat(step2.getWords()).hasSize(3);88 assertThat(extractIsArg(step2.getWords())).isEqualTo(Arrays.asList(false, false, true));89 }90 public static List<Boolean> extractIsArg(List<Word> words) {91 ArrayList<Boolean> result = Lists.newArrayList();92 for (Word word : words) {93 result.add(word.isArg());94 }95 return result;96 }97 @DataProvider98 public static Object[][] argumentTestData() {99 return new Object[][] {100 {null, "null"},101 {"Foo", "Foo"},102 {123, "123"},103 {true, "true"},104 {new String[] {"a"}, "a"},105 {new String[] {}, ""},106 {new String[][] {{"a", "b"}, {"c"}}, "a, b, c"},107 };108 }109 @Test110 @UseDataProvider("argumentTestData")111 public void testArrayArguments(Object argument, String expected) throws Throwable {112 startScenario("test");113 given().an_array(argument);114 getScenario().finished();115 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();116 assertThat(step.getWords().get(2).getValue()).isEqualTo(expected);117 }118 @Test119 public void characters_are_not_dropped_when_using_the_As_annotation() throws Throwable {120 startScenario("Scenario with a @As tag");121 given().a_step_with_a_bracket_after_a_dollar(42);122 getScenario().finished();123 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();124 assertThat(step.getCompleteSentence()).isEqualTo("Given a step with a bracket after a dollar 42 ]");125 }126 @Test127 public void As_on_overridden_methods_is_correctly_evaluated() throws Throwable {128 ExtendedGivenTestStep stage = getScenario().addStage(ExtendedGivenTestStep.class);129 startScenario("Scenario with a @As tag");130 stage.abstract_step();131 getScenario().finished();132 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();133 assertThat(step.getCompleteSentence()).isEqualTo("an overridden description");134 }135 @Test136 public void setName_is_working_correctly_on_CurrentStep() throws Throwable {137 GivenTestStep stage = getScenario().addStage(GivenTestStep.class);138 startScenario("Test Scenario");139 stage.given().a_step_that_sets_the_name();140 getScenario().finished();141 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();142 assertThat(step.getName()).isEqualTo("another name");143 assertThat(step.getCompleteSentence()).isEqualTo("given another name");144 }145 @Test146 public void setName_is_working_correctly_on_CurrentStep_with_steps_with_arguments() throws Throwable {147 GivenTestStep stage = getScenario().addStage(GivenTestStep.class);148 startScenario("Test Scenario");149 stage.given().a_step_that_sets_the_name_with_an_argument("argument");150 getScenario().finished();151 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();152 assertThat(step.getName()).isEqualTo("another name argument");153 assertThat(step.getCompleteSentence()).isEqualTo("given another name argument");154 }155 @Test156 public void setComment_is_working_correctly_on_CurrentStep() throws Throwable {157 GivenTestStep stage = getScenario().addStage(GivenTestStep.class);158 startScenario("Test Scenario");159 stage.given().a_step_that_sets_a_comment();160 getScenario().finished();161 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();162 assertThat(step.getComment()).isEqualTo("a comment");163 }164 @Test165 public void a_custom_AsProvider_can_be_used() throws Throwable {166 startScenario("Scenario with a @As tag");167 given().a_step_with_an_As_annotation_and_a_custom_provider();168 getScenario().finished();169 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();170 assertThat(step.getCompleteSentence())171 .isEqualTo("Given Custom AsProvider output: a_step_with_an_As_annotation_and_a_custom_provider");172 }173 @Test174 public void timings_are_evaluated_with_filler_words() throws Throwable {175 startScenario("nasiges");176 given().something().and().something_else();177 getScenario().finished();178 ScenarioModel scenarioModel = getScenario().getScenarioModel();179 }180 @Test181 public void camel_case_is_supported_in_steps() throws Throwable {182 startScenario("Scenario camel case steps");183 given().aStepInCamelCase();184 getScenario().finished();185 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();186 assertThat(step.getCompleteSentence()).isEqualTo("Given a step in camel case");187 }188 @Test189 public void camel_case_is_supported_in_steps_with_parameters() throws Throwable {190 startScenario("Scenario camel case steps with parameter");191 given().aStepInCamelCaseWithA$Parameter("dollar");192 getScenario().finished();193 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();194 assertThat(step.getCompleteSentence()).isEqualTo("Given a step in camel case with a dollar parameter");195 }196 @Test197 public void all_uppercase_steps_are_formatted_correctly() throws Throwable {198 startScenario("Scenario with all uppercase step");199 given().ALLUPPERCASE();200 getScenario().finished();201 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();202 assertThat(step.getCompleteSentence()).isEqualTo("Given ALLUPPERCASE");203 }204 @Test205 public void the_Description_annotation_on_intro_words_is_evaluated() throws Throwable {206 startScenario("Scenario with an @As annotation");207 given().an_intro_word_with_an_as_annotation().something();208 getScenario().finished();209 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();210 assertThat(step.getWords().get(0).getValue()).isEqualTo("another description");211 }212 @Test213 public void filler_words_are_prepended_to_stage_methods() throws Throwable {214 startScenario("Scenario with filler words");215 given().there().is().something();216 getScenario().finished();217 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();218 assertThat(step.getCompleteSentence()).isEqualTo("Given there is something");219 }220 @Test221 public void the_Description_annotation_on_filler_words_is_evaluated() throws Throwable {222 startScenario("Scenario with @As annotation on filler words");223 given().a().filler_word_with_an_as_annotation().and_with().something_else();224 getScenario().finished();225 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();226 assertThat(step.getCompleteSentence()).isEqualTo("Given a Filler Word and with something else");227 }228 @Test229 public void filler_words_can_be_joined_to_previous_words() throws Throwable {230 startScenario("Scenario with filler word joined to a previous word");231 given().there().is().something_filled().comma().another().something_filled().and_with().something_else();232 getScenario().finished();233 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();234 assertThat(step.getCompleteSentence())235 .isEqualTo("Given there is something filled, another something filled and with something else");236 }237 @Test238 public void filler_words_can_surround_words() throws Throwable {239 startScenario("Scenario with filler words surrounding a word");240 given().there().is().open_bracket().something().close_bracket();241 getScenario().finished();242 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();243 assertThat(step.getCompleteSentence())244 .isEqualTo("Given there is (something)");245 }246 @Test247 public void filler_words_can_be_used_at_the_end_of_a_sentence() throws Throwable {248 startScenario("Scenario with filler words at the end of sentences");249 given().something().colon().and().something_else().full_stop();250 getScenario().finished();251 StepModel firstStep = getScenario().getScenarioCaseModel().getFirstStep();252 StepModel secondStep = getScenario().getScenarioCaseModel().getStep(1);253 assertThat(firstStep.getCompleteSentence()).isEqualTo("Given something:");254 assertThat(secondStep.getCompleteSentence()).isEqualTo("and something else.");255 }256 @Test257 public void printf_annotation_uses_the_PrintfFormatter() throws Throwable {258 startScenario("printf_annotation_uses_the_PrintfFormatter");259 given().a_step_with_a_printf_annotation_$(5.2);260 getScenario().finished();261 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();262 assertThat(step.getWords().get(2).getFormattedValue()).isEqualTo(String.format("%.2f", 5.2));263 }264 @Test265 public void testTagEquals() {266 assertThat(new Tag("test", "1")).isEqualTo(new Tag("test", "1"));267 }268 abstract static class AbstractStage {269 public abstract void abstract_step();270 }271 static class ConcreteStage extends AbstractStage {272 @Override273 public void abstract_step() {274 }275 }276 @Test277 public void abstract_steps_should_appear_in_the_report_model() throws Throwable {278 ConcreteStage stage = addStage(ConcreteStage.class);279 startScenario("Test");280 stage.abstract_step();281 getScenario().finished();282 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();283 assertThat(step.getWords().get(0).getFormattedValue()).isEqualTo("abstract step");284 }285 @Test286 public void DoNotIntercept_methods_are_not_appearing_in_the_report() throws Throwable {287 DoNotInterceptClass stage = addStage(DoNotInterceptClass.class);288 startScenario("Test");289 stage.do_not_intercept();290 stage.normal_step();291 getScenario().finished();292 StepModel step = getScenario().getScenarioCaseModel().getFirstStep();293 assertThat(step.getWords().get(0).getFormattedValue()).isEqualTo("normal step");294 }295 static class DoNotInterceptClass {296 @DoNotIntercept297 public void do_not_intercept() {298 }299 public void normal_step() {300 }301 }302 @Test303 public void error_message_is_correctly_stored() throws Throwable {304 FailingTestStage stage = addStage(FailingTestStage.class);305 startScenario("Test");306 stage.a_failing_test();307 try {308 getScenario().finished();309 } catch (Exception ignore) {310 // exception is ignored on purpose311 }312 ScenarioCaseModel scenarioCaseModel = getScenario().getScenarioCaseModel();313 assertThat(scenarioCaseModel.getErrorMessage()).isEqualTo("java.lang.IllegalArgumentException: test error");314 assertThat(scenarioCaseModel.getStackTrace().get(0)).matches(315 "com.tngtech.jgiven.impl.ScenarioModelBuilderTest\\$FailingTestStage.a_failing_test\\(ScenarioModelBuilderTest.java:\\d+\\)");316 }317 static class FailingTestStage {318 FailingTestStage a_failing_test() {319 throw new IllegalArgumentException("test error");320 }321 }322 static class ExtendedGivenTestStep extends AbstractStage {323 @Override324 @As("an overridden description")325 public void abstract_step() {326 }327 }328 @IsTag(value = "default")329 @Retention(RetentionPolicy.RUNTIME)...

Full Screen

Full Screen

ScenarioModelBuilderTest

Using AI Code Generation

copy

Full Screen

1 public void testScenarioModelBuilder() {2 ScenarioModelBuilderTest scenarioModelBuilderTest = new ScenarioModelBuilderTest();3 ScenarioModel scenarioModel = scenarioModelBuilderTest.getScenarioModel();4 System.out.println(scenarioModel);5 }6}7package com.tngtech.jgiven.example;8import com.tngtech.jgiven.Stage;9import com.tngtech.jgiven.annotation.ExpectedScenarioState;10import com.tngtech.jgiven.annotation.ProvidedScenarioState;11import com.tngtech.jgiven.annotation.ScenarioState;12import com.tngtech.jgiven.annotation.Table;13import com.tngtech.jgiven.annotation.TableHeader;14import com.tngtech.jgiven.annotation.TableRow;15import com.tngtech.jgiven.annotation.TableRows;16import com.tngtech.jgiven.report.model.ScenarioModel;17import com.tngtech.jgiven.report.model.StepModel;18import com.tngtech.jgiven.report.model.Tag;19import com.tngtech.jgiven.report.model.Tags;20import com.tngtech.jgiven.report.model.Word;21import com.tngtech.jgiven.report.model.WordList;22import com.tngtech.jgiven.report.model.WordType;23import com.tngtech.jgiven.tags.FeatureReport;24import com.tngtech.jgiven.tags.FeatureTestFramework;25import com.tngtech.jgiven.tags.Issue;26import com.tngtech.jgiven.tags.IssueDsl;27import com.tngtech.jgiven.tags.IssueReport;28import com.tngtech.jgiven.tags.IssueTestFramework;29import com.tngtech.jgiven.tags.IssueTestFrameworkDsl;30import com.tngtech.jgiven.tags.IssueTestFrameworkDslReport;31import com.tngtech.jgiven.tags.IssueTestFrameworkReport;32import com.tngtech.jgiven.tags.IssueTestFrameworkReportDsl;33import com.tngtech.jgiven.tags.IssueTestFrameworkReportDslReport

Full Screen

Full Screen

ScenarioModelBuilderTest

Using AI Code Generation

copy

Full Screen

1ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();2test.given().a_scenario_model_builder();3test.when().a_step_is_added();4test.then().the_step_is_added_to_the_scenario_model();5test.scenarioModelBuilderTest();6ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();7test.given().a_scenario_model_builder();8test.when().a_step_is_added();9test.then().the_step_is_added_to_the_scenario_model();10test.scenarioModelBuilderTest();11ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();12test.given().a_scenario_model_builder();13test.when().a_step_is_added();14test.then().the_step_is_added_to_the_scenario_model();15test.scenarioModelBuilderTest();16ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();17test.given().a_scenario_model_builder();18test.when().a_step_is_added();19test.then().the_step_is_added_to_the_scenario_model();20test.scenarioModelBuilderTest();21ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();22test.given().a_scenario_model_builder();23test.when().a_step_is_added();24test.then().the_step_is_added_to_the_scenario_model();25test.scenarioModelBuilderTest();26ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();27test.given().a_scenario_model_builder();28test.when().a_step_is_added();29test.then().the_step_is_added_to_the_scenario_model();30test.scenarioModelBuilderTest();31ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();32test.given().a_scenario_model_builder();33test.when().a_step_is_added();34test.then().the_step_is_added_to_the_scenario_model();35test.scenarioModelBuilderTest();36ScenarioModelBuilderTest test = new ScenarioModelBuilderTest();37test.given().a_scenario_model_builder();38test.when().a_step_is_added();

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.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful