Simple Spark Java app with support for Selenium testing. The App serves Chuck Norris jokes in a Web application.
Runs on (tested on):
- ✓ Windows (8.1, x86)
- ✓ Mac OS (Mavericks)
- ✓ Linux (Ubuntu 14.04 and Ubuntu Server 12.04)
index.html | specific.html |
---|---|
- Java JDK (openjdk-7-jdk recommended) installed and accessible in the PATH
git clone
this repo../gradlew run
in the repo's base folder (gradlew run
on Windows).- Check out a random joke on localhost:4567.
- Check out a specific joke (number 5) on localhost:4567/id/5.
To run SparkApp on another port ID on a *nix OS, export PORT environmental variable to a valid integer port and it will be used.
export PORT=1337
./gradlew run
./gradlew test
- simple enough. Or./gradlew check
. On Windowsgradlew check
works well.
- For running locally on your MacOS/Linux/Windows computer, you'll need to install Firefox 28.0
- Newer versions might work, but 28.0 will work, so ...
- You can grab Firefox 28.0 here.
- Friendly note: Make sure autoupdate is turned off.
- For all systems you must expose Firefox in your path (how to do so depends on what OS you are running, so please Bing for answers).
- For running on Servers (GreenQloud for example) where you do not have a GUI, you'll need to install X Virtual Frame Buffer (xvfb) and additional packages and Firefox 28.0.
sudo apt-get install -y xvfb
sudo apt-get install -y xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic
sudo apt-get install -y firefox=28.0+build2-0ubuntu2
- For running on Windows:
- Java JDK 7 in your Path (Example
C:\Program Files\Java\openjdk-7.0.71\bin
) - Firefox 28.0 needs to be accesible from the Command Line
- Java JDK 7 in your Path (Example
Note if installing firefox on the server doesn't work, you can do the following on *nix:
sudo apt-get purge firefox
cd /tmp
wget https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/28.0/linux-x86_64/en-US/firefox-28.0.tar.bz2
tar xvjf firefox-28.0.tar.bz2
sudo mv firefox/ /opt/firefox28
sudo ln -s /opt/firefox28/firefox /usr/bin/firefox
- Locally just do
./gradlew selenium
orgradlew selenium
on Windows. - Headless mode on servers:
./gradlew seleniumXvfb
- Stop Java processes after run:
sudo killall -9 java
Gradle creates test reports for us. Look at the build/reports
folder for more sweet Gradle juice.