This cookbook prepare virtual machine for Automated Exploratory Tests (AET).
It may be used to quickly create platform for AET demo or to setup an environment for AET development. Required artifacts are downloaded by this cookbook from AET GitHub releases page.
Because this cookbook is used for demo instances or development platforms we are not supporting a wide range of platforms. CentOS release 6.8 (Final) is supported currently.
For demo instance default recipe should be used.
For development purpose use aet::_develop
and aet::default
recipes.
The aet::_develop
recipe provides additional user used by Maven to upload AET artifacts.
Include aet
in your node's run_list
:
{
"run_list": [
"recipe[aet::_develop]",
"recipe[aet::default]"
]
}
After you have AET instance up and running you could prepare a Maven project to run AET tests. Please refer to the AET documentation on how to setup a test suite.
The cookbook installs following components required by AET:
- Karaf framework (ver 4.2.0) - OSGi environment for AET bundles
- Active MQ (ver. 5.15.2) - for communication between AET components
- Mongo DB - for storing tests results
- Apache HTTP server - for AET reports Web Application
- Browsermob (ver. 2.1.4) - proxy for collecting additional browsing data
- XVFB - for running firefox in virtual screen
- Firefox (ver. 38.6.0esr) - for collecting screenshots of pages and other data
- Tomcat (ver. 8.0.36) - for serving sample site that is used by maintenance tests
- Selenium Grid (ver. 3.14.0) - for handling tests on different browsers
Those components may be installed on separate machines provided they have been configured to work with each other. The configuration is done within Karaf Web Console.
- Karaf - Karaf Web Console should be available at
http://192.168.123.100:8181/system/console/bundles
. Default credentials:karaf/karaf
. - Active MQ - Active MQ Web Console should be available at
http://192.168.123.100:8161
Default credentials:admin/admin
. - Mongo DB -
curl -I 192.168.123.100:27017
responding with Empty response means that Mongo is listening on default port. - Apache HTTP Server - could be checked with
curl -I 192.168.123.100
- Tomcat - could be checked with
curl -I 192.168.123.100:9090
- Selenium Grid - Selenium Grid Hub should be available at
http://192.168.123.100:4444/grid/console
. Selenium Grid nodes should be listed there as well. - Browsermob - try
curl -I 192.168.123.100:8080
. Expected response is:
HTTP/1.1 404 Not Found
Cache-Control: must-revalidate,no-cache,no-store
Content-Type: text/html;charset=ISO-8859-1
Content-Length: 1267
Server: Jetty(7.3.0.v20110203)
Recipes below are presented in groups. Each group (except common) should be installed on same system.
java::default
- Installs Open JDK 8 required by other AET components. Uses JAVA cookbook, so the JAVA version might be changed with that cookbook properties.
Recipes:
aet::activemq
- creates dedicated user (configured withnode['aet']['activemq']['user']
andnode['aet']['activemq']['group']
), downloads and install binary distribution of Active MQ (using binary package fromnode['aet']['activemq']['source']
). Registers Active MQ as a service (/etc/init.d/activemq
).
Recipes:
aet::apache
- Uses Apache cookbook. Installs Apache HTTP server. Additionally creates a folder (node['aet']['apache']['log_dir']
) for apache logs and creates a link from/var/log/httpd
to that folder. Enables proxy, proxy_http and headers modules. Ifaet::_develop
recipe is used, then apache service is run with develop system user.aet::deploy_reports
- checks ifnode['aet']['version']
is currently linked as current folder. If no then downloads that version of AET reports web application and extract it intonode['aet']['apache']['report_base_dir']/aet_reports/#{ver}
. Creates a link fromnode['aet']['apache']['report_base_dir']/aet_reports/current
to the version folder. Setup virtual host for serving a content from the current folder. Ifaet::_develop
recipe is used this is done with develop user.
Recipes:
aet::karaf
- Creates dedicated system user for Karaf service. Ifaet::_develop
recipe is used, then this user is overwritten by develop user. Downloads Karaf and extracts it intonode['aet']['karaf']['root_dir']
. Creates a symbolic link fromnode['aet']['karaf']['root_dir']/current
to extracted Karaf instance. Sets the Web Console credentials inusers.properties
file and HTTP port inorg.ops4j.pax.web.cfg
file). Creates symbolic link from Karaf log dir tonode['aet']['karaf']['log_dir']
. Registers Karaf as a service (/etc/init.d/karaf
) and starts it.aet::deploy_aet_for_karaf
- Deploys AET artifacts for Karaf. This is done only for new installation or when version is changed for AET. New artifacts are downloaded and extracted. Then link with the name of 'current' is created that points to the new version folder. Then Karaf restart is scheduled. Ifaet::_develop
recipe is used this is done with develop user.aet::postdeploy_restart
- Check if karaf restart was scheduled (if/tmp/karaf-restart
file exists). If so, then stops Karaf service, deletes Karaf cache folders and starts Karaf again.aet::browsermob
- Creates dedicated user for Browsermob service. Installs Browsermob intonode['aet']['browsermob']['root_dir']
. Registers it as a service (/etc/init.d/browsermob
) and starts it.aet::firefox
- Creates dedicated user for firefox folders permissions. Downloads (fromnode['aet']['firefox']['source']
) and installs Firefox browser. Configures Firefox to use virtual display from XVFB.aet::xvfb
- Creates dedicated user for xvfb. Installs XVFB service and configures it to usenode['aet']['xvfb']['log_dir']
as log dir. The resolution for virtual screen may be set bynode['aet']['xvfb']['resolution']
. The default value is'1280x1024x24'
.
Recipes:
aet::tomcat
- Creates dedicated user for Tomcat service. Ifaet::_develop
recipe is used, then this user is overwritten by develop user. Downloads tomcat and installs it intonode['aet']['tomcat']['base_dir']
. Configures JAVA settings, tomcat port and tomcat users. Registers tomcat as a service (/etc/init.d/tomcat
) and enables it.aet::deploy_sample_site
- Checks ifnode['aet']['karaf']['root_dir']/tomcat/aet_sample_site/current
is a link to current version (node['aet']['version']
) of sample site. If not, then downloads required version, extracts it tonode['aet']['karaf']['root_dir']/tomcat/aet_sample_site/#{ver}
, creates a link from current to this version and restarts tomcat. Ifaet::_develop
recipe is used this is done with develop user.
aet::seleniumgrid_hub
- Creates dedicated user for Selenium Grid service. Ifaet::_develop
recipe is used, then this user is overwritten by develop user. Downloads selenium standalone server and installs hub intonode['aet']['selenium']['hub']['root_dir']
. Registers seleniumgrid-hub as a service (/etc/init.d/hub
), enables and starts it.
aet::seleniumgrid_node_ff
- Creates dedicated user for Selenium Grid service. Ifaet::_develop
recipe is used, then this user is overwritten by develop user. Downloads selenium standalone server and installs Selenium node innode['aet']['selenium']['node_ff']['root_dir']
. Uses existing Firefox browser/usr/bin/firefox
without gecko driver ("marionette"
set tofalse
). Registers node-ff as a service (/etc/init.d/node-ff
), enables and starts it.
aet::_develop
- Please note that this recipe is not included by default. If included it will override system users for Tomcat, Karaf and Apache with develop user. This has been done in order to enable uploads of AET artifacts to these services.
Recipes:
aet::mongo
- Installs Mongo DB with MongoDB cookbook
Recipes:
aet::display
- Installs X Window for the convenience of virtual machine users.aet::reboot
- After X Window is installed the system needs one reboot. This cookbook schedules reboot of virtual machine. The reboot is done only once.
See attributes/ folder for default values.
node['aet']['version']
- version of AET to set-up. Used by deploy recipes. (default:'3.0.0'
)node['aet']['base_link']
- base link for AET release artifacts. (default:'https://github.com/Cognifide/AET/releases/download'
)node['aet']['activemq']['root_dir']
- parent folder for Active MQ installation (default:'/opt/aet/activemq'
)node['aet']['activemq']['log_dir']
- log dir for Active MQ (default:'/var/log/activemq'
)node['aet']['activemq']['user']
- system user for Active MQ service (default:'activemq'
)node['aet']['activemq']['group']
- system group for Active MQ service (default:'activemq'
)node['aet']['activemq']['login']
- login for Active MQ Web Console (default:'admin'
)node['aet']['activemq']['password']
- password for Active MQ Web Console (default:'admin'
)node['aet']['activemq']['java_min_mem']
- min heap for Active MQ (default:'64M'
)node['aet']['activemq']['java_max_mem']
- max heap for Active MQ (default:'1024M'
)node['aet']['activemq']['java_min_perm_mem']
- min permanent space for Active MQ (default:'64M'
)node['aet']['activemq']['java_max_perm_mem']
- max permanent space for Active MQ (default:'128M'
)node['aet']['activemq']['jmx_port']
- port to use by Active MQ (default:'11199'
)node['aet']['activemq']['jmx_ip']
- IP for Active MQ JMX (default:node['ipaddress']
)node['aet']['activemq']['enable_debug']
- enables JAVA debug agent on port 5006 (default:false
)node['aet']['activemq']['src_cookbook']['env']
- source cookbook for file template of env (default:'aet'
)node['aet']['activemq']['src_cookbook']['activemq_xml']
- source cookbook for file template of activemq.xml (default:'aet'
)node['aet']['activemq']['src_cookbook']['jetty_prop']
- source cookbook for file template of jetty-realm.properties (default:'aet'
)node['aet']['activemq']['src_cookbook']['log4j_prop']
- source cookbook for file template of log4j.properties (default:'aet'
)node['aet']['apache']['report_base_dir']
- folder for AET reports web application (default:'/opt/aet/apache'
)node['aet']['apache']['log_dir']
- apache logs folder (will be linked from/var/log/httpd
) (default:'/var/log/apache'
)node['aet']['apache']['karaf_ip']
- Karaf IP that the requests will be proxied to (default:'localhost'
)node['aet']['apache']['src_cookbook']['reports_conf']
- source cookbook for file template of reports vhost (default:'aet'
)node['aet']['browsermob']['source']
- URL for browsermob proxy ZIP archivenode['aet']['browsermob']['root_dir']
- parent folder for Browsermob installation (default:'aet'
)node['aet']['browsermob']['log_dir']
- Browsermob logs folder (default:'/var/log/browsermob'
)node['aet']['browsermob']['user']
- system user for Browsermob service (default:'browsermob'
)node['aet']['browsermob']['group']
- system group for Browsermob service (default:'browsermob'
)node['aet']['browsermob']['port']
- port for Browsermob proxy (default:'8080'
)node['aet']['browsermob']['src_cookbook']['init_script']
- source cookbook for file template of browsermob init script (default:'aet'
)node['aet']['firefox']['root_dir']
- parent folder for Firefox browser installation (default:'/opt/aet/firefox'
)node['aet']['firefox']['log_dir']
- Firefox log folder path (default:'/opt/aet/firefox/log'
)node['aet']['firefox']['src_cookbook']['bin']
- source cookbook for file template of firefox start script (default:'aet'
)node['aet']['karaf']['source']
- source URL for Karaf download (default:'https://archive.apache.org/dist/karaf/4.2.0/apache-karaf-4.2.0.tar.gz'
)node['aet']['karaf']['user']
- system user for Karaf service (default:'karaf'
)node['aet']['karaf']['group']
- system group for Karaf service (default:'karaf'
)node['aet']['karaf']['login']
- login for Karaf instance (WebConsole, SSH) (default:'karaf'
)node['aet']['karaf']['password']
- password for Karaf instance (WebConsole, SSH) (default:'karaf'
)node['aet']['karaf']['root_dir']
- parent folder for Karaf installation (default:'/opt/aet/karaf'
)node['aet']['karaf']['log_dir']
- log dir for Karaf (default:'/var/log/karaf'
)node['aet']['karaf']['enable_debug']
- enables JAVA debug agent on port 5005 (default:false
)node['aet']['karaf']['web_port']
- HTTP port for Karaf (default:'8181'
)node['aet']['karaf']['ssh_port']
- SSH port for Karaf (default:'8101'
)node['aet']['karaf']['java_min_mem']
- min heap for Karaf (default:'512M'
)node['aet']['karaf']['java_max_mem']
- max heap for Karaf (default:'1024M'
)node['aet']['karaf']['java_min_perm_mem']
- min permanent space for Karaf (default:'64M'
)node['aet']['karaf']['java_max_perm_mem']
- max permanent space for Karaf (default:'128M'
)node['aet']['karaf']['src_cookbook']['setenv']
- source cookbook for file template of setenv.sh (default:'aet'
)node['aet']['karaf']['src_cookbook']['users_prop']
- source cookbook for file template of users.properties (default:'aet'
)node['aet']['karaf']['src_cookbook']['fileinstall_configs_prop']
- source cookbook for file template of org.apache.felix.fileinstall-aet_configs.cfg (default:'aet'
)node['aet']['karaf']['src_cookbook']['fileinstall_features_prop']
- source cookbook for file template of org.apache.felix.fileinstall-aet_features.cfg (default:'aet'
)node['aet']['karaf']['src_cookbook']['fileinstall_bundles_prop']
- source cookbook for file template of org.apache.felix.fileinstall-aet_bundles.cfg (default:'aet'
)node['aet']['karaf']['src_cookbook']['shell_cfg']
- source cookbook for file template of org.apache.karaf.shell.cfg (default:'aet'
)node['aet']['karaf']['src_cookbook']['ops4j_cfg']
- source cookbook for file template of org.ops4j.pax.web.cfg (default:'aet'
)node['aet']['karaf']['src_cookbook']['init_script']
- source cookbook for file template of karaf init script (default:'aet'
)node['aet']['tomcat']['base_dir']
- parent folder for Tomcat installation (default:'/opt/aet/tomcat'
)node['aet']['tomcat']['log_dir']
- log dir for Tomcat (default:'/var/log/tomcat'
)node['aet']['tomcat']['user']
- system user for Tomcat service (default:'tomcat'
)node['aet']['tomcat']['group']
- system group for Tomcat service (default:'tomcat'
)node['aet']['tomcat']['debug_enabled']
- enables JAVA debug agent on port (default:false
)node['aet']['tomcat']['debug_port']
- default value is'29090'
node['aet']['tomcat']['jmx_enabled']
- enables JMX for Tomcat (default:true
)node['aet']['tomcat']['jmx_port']
- default value is'19090'
node['aet']['tomcat']['port']
- default value is'9090'
(as 8080 is used by Browsermob)node['aet']['tomcat']['min_heap']
- min heap for Tomcat (default:'256'
)node['aet']['tomcat']['max_heap']
- max heap for Tomcat (default:'512'
)node['aet']['tomcat']['max_permsize']
- max permanent space for Tomcat (default:'256'
)node['aet']['tomcat']['connector']['maxswallowsize']
- for Tomcat maxSwallowSize (default:'2097152'
)node['aet']['tomcat']['login']
- login for Tomcat instance (i.e. Manager app) (default:'admin'
)node['aet']['tomcat']['password']
- password for Tomcat instance (i.e. Manager app) (default:'admin'
)node['aet']['tomcat']['src_cookbook']['setenv']
- source cookbook for file template of setenv.sh (default:'aet'
)node['aet']['tomcat']['src_cookbook']['server_xml']
- source cookbook for file template of server.xml (default:'aet'
)node['aet']['tomcat']['src_cookbook']['users_xml']
- source cookbook for file template of tomcat-users.xml (default:'aet'
)node['aet']['tomcat']['src_cookbook']['init_script']
- source cookbook for file template of tomcat init script (default:'aet'
)node['aet']['seleniumgrid']['user']
- system user for Selenium Grid service (default:'seleniumgrid'
)node['aet']['seleniumgrid']['group']
- system group for Selenium Grid service (default:'seleniumgrid
)node['aet']['seleniumgrid']['source']
- URL for Selenium Grid standalone server jarnode['aet']['seleniumgrid']['hub']['root_dir']
- parent folder for Selenium Grid hub installation (default:'/opt/aet/seleniumgrid/hub'
)node['aet']['seleniumgrid']['hub']['log_dir']
- Selenium Grid hub logs folder (default:'/var/log/seleniumgrid'
)node['aet']['seleniumgrid']['hub']['src_cookbook']['init_script']
- source cookbook for file template of Selenium Grid hub init script (default:'aet'
)node['aet']['seleniumgrid']['node_ff']['root_dir']
- parent folder for Selenium Grid firefox node installation (default:'/opt/aet/seleniumgrid/node-ff'
)node['aet']['seleniumgrid']['node_ff']['log_dir']
- Selenium Grid firefox node logs folder (default:'/var/log/seleniumgrid'
)node['aet']['seleniumgrid']['node_ff']['src_cookbook']['init_script']
- source cookbook for file template of Selenium Grid Firefox node init script (default:'aet'
)node['aet']['xvfb']['user']
- system user for XVFB (default:'xvfb'
)node['aet']['xvfb']['group']
- system group for XVFB (default:'xvfb'
)node['aet']['xvfb']['log_dir']
- log dir for XVFB (default:'/var/log/xvfb'
)node['aet']['xvfb']['src_cookbook']['init_script']
- source cookbook for file template of xvfb init script (default:'aet'
)node['aet']['develop']['user']
- user for develop instancenode['aet']['develop']['group']
- group for develop instancenode['aet']['develop']['ssh_password']
- hashed password for develop user (generated withopenssl passwd -1 "password"
)
In order to generate hashed password for an user please use following command:
[vagrant@aet-vagrant ~]$ openssl passwd -1 "password"
$1$WxkKLOya$9ZOsQs7YdfjZB1wsaJPkW0
[vagrant@aet-vagrant ~]$
kitchen list
command shows list of available suites. Sample test execution might look like this:
berks update
kitchen verify karaf-centos-68
To run all existing tests you cun use this command:
berks update
kitchen test --concurrency 4 --parallel
Deployment of new versions of this cookbook is managed with Stove. For Ruby on windows you can use Ruby Installer. Chef Supermarket login and key is required for new version deployment.
New version needs to be numeric in form of X.Y or X.Y.Z.
Inside the aet-cookbook
install bundler:
gem install bundle
Then install gems required by stove (which is already added to Gemfile
):
bundle install
Configure your Chef credentials (see stove configuration)
- Update
metadata.rb
file to contain the version that should be released (Cookbook Versioning Policy). - Update
CHANGELOG.md
file: provide version number for unreleased changes. - Commit and push changes. Create a GIT tag with version number i.e.
v3.1.0
.
To send the current version of cookbook to Chef supermarket run
stove --no-git --username <your username> --key <path to chef private key>
After cookbook deployment update metadata.rb
and CHANGELOG.md
files for new development lifecycle.
Authors:
- Karol Drazek (karol.drazek@cognifide.com)
- Jakub Kubiczak (jakub.kubiczak@cognifide.com)
License: Apache License, Version 2.0