This repository has been archived by the owner on Dec 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests switched to 2.0.1; added travis compilation script and updated …
…README file
- Loading branch information
1 parent
6682ca7
commit 64646bf
Showing
4 changed files
with
38 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
language: java | ||
jdk: | ||
- oraclejdk8 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- oracle-java8-installer | ||
|
||
install: true | ||
|
||
sudo: false | ||
script: | ||
- gradlew clean assemble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
# Bobcat AEM tests | ||
Contains integration tests and examples for Bobcat's AEM modules. | ||
|
||
>:warning: **Important** :warning: | ||
> | ||
>Tests in this repo are still under development to be aligned with Bobcat 2.0 - for now to make them work, you need to have a working AEM instance and should have locally compiled [Bobcat sources](https://github.com/Cognifide/bobcat) from the `2.0.0-develop` branch. | ||
Each folder contains tests for specific AEM version. | ||
|
||
# Building and running tests | ||
|
||
## Prerequisites | ||
- running instance of AEM in correct version | ||
- instance should be available at localhost:4502 with default user and password | ||
- JDK 1.8 | ||
- Mozilla Firefox and Geckodriver added to PATH | ||
|
||
## Building the project | ||
Run the following: | ||
``` | ||
./gradlew clean assembly | ||
``` | ||
|
||
## Running tests | ||
Run the following: | ||
``` | ||
./gradlew clean test | ||
``` |