ScalaWebTest
ScalaWebTest copied to clipboard
ScalaWebTest is a library for writing ScalaTest/Selenium based integration tests for web applications. It helps you with your basic setup and provides a new and very efficient approach to testing.
ScalaWebTest is a library for writing ScalaTest/Selenium based integration tests for websites. It helps you with your basic setup and provides a new and very efficient approach to testing.
In manufacturing, it is common to use gauges (also called checking gauges or testing gauges) to verify whether a workpiece meets predefined criteria and tolerances. ScalaWebTest transfers this concept to the world of web integration testing. You can define a gauge in HTML, and use it to verify your web application. This greatly improves the readability, simplicity of your integration tests.
Read the full documentation on our website https://www.scalawebtest.org
Getting Started with development
Prerequisites
- Java >= 8
- SBT 1.x
- ChromeDriver
Get familiar with the sbt build tool because this is used to manage the project.
Compile, test, package
$ sbt compile test package
Run whole integration test
Before running the integration tests, you will need to configure WEBDRIVER_CHROME_DRIVER
environment variable. To do so, run the following command:
$ export WEBDRIVER_CHROME_DRIVER="$(which chromedriver)"
Then run the tests using the command below:
$ sbt inttest
This will start a Jetty server, executes the integration tests and stops the server again.
Start Jetty server and run single tests
If you would like to run the Jetty server and in parallel work on integration tests, and some code changes, you can do the following:
# Enter the sbt console first, enter 'sbt' in root folder
$ sbt
# Start Jetty server
sbt> jetty:start
# Or if you would like that sbt automatically restarts Jetty after code changes then do:
sbt> ~jetty:start
# Open separate command window and enter the sbt console agains
# Run a single integration tests
sbt> it:testOnly org.scalawebtest.integration.gauge.ContainsSpec
How to Release
Prerequisites
-
Create the file
~/.sbt/1.0/plugins/gpg.sbt
and add the following lineaddSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")
-
Create the file
~/sbt/1.0/global.sbt
and add the following lineGlobal / useGpg := false
or install gpg according to the sbt-pgp documentation. -
Copy the private key (Sonatype PGP Private and Public Key from our company password store), to
~/.sbt/gpg/secring.asc
-
Create the file
~/.sbt/1.0/sonatype.sbt
and add the following content, then replace username and password with your personal oss.sonatype credentials
credentials += Credentials("Sonatype Nexus Repository Manager",
"oss.sonatype.org",
"<your username>",
"<your password>")
Release
The release process of ScalaWebTest is currently done manually. The process is as follows:
- Switch the version in
build.sbt
to that which is to be released (e.g. from0.0.1-SNAPSHOT
to1.0.0
) - In your command line type in the following:
- navigate to the root folder of the ScalaWebTest git repository
-
sbt
- enters the sbt interactive mode -
+ clean
- deletes all generated files (target) -
+ test
- compiles and tests the main sources -
+ doc
- generate scaladoc -
mimaReportBinaryIssues
- execute the Migration Manager to verify binary compatibility -
inttest
- compile and run the integration tests -
+ publishSigned
- publishes all packages, sources and poms - Enter the Sonatype PGP Key Password as stored in our company password store
- Go to https://oss.sonatype.org/#stagingRepositories close and release the staging repository
-
exit
- exits the sbt interactive mode
- Commit your changes with the commit message "Release x.x.x" (e.g.
Release 1.0.0
) - Tag this commit with the release version
git tag -a x.x.x -m "x.x.x"
- Switch the version in
build.sbt
to the snapshot version (e.g. from1.0.0
to1.0.0-SNAPSHOT
) and update the documentation if needed - Finally, commit those changes with the commit message "Bump version to x.x.x-SNAPSHOT" (e.g.
Bump version to 1.0.0-SNAPSHOT
) - Push your changes, and the tag
Website
The website's parts are found in the docs
-folder of this project.
It is built using jekyll
, please see the serve_local-files
for local serving. Or use the following command:
bundle exec jekyll build
The website is deployed through Netlify. It's deployment configurations are found in netlify.tom
.
Please find the login in our company password store.