Skip to content

Commit 01cfa7a

Browse files
committed
Initial commit
0 parents  commit 01cfa7a

File tree

7 files changed

+252
-0
lines changed

7 files changed

+252
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.iml
2+
.idea/
3+
.idea/libraries
4+
target/
5+
6+

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
### Demo for assertthat maven integration
2+

pom.xml

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.assertthat</groupId>
8+
<artifactId>assertthat-bdd-maven-demo</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<packaging>jar</packaging>
11+
12+
<dependencies>
13+
<dependency>
14+
<groupId>io.cucumber</groupId>
15+
<artifactId>cucumber-java</artifactId>
16+
<version>6.1.1</version>
17+
<scope>test</scope>
18+
</dependency>
19+
<dependency>
20+
<groupId>com.assertthat</groupId>
21+
<artifactId>selenium-shutterbug</artifactId>
22+
<version>0.9.3</version>
23+
</dependency>
24+
25+
<dependency>
26+
<groupId>org.seleniumhq.selenium</groupId>
27+
<artifactId>selenium-java</artifactId>
28+
<version>3.141.59</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>io.github.bonigarcia</groupId>
32+
<artifactId>webdrivermanager</artifactId>
33+
<version>4.0.0</version>
34+
</dependency>
35+
36+
37+
<dependency>
38+
<groupId>io.cucumber</groupId>
39+
<artifactId>cucumber-junit</artifactId>
40+
<version>6.1.1</version>
41+
<scope>test</scope>
42+
</dependency>
43+
44+
<dependency>
45+
<groupId>net.masterthought</groupId>
46+
<artifactId>cucumber-reporting</artifactId>
47+
<version>5.3.0</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>junit</groupId>
51+
<artifactId>junit</artifactId>
52+
<version>4.12</version>
53+
<scope>test</scope>
54+
</dependency>
55+
56+
57+
</dependencies>
58+
59+
60+
<build>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-compiler-plugin</artifactId>
65+
<version>3.7.0</version>
66+
<configuration>
67+
<encoding>UTF-8</encoding>
68+
<source>1.8</source>
69+
<target>1.8</target>
70+
<compilerArgument>-Werror</compilerArgument>
71+
</configuration>
72+
</plugin>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-failsafe-plugin</artifactId>
76+
<executions>
77+
<execution>
78+
<goals>
79+
<goal>integration-test</goal>
80+
</goals>
81+
</execution>
82+
</executions>
83+
</plugin>
84+
<!--AssertThat BDD plugin definition start-->
85+
<plugin>
86+
<groupId>com.assertthat.plugins</groupId>
87+
<artifactId>assertthat-bdd-maven-plugin</artifactId>
88+
<version>1.6</version>
89+
<configuration>
90+
<projectId>
91+
<!--Jira project id e.g. 10001-->
92+
</projectId>
93+
<!--Optional can be supplied as environment variable ASSERTTHAT_ACCESS_KEY -->
94+
<accessKey>
95+
<!-- ASSERTTHAT_ACCESS_KEY -->
96+
</accessKey>
97+
<!--Optional can be supplied as environment variable ASSERTTHAT_SECRET_KEY -->
98+
<secretKey>
99+
<!-- ASSERTTHAT_SECRET_KEY -->
100+
</secretKey>
101+
</configuration>
102+
<executions>
103+
<execution>
104+
<configuration>
105+
<!--Optional - default ./features-->
106+
<outputFolder>src/test/resources/com/assertthat/features</outputFolder>
107+
<mode>automated</mode>
108+
<!--suppress UnresolvedMavenProperty -->
109+
<!--<tags>(@smoke or @ui) and (not @slow)</tags>-->
110+
</configuration>
111+
<id>features</id>
112+
<goals>
113+
<goal>features</goal>
114+
</goals>
115+
<phase>pre-integration-test</phase>
116+
</execution>
117+
<execution>
118+
<id>report</id>
119+
<goals>
120+
<goal>report</goal>
121+
</goals>
122+
<phase>post-integration-test</phase>
123+
<configuration>
124+
<!--Optional - default ./report-->
125+
<jsonReportFolder>target/report/surefire-reports/cucumber/</jsonReportFolder>
126+
<!--Optional - default - **/*.json -->
127+
<jsonReportIncludePattern>**/cucumber.json</jsonReportIncludePattern>
128+
<metadata>{"user ": "${user.name}"}</metadata>
129+
</configuration>
130+
</execution>
131+
</executions>
132+
</plugin>
133+
<!--AssertThat BDD plugin definition end-->
134+
</plugins>
135+
</build>
136+
137+
<properties>
138+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
139+
</properties>
140+
141+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.assertthat;
2+
3+
import io.cucumber.junit.Cucumber;
4+
import io.cucumber.junit.CucumberOptions;
5+
import org.junit.runner.RunWith;
6+
7+
@RunWith(Cucumber.class)
8+
@CucumberOptions(
9+
plugin = {"pretty", "json:target/report/surefire-reports/cucumber/cucumber.json"},
10+
features = {"src/test/resources/com/assertthat/features"})
11+
public class RunCucumberIT {
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
package com.assertthat;
2+
3+
import com.assertthat.selenium_shutterbug.core.Shutterbug;
4+
import com.assertthat.selenium_shutterbug.utils.web.ScrollStrategy;
5+
import io.cucumber.java.After;
6+
import io.cucumber.java.Before;
7+
import io.cucumber.java.Scenario;
8+
import io.cucumber.java.en.Given;
9+
import io.cucumber.java.en.Then;
10+
import io.cucumber.java.en.When;
11+
import io.github.bonigarcia.wdm.WebDriverManager;
12+
import org.openqa.selenium.By;
13+
import org.openqa.selenium.Keys;
14+
import org.openqa.selenium.WebDriver;
15+
import org.openqa.selenium.WebElement;
16+
import org.openqa.selenium.chrome.ChromeDriver;
17+
18+
import javax.imageio.ImageIO;
19+
import java.awt.*;
20+
import java.io.ByteArrayOutputStream;
21+
import java.io.IOException;
22+
23+
import static org.junit.Assert.assertEquals;
24+
25+
public class StepDefinition {
26+
27+
WebDriver driver;
28+
Scenario scenario;
29+
30+
@Given("I am on Google home page")
31+
public void i_am_on_Google_home_page() throws InterruptedException {
32+
driver.get("https://google.com");
33+
driver.findElement(By.xpath("//*[text()='I agree']")).click();
34+
35+
}
36+
37+
@When("I search for {string}")
38+
public void i_search_for(String string) {
39+
driver.findElement(By.cssSelector("[name='q']")).sendKeys(string);
40+
driver.findElement(By.cssSelector("[name='q']")).sendKeys(Keys.ENTER);
41+
}
42+
43+
44+
@Then("I see that the first result is {string}")
45+
public void i_see_that_the_first_result_is(String string) throws IOException {
46+
WebElement result =
47+
driver.findElements(By.className("g")).get(0).findElement(By.tagName("h3"));
48+
assertEquals(string, result.getText().trim());
49+
}
50+
51+
@Before
52+
public void beforeScenario(Scenario sc) {
53+
scenario = sc;
54+
WebDriverManager.chromedriver().setup();
55+
driver = new ChromeDriver();
56+
}
57+
58+
@After
59+
public void afterScenario(Scenario sc) throws IOException {
60+
scenario = sc;
61+
if(sc.isFailed()) {
62+
ByteArrayOutputStream baos = new ByteArrayOutputStream();
63+
if(driver.findElements(By.className("g")).size()>0) {
64+
WebElement result =
65+
driver.findElements(By.className("g")).get(0).findElement(By.tagName("h3"));
66+
ImageIO.write(Shutterbug.shootPage(driver,
67+
ScrollStrategy.VIEWPORT_ONLY, true).highlightWithText(result,
68+
Color.RED,
69+
2, "First result text is incorrect", Color.RED, new Font("SansSerif", Font.BOLD, 20)).getImage(),
70+
"png",
71+
baos);
72+
baos.flush();
73+
scenario.attach(baos.toByteArray(), "image/png", "Search result");
74+
}
75+
}
76+
driver.quit();
77+
}
78+
}

src/test/resources/com/assertthat/.gitkeep

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# language: en
2+
@Product1 @criticals
3+
Feature: Searching for AssertThat in Google
4+
5+
I want to find AssertThat in Google search results
6+
7+
@AUTOMATED @DEMO-1 @DEMO-14
8+
Scenario: Searching for AssertThat in Google
9+
10+
Given I am on Google home page
11+
When I search for "AssertThat bdd"
12+
Then I see that the first result is "AssertThat-BDD & Cucumber for Jira | Atlassian Marketplace new"
13+

0 commit comments

Comments
 (0)