diff --git a/.gitignore b/.gitignore index 3395fa5e3..150e6daf6 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,9 @@ build/ ### Gradle Patch ### **/build/ + +# Dev Environment +/dev-env/bundles/*.jar +/dev-env/features/*.xml +/dev-env/report/* +!dev-env/report/README.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7ca9e34a9..acc983843 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,15 @@ Thank you for taking the time to contribute! We appreciate all commits and improvements, feel free to join AET community and contribute. ## How to start -Please refer to [AET Documentation](https://github.com/wttech/aet/wiki) to see how to setup local environment. +To build and develop AET you will need installed: +- JDK 8 +- Maven or Gradle +- Docker (to run dev instance) +- shell command line (Linux preffered) + +### Development +See the instructions in the [Dev Environment](https://github.com/wttech/aet/tree/master/dev-env) to see how to setup local environment. + Submit a ticket for your issue, assuming one does not already exist. - Clearly describe the issue including steps to reproduce when it is a bug. diff --git a/build.gradle.kts b/build.gradle.kts index a8d7a2acd..4952eb2b4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -52,6 +52,9 @@ tasks.rat { excludes.add("**/gradle.properties") excludes.add("**/gradle-wrapper.properties") + // dev environment + excludes.add("**/dev-env/**") + // sample-site excludes.add("**/integration-tests/sample-site/src/main/resources/mock/**/*.html") excludes.add("**/integration-tests/sample-site/src/main/webapp/assets/demo_files/accessibility/bootstrap.css") diff --git a/dev-env/README.md b/dev-env/README.md new file mode 100644 index 000000000..46829f5d9 --- /dev/null +++ b/dev-env/README.md @@ -0,0 +1,76 @@ +# Dev AET instance with Docker Swarm +This directory contains Docker Swarm configuration that enables running AET developer environment. It base on AET Docker images from https://github.com/malaskowski/aet-docker. + +Make sure you have installed: +- Java 8 (newer JDK versions are not supported) +- Maven or Gradle +- Docker +- shell command line (Linux preffered) + +## Running dev environment +In order to be able to easily deploy AET artifacts on your docker instance follow these steps: + +1. Make sure your Docker instance meets the [prerequisites](https://github.com/malaskowski/aet-docker#prerequisites). +2. Checkout this repository. +3. Prepare the instance (TODO: this step can be automated and wrapped with a single Gralde task): + - From the root folder of this repo run `./gradlew :zip:makeZip` or `mvn clean install -Pzip` to build the whole AET project and all its artifacts. It may take some time when running for the first time. + - Copy AET `bundles` and `features` artifacts from `zip` directory to the corresponding dev-environment directories. + - Hint: Until it is automated in a better way, you may use this command to copy neccessary artifacts (run from the repo root dir) depending on build tool: + - Maven: + - `rm dev-env/bundles/*.jar && cp zip/target/*.jar dev-env/bundles` + - `rm dev-env/features/*.xml && cp zip/target/aet-*.xml dev-env/features` + - Gradle: + - `rm dev-env/bundles/*.jar && cp zip/build/packages/bundles/*.jar dev-env/bundles` + - `rm dev-env/features/*.xml && cp zip/build/packages/features/aet-*.xml dev-env/features` +4. From `dev-environment` directory run `docker stack deploy -c aet-swarm-dev.yml aet-dev`. It may take ~1-2 minutes until instance is ready to work. + +## Development + +### AET Core (bundles) +This scenario shows how to update your AET Docker Swarm dev instance with changes made to any of AET bundles that runs on Karaf. + +1. Hack, hack, hack. +2. Build the module you updated, e.g. `core/jobs`. +3. Rename the `jar` file so that it does not contain the version and replace existing `jar` in `dev-environment/bundles`. Karaf should auto-discover changes and reload the bundle in a short period. + - If you changed configuration, don't forget to update corresponding `.cfg` file in the `configs` directory. + - If you added new dependencies remember to update `osgi-dependencies/aet-features.xml` and updating this file in `dev-den/features` so that Karaf can download dependencies for your bundle. + - Avoid duplicated bundles (hence the renaming of single module jar). All jar files are renamed by the build tools when building the distribution (`zip` module). + +### Report +- ToDo + +## Troubleshooting +See https://github.com/malaskowski/aet-docker#troubleshooting + +## Directory structure +``` +. +├── aet-swarm-dev.yml +├── bundles +│ ├── aet-module-1.jar +│ ├── ... +│ └── aet-module-9.jar +├── configs +│ ├── com.cognifide.aet.cleaner.CleanerScheduler-main.cfg +│ └── ... +├── features +│ └── aet-features.xml +├── report +└── secrets + └── KARAF_EXAMPLE_SECRET +``` + +- `aet-swarm-dev.yml` - this file contains configuration file to run AET using Docker Swarm +- `bundles` - directory mounted to the `/aet/core/bundles` in the Karaf service, where Karaf search for AET [OSGi bundles](https://en.wikipedia.org/wiki/OSGi#Bundles) (see [Karaf's Dockerfile](https://github.com/malaskowski/aet-docker/blob/master/karaf/Dockerfile)) +- `configs` - directory mounted to the `/aet/custom/configs` in the Karaf service, contains OSGi configs in form of `.cfg` files +- `features` - directory mounted to the `/aet/core/features` in the Karaf service, contains [Karaf provisioning](https://karaf.apache.org/manual/latest/provisioning) configuration files - called features +- `report` - directory that may contain AET report application, if mounted to `/usr/local/apache2/htdocs` volume in the Report service, it will override default [AET Report application](https://github.com/wttech/aet/tree/master/report) +- `secrets` - directory contains example [Docker secret](https://docs.docker.com/engine/swarm/secrets/) files. They are scanned before Karaf starts and exported as environment variables. Read more in the [secrets configuration](https://github.com/malaskowski/aet-docker#docker-secrets). + +## Karaf healthcheck +Karaf's service in this sample docker instance have [healthcheck](https://docs.docker.com/compose/compose-file/#healthcheck). It simply checks the dedicated service's endpoint `/health-check` that responses with `200` when everything is ready, with error code otherwise. If the healthcheck fails, swarm will automatically restart the service. +Read more about this endpoint here: https://fabric8.io/guide/karaf.html#fabric8-karaf-health-checks + +# ToDo: +- [ ] Improve building and deploying to dev instance experience by automating it (e.g. wrap with a single Gradle task that can deploy AET artifacts onto dev-environment). +- [ ] Fix AET versioning with Gradle, currently the version is magically calculated by the [axion-release-plugin](https://axion-release-plugin.readthedocs.io/en/latest) and hardcoded in some manifests (e.g. [here](https://github.com/wttech/aet/blob/master/api/communication-api/build.gradle.kts#L28)). \ No newline at end of file diff --git a/dev-env/aet-swarm-dev.yml b/dev-env/aet-swarm-dev.yml new file mode 100644 index 000000000..922a97c9b --- /dev/null +++ b/dev-env/aet-swarm-dev.yml @@ -0,0 +1,124 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +version: '3.7' + +networks: + private: + driver: overlay + +volumes: + mongo-data: + +services: + hub: + image: selenium/hub:3.14.0-arsenic + ports: + - '4444:4444' + deploy: + mode: global + placement: + constraints: + - node.role == manager + networks: + - private + + chrome: + image: selenium/node-chrome:3.14.0-arsenic + volumes: + - /dev/shm:/dev/shm # Mitigates the Chromium issue described at https://code.google.com/p/chromium/issues/detail?id=519952 + depends_on: + - hub + environment: + - HUB_HOST=hub + - HUB_PORT=4444 + - NODE_MAX_INSTANCES=1 + - NODE_MAX_SESSION=1 + entrypoint: bash -c 'SE_OPTS="-host $$HOSTNAME -port 5556" /opt/bin/entry_point.sh' + deploy: + replicas: 3 + networks: + - private + + mongo: + image: mongo:3.6 + command: mongod --enableMajorityReadConcern + deploy: + placement: + constraints: + - node.role == manager + restart_policy: + condition: on-failure + delay: 5s + max_attempts: 3 + window: 120s + volumes: + - mongo-data:/data/db + ports: + - '27017:27017' + networks: + - private + + activemq: + image: malaskowski/aet_activemq:1.0.0 + ports: + - '8161:8161' + networks: + - private + + browsermob: + image: malaskowski/aet_browsermob:1.0.0 + ports: + - '8080:8080' + - '8281-8681:8281-8681' + networks: + - private + + karaf: + image: malaskowski/aet_karaf:1.0.0 + depends_on: + - hub + - activemq + volumes: + - ./bundles:/aet/core/bundles + - ./configs:/aet/custom/configs + - ./features:/aet/core/features + secrets: + - KARAF_EXAMPLE_SECRET + ports: + - '8181:8181' + # - '5005:5005' # uncomment to be able to connect Karaf in debug mode + # environment: + # - KARAF_DEBUG=true # uncomment (with section above) to start Karaf in debug mode + networks: + - private + + report: + image: malaskowski/aet_report:1.0.0 + ports: + - '9999:80' + # volumes: + # - ./report:/usr/local/apache2/htdocs + # environment: + # - AET_WEB_API=http://my.karaf.com # uncomment to configure custom AET Web API endpoint + networks: + - private + +secrets: + KARAF_EXAMPLE_SECRET: + file: secrets/KARAF_EXAMPLE_SECRET \ No newline at end of file diff --git a/dev-env/bundles/README.md b/dev-env/bundles/README.md new file mode 100644 index 000000000..d789d9282 --- /dev/null +++ b/dev-env/bundles/README.md @@ -0,0 +1 @@ +# AET bundles \ No newline at end of file diff --git a/vagrant/metadata.rb b/dev-env/configs/com.cognifide.aet.cleaner.CleanerScheduler-main.cfg similarity index 62% rename from vagrant/metadata.rb rename to dev-env/configs/com.cognifide.aet.cleaner.CleanerScheduler-main.cfg index 3372d3993..ef856d0fa 100644 --- a/vagrant/metadata.rb +++ b/dev-env/configs/com.cognifide.aet.cleaner.CleanerScheduler-main.cfg @@ -1,7 +1,7 @@ # -# AET +# AET Docker # -# Copyright (C) 2013 Cognifide Limited +# Copyright (C) 2018 Maciej Laskowski # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,12 +16,7 @@ # limitations under the License. # -name 'aet-vagrant' -maintainer 'Karol Drazek' -maintainer_email 'karol.drazek@cognifide.com' -license 'Apache 2.0' -description 'Installs/Configures aet-vagrant' -long_description 'Installs/Configures aet-vagrant' -version '2.1.6' - -depends 'aet', '~> 5.1.1' +schedule=0 0 22 ? * * +keepNVersions=2 +removeOlderThan=1 +dryRun=false diff --git a/vagrant/Berksfile b/dev-env/configs/com.cognifide.aet.proxy.RestProxyManager.cfg similarity index 59% rename from vagrant/Berksfile rename to dev-env/configs/com.cognifide.aet.proxy.RestProxyManager.cfg index 199a425a2..2eaca2406 100644 --- a/vagrant/Berksfile +++ b/dev-env/configs/com.cognifide.aet.proxy.RestProxyManager.cfg @@ -1,7 +1,7 @@ # -# AET +# AET Docker # -# Copyright (C) 2013 Cognifide Limited +# Copyright (C) 2018 Maciej Laskowski # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,12 +16,5 @@ # limitations under the License. # -source "https://supermarket.chef.io" - -# Uncomment one of the below lines to use aet cookbook from alternative location. -# And update the cookbook required version in 'metadata.rb' file. - -cookbook 'aet', git: 'https://github.com/wttech/aet-cookbook.git', branch: 'master' -#cookbook 'aet', path: '../../aet-cookbook' - -metadata +server=browsermob +port=8080 diff --git a/dev-env/configs/com.cognifide.aet.queues.DefaultJmsConnection.cfg b/dev-env/configs/com.cognifide.aet.queues.DefaultJmsConnection.cfg new file mode 100644 index 000000000..e8d2dcdbb --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.queues.DefaultJmsConnection.cfg @@ -0,0 +1,21 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +url=failover:tcp://activemq:61616 +username=admin +password=admin diff --git a/dev-env/configs/com.cognifide.aet.rest.helpers.ReportConfigurationManager.cfg b/dev-env/configs/com.cognifide.aet.rest.helpers.ReportConfigurationManager.cfg new file mode 100644 index 000000000..734a913fc --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.rest.helpers.ReportConfigurationManager.cfg @@ -0,0 +1,19 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +reportDomain=http://localhost:9999 diff --git a/dev-env/configs/com.cognifide.aet.runner.MessagesManager.cfg b/dev-env/configs/com.cognifide.aet.runner.MessagesManager.cfg new file mode 100644 index 000000000..045a28aa0 --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.runner.MessagesManager.cfg @@ -0,0 +1,19 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +jmxUrl=service:jmx:rmi:///jndi/rmi://activemq:11199/jmxrmi diff --git a/dev-env/configs/com.cognifide.aet.runner.RunnerConfiguration.cfg b/dev-env/configs/com.cognifide.aet.runner.RunnerConfiguration.cfg new file mode 100644 index 000000000..6248d0c60 --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.runner.RunnerConfiguration.cfg @@ -0,0 +1,23 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +ft=120 +mttl=300 +urlPackageSize=1 +maxMessagesInCollectorQueue=3 +maxConcurrentSuitesCount=2 diff --git a/dev-env/configs/com.cognifide.aet.vs.mongodb.MongoDBClient.cfg b/dev-env/configs/com.cognifide.aet.vs.mongodb.MongoDBClient.cfg new file mode 100644 index 000000000..fd66135c7 --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.vs.mongodb.MongoDBClient.cfg @@ -0,0 +1,20 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +mongoURI=mongodb://mongo +allowAutoCreate=true diff --git a/dev-env/configs/com.cognifide.aet.worker.drivers.chrome.ChromeWebDriverFactory.cfg b/dev-env/configs/com.cognifide.aet.worker.drivers.chrome.ChromeWebDriverFactory.cfg new file mode 100644 index 000000000..6182a8717 --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.worker.drivers.chrome.ChromeWebDriverFactory.cfg @@ -0,0 +1,33 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the License); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an AS IS BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +name = "chrome" +seleniumGridUrl = "http://hub:4444/wd/hub" +chromeOptions = [ \ + "--disable-plugins", \ + "--headless", \ + "--hide-scrollbars", \ + "--disable-gpu", \ + "start-maximized", \ + "enable-automation", \ + "--no-sandbox", \ + "--disable-infobars", \ + "--disable-dev-shm-usage", \ + "--disable-browser-side-navigation", \ + "--dns-prefetch-disable", \ + ] diff --git a/dev-env/configs/com.cognifide.aet.worker.listeners.WorkersListenersService.cfg b/dev-env/configs/com.cognifide.aet.worker.listeners.WorkersListenersService.cfg new file mode 100644 index 000000000..48c54c26c --- /dev/null +++ b/dev-env/configs/com.cognifide.aet.worker.listeners.WorkersListenersService.cfg @@ -0,0 +1,22 @@ +# +# AET Docker +# +# Copyright (C) 2018 Maciej Laskowski +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +collectorPrefetchSize=1 +collectorInstancesNo=3 +comparatorPrefetchSize=1 +comparatorInstancesNo=5 diff --git a/dev-env/features/README.md b/dev-env/features/README.md new file mode 100644 index 000000000..0b919b011 --- /dev/null +++ b/dev-env/features/README.md @@ -0,0 +1 @@ +# AET features files \ No newline at end of file diff --git a/dev-env/report/README.md b/dev-env/report/README.md new file mode 100644 index 000000000..3a67eba28 --- /dev/null +++ b/dev-env/report/README.md @@ -0,0 +1 @@ +# Put AET report app here, it will override the default app. \ No newline at end of file diff --git a/dev-env/secrets/KARAF_EXAMPLE_SECRET b/dev-env/secrets/KARAF_EXAMPLE_SECRET new file mode 100644 index 000000000..6e78edc8b --- /dev/null +++ b/dev-env/secrets/KARAF_EXAMPLE_SECRET @@ -0,0 +1 @@ +ex@mpl3-s3cret-v4lue \ No newline at end of file diff --git a/documentation/src/main/wiki/AETIn10Minutes.md b/documentation/src/main/wiki/AETIn10Minutes.md index 4060c7ea2..915e7ad2d 100644 --- a/documentation/src/main/wiki/AETIn10Minutes.md +++ b/documentation/src/main/wiki/AETIn10Minutes.md @@ -4,7 +4,7 @@ This is a quick guide showing how to setup the AET environment and run a sample ### Environment setup -See [[Basic Setup|BasicSetup]] guide. +See [[Environment Setup|EnvironmentSetup]] guide. ### Set Up the Test @@ -43,13 +43,14 @@ Then download the AET [shell script](https://github.com/wttech/aet/blob/master/c ### Run the Test -Once you have both `suite.xml` and `aet.sh` files in the same directory, open a command prompt in that directory and execute following command: +Assuming you have the woring instance of AET under https://my-aet-domain and both `suite.xml` and `aet.sh` files in the same directory, +open a command prompt in that directory and execute following command: ``` -./aet.sh http://localhost:8181 +./aet.sh https://my-aet-domain ``` If your suite file is not named `suite.xml` or it's in a different directory than `aet.sh`, you need to specify the suite path: ``` -./aet.sh http://localhost:8181 path/to/my-suite.xml +./aet.sh https://my-aet-domain path/to/my-suite.xml ``` ### Check Results @@ -57,25 +58,11 @@ If your suite file is not named `suite.xml` or it's in a different directory tha At the end of script output, there's a generated report URL, e.g.: ``` Report url: -http://aet-vagrant/report.html?company=company&project=project&correlationId=company-project-test-suite-1535375408860 +https://my-aet-domain/report.html?company=company&project=project&correlationId=company-project-test-suite-1535375408860 ``` Open the report URL in your browser to see the test results. Congratulations! You have successfully created and run your first AET test. -### Build and Upload the Application -You need JDK 8 and Maven 3.3.1 or newer to build the AET application. -To build and upload the application use the following command in the application root: -``` -mvn clean install -P upload -``` - -#### Upload Vagrant Prequisities: -In order to be able to deploy bundles to the Karaf instance define the location of the vagrant vm in your `settings.xml` file (`$USER_HOME/.m2`): -``` - - aet-vagrant-instance - developer - developer - -``` +### AET Development +See the [Contributing guide](https://github.com/wttech/aet/blob/master/CONTRIBUTING.md) diff --git a/documentation/src/main/wiki/AdvancedSetup.md b/documentation/src/main/wiki/AdvancedSetup.md deleted file mode 100644 index d3615117f..000000000 --- a/documentation/src/main/wiki/AdvancedSetup.md +++ /dev/null @@ -1,82 +0,0 @@ -### Advanced Setup - -This section describes advanced setup of AET using Linux and Windows. - -Please note that full list of required tools and its versions can be found in [[System Components|SystemComponents]] section. - -![aet-setup-advanced](assets/diagrams/aet-setup-advanced-grid-scaled.png) - -#### Linux Setup - -For Linux environment setup, use the [AET Cookbook](https://github.com/wttech/aet-cookbook) which provides following services: -* Karaf with AET service running -* MongoDB as the database -* ActiveMQ as the message broker -* BrowserMob as the proxy server -* Selenium Grid Hub (that later Windows nodes will be attached to) -* Apache Server with the Report app - -#### Windows Setup - -**Prerequisites** - * [Chrome browser](https://www.google.com/chrome/browser/desktop/) - * [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) (version 2.40 or newer) - * [Selenium Standalone Server](http://www.seleniumhq.org/download/) (version 3.41 or newer) - -**Start Selenium Grid node** - -Run following command to start selenium grid node process on windows machine: -``` -java -Dwebdriver.chrome.driver="" -jar -role node -hub http://:4444/grid/register -browser "browserName=chrome,maxInstances=20" -maxSession 20 -``` -> Running the selenium grid node process as a Windows service is not recommended - it's causing some -issues for driver which runs Chrome in headless mode. However this issue does not occur if you -configure the node process as a Windows startup program. - -**Optional Software** - -On Windows you can also install [Baretail](https://www.baremetalsoft.com/baretail/) and [Notepad++](https://notepad-plus-plus.org/download/) for viewing logs and configuration files. - -#### OSGi Configuration - -This section describes how to configure the AET OSGi services so that they could connect to the appropriate system components. -The services are configured through the Karaf Web Console which is hosted on Linux machine. Assuming that this machine's IP address is `192.168.0.1`, -the Karaf console is available under following address: http://192.168.0.1:8181/system/console/configMgr. - -##### Connections configuration - -Assuming that most of the system components are running on a single machine -(e.g. provisioned by [AET Cookbook](https://github.com/wttech/aet-cookbook)) then those -components can work correctly either with default `localhost` configurations, -or with a configuration that points to Linux machine IP. -Those configurations are: -* ActiveMQ broker URL in `AET JMS Connection` -* ActiveMQ JMX endpoint UR in `Messages Manager Configuration` -* Mongo URI property in `AET MongoDB Client` -* Selenium Grid URL property in `AET Chrome WebDriver Factory` - -OSGi configurations which need to be configured with environment-specific values are: -* `AET Rest Proxy Manager` - the `server` property needs to be set to IP address of the Linux machine. This address is used -by the Selenium Grid nodes and needs to be accessible for the Windows machine(s). -* `AET Report Application Configuration` - the `reportDomain` property should be set to a domain -of Apache server which hosts the AET Report application - e.g. `http://aet-report` - -##### Collectors and comparators configuration - -The service is **AET Workers Listeners Service**. -To enable proper working of AET instance, you should configure at least 1 collector and 1 comparator. - -| Property name | Default value | Comment | -| ------------- | ----- | ----- | -| Number of collector instances | `5` | Might be overwritten by env variable `COLLECTORS_NO` | -| Collectors prefetch size | `1` | Read more [here](http://activemq.apache.org/what-is-the-prefetch-limit-for.html) | -| Number of comparator instances | `5` | Might be overwritten by env variable `COMPARATORS_NO` | -| Comparators prefetch size | `1` | Read more [here](http://activemq.apache.org/what-is-the-prefetch-limit-for.html) | - -> **Important note** -> Number of collector instances should be the number of browsers available through all Selenium Grid Nodes. - -##### Chrome options configuration - -The `AET Chrome WebDriver Factory` component configuration (`chromeOptions` property) allows you to configure a list of options/arguments -which will be passed to the Chrome browser binary. The default list of Chrome options is: `--disable-plugins`, `--headless`, `--hide-scrollbars`, `--disable-gpu`. diff --git a/documentation/src/main/wiki/BasicSetup.md b/documentation/src/main/wiki/BasicSetup.md deleted file mode 100644 index f121d64d5..000000000 --- a/documentation/src/main/wiki/BasicSetup.md +++ /dev/null @@ -1,70 +0,0 @@ -### Basic Setup - -This setup makes use of the Vagrant module, a pseudo-cookbook which is responsible for local environment provisioning using Vagrant (powered by Chef + Berkshelf under the hood). - -#### Overview - -Currently a virtual machine with the following services is created: -* Karaf -* Apache -* Tomcat -* ActiveMQ -* MongoDb -* Browsermob -* Selenium Grid hub - -![aet-setup-vagrant](assets/diagrams/aet-setup-with-vagrant.png) - -All services run using default ports. For communication please use the following IP address: -* `192.168.123.100` - -#### Prerequisites - -By default the Vagrant virtual machine needs 6 GB of RAM and 4 vCPUs, so please make sure that -you have enough memory on your machine (16 GB is recommended). - -You need to download and install the following software: - * [VirtualBox 5.2.18](https://www.virtualbox.org/wiki/Downloads) - * [Vagrant 2.1.2](https://releases.hashicorp.com/vagrant/) - * [ChefDK 3.3.23](https://downloads.chef.io/chefdk/stable/3.3.23) - * [JDK 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) - * [Chrome browser](https://www.google.com/chrome/browser/desktop/) to view reports - * [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) (version 2.40or newer) - * [Selenium Standalone Server](http://www.seleniumhq.org/download/) (version 3.41 or newer) - * [Maven](https://maven.apache.org/download.cgi) (version 3.0.4 or newer; for development only) - - -#### Set up Vagrant - -Open a command prompt **as the administrator** and execute the following commands: -* `vagrant plugin install vagrant-omnibus` -* `vagrant plugin install vagrant-berkshelf --plugin-version 5.1.2` -* `vagrant plugin install vagrant-hostmanager` - -> Note Whenever you'd like to keep all Vagrant related data and virtual machine disks in non-standard directories please - set the `VAGRANT_HOME` variable for the location (by default it is set to `$HOME/vagrant.d`) and - update VirtualBox settings (`File -> Preferences -> General`) to move all disks to other directory. - -Download or clone (`git clone git@github.com:Cognifide/aet.git`) the AET source code and navigate to the `vagrant` module directory. -Execute following commands to start the virtual machine (this process may take a few minutes): -* `berks install` - downloads Chef dependencies from external sources. It acts as `mvn clean install`, but for Chef cookbooks. -* `berks update` -* `vagrant up` - creates a new virtual machine (the `.box` file will be downloaded during the first run), runs Chef inside it, sets domains and port forwarding up. - -See the [Vagrant README](https://github.com/wttech/aet/blob/master/vagrant/README.md) file -for more Vagrant details, useful commands, etc. - -#### Set up Selenium Grid node - -When your Vagrant virtual machine is up and running, you need to start a Selenium Grid node process -to be able to run AET suites. To start the node process on your host machine (e.g. Windows): -``` -java -Dwebdriver.chrome.driver="" -jar -role node -hub http://192.168.123.100:4444/grid/register -browser "browserName=chrome,maxInstances=20" -maxSession 20 -``` -> Note: `192.168.123.100` is Vagrant IP - -Go to [Selenium Grid Console](http://192.168.123.100:4444/grid/console) and check if Chrome WebDrivers are available - -#### Troubleshooting - -See [[Troubleshooting|Troubleshooting]] page. \ No newline at end of file diff --git a/documentation/src/main/wiki/EnvironmentSetup.md b/documentation/src/main/wiki/EnvironmentSetup.md index 56eebe749..e7caf4d72 100644 --- a/documentation/src/main/wiki/EnvironmentSetup.md +++ b/documentation/src/main/wiki/EnvironmentSetup.md @@ -1,23 +1,8 @@ ## Environment Setup -There are two ways to setup the AET environment: basic and advanced. - -##### Basic - -The basic setup makes use of [Vagrant](https://www.vagrantup.com/) to create a single virtual machine running Linux OS (currently CentOS 6.8). This virtual machine contains all AET services, except the Google Chrome browser and the Selenium Grid node process which needs to be started separately (e.g. on the host machine). - -See **[[Basic Setup|BasicSetup]]** for more details. - -The diagram below shows the basic AET setup. - -![aet-setup-basic](assets/diagrams/aet-setup-with-vagrant.png) - -##### Advanced - -The advanced setup on the other hand makes use of at least two separate machines - one running a Linux OS and the other ones running Windows. The Linux machine hosts all AET services and the Windows machines are hosting Selenium Grid node processes together with Google Chrome browser. - -See **[[Advanced Setup|AdvancedSetup]]** for more details. - -The diagram below shows the advanced AET setup. - -![aet-setup-advanced](assets/diagrams/aet-setup-advanced.png) +### Docker Swarm (development) +See [Dev Environment](https://github.com/wttech/aet/tree/master/dev-env) readme file. +### Kubernetes +See https://github.com/malaskowski/aet-helm for more details. +### Chef +See https://github.com/wttech/aet-cookbook for more details. \ No newline at end of file diff --git a/pom.xml b/pom.xml index dec16fd7d..f099da05d 100644 --- a/pom.xml +++ b/pom.xml @@ -1033,6 +1033,8 @@ /vagrant/cookbooks/** + + /dev-env/** integration-tests/**/*.css diff --git a/vagrant/.gitattributes b/vagrant/.gitattributes deleted file mode 100644 index a89ddea72..000000000 --- a/vagrant/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -# Let all the files have the Linux line endings - -* text eol=lf diff --git a/vagrant/LICENSE b/vagrant/LICENSE deleted file mode 100644 index 6ed9f8d74..000000000 --- a/vagrant/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2013 Cognifide Limited - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/vagrant/README.md b/vagrant/README.md deleted file mode 100644 index 6e150fd45..000000000 --- a/vagrant/README.md +++ /dev/null @@ -1,66 +0,0 @@ -![Cognifide logo](http://cognifide.github.io/images/cognifide-logo.png) - -# AET -

- AET Logo -

- -## Vagrant - -This is a pseudo-cookbook which is responsible for local environment -provisioning using Vagrant (powered by Chef + Berkshelf under the hood) - -### Installation - -See [Basic Setup](https://github.com/wttech/aet/wiki/BasicSetup) guide. - -### Updates - -Whenever new version is released please execute the following: - -* `git pull` to get latest version of `Vagrantfile` from Stash -* `berks update` to update Chef dependencies -* `vagrant provision` to re-run Chef on the virtual machine - -### SSH access - -To get into the virtual machine via SSH please execute `vagrant ssh` from the -same directory that contains `Vagrantfile`. After that please type `sudo -i` -and press ENTER to switch to `root`. - -If you prefer to use PuTTY, mRemote or any other connection manager, please log -in as user `vagrant` with password `vagrant` on `localhost` port `2222`. Keep -in mind that the port may be different if you have more than one Vagrant -machine running at the same time. You can check current assignment by executing -`vagrant ssh-config` command from directory that contains your `Vagrantfile`. - -### Useful Vagrant commands - -* `vagrant reload` restarts Vagrant machine and re-applies settings defined in - `Vagrantfile`. It's useful whenever you've changed port forwarding or synced - folder configuration -* `vagrant destroy -f` deletes entire virtual machine -* `vagrant reload --provision` restarts virtual machine and re-run Chef - afterwards -* `vagrant suspend` suspends currently running virtual machine -* `vagrant resume` resumes suspended virtual machine -* `vagrant status` show status of virtual machine described in `Vagrantfile` -* `vagrant halt` halts/turns off virtual machine - -### Port forwarding - -Local port (*host*) is a port exposed on your machine. You can access services -via `localhost:`. - -*guest* ports refer to ports assigned inside Vagrant's virtual machine. - -Port forwarding rules can be easily changed in `Vagrantfile`. - -### Known Issues - -* When getting following error on deploying application to local vagrant: `What went wrong: Execution failed for task ':deployDevClearCache'. > java.net.ConnectException: Connection timed out: connect` Run `ifup eth1` command on vagrant using ssh. - -### Authors - -Karol Drazek () diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile deleted file mode 100644 index 9a931cc70..000000000 --- a/vagrant/Vagrantfile +++ /dev/null @@ -1,114 +0,0 @@ -# -# AET -# -# Copyright (C) 2013 Cognifide Limited -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# -*- mode: ruby -*- -# vi: set ft=ruby : - -# fix for some Chef issues with Berks: -# https://github.com/berkshelf/vagrant-berkshelf/issues/318#issuecomment-346456755 -ENV["GEM_PATH"] = nil -ENV["GEM_HOME"] = nil - -AET_VERSION = '3.4.0' - -VAGRANTFILE_API_VERSION = '2' - -Vagrant.require_version '>= 1.9.0' - -Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.hostname = 'aet-vagrant' - config.vm.box = 'bento/centos-6.8' - config.vm.box_url = 'https://app.vagrantup.com/bento/boxes/centos-6.8' - config.vm.box_check_update = true - - config.vm.network :private_network, ip: '192.168.123.100' - # Karaf - config.vm.network 'forwarded_port', guest: 8181, host: 8181 - # Karaf debug port - config.vm.network 'forwarded_port', guest: 5005, host: 5005 - # Tomcat - config.vm.network 'forwarded_port', guest: 9090, host: 9090 - # ActiveMQ - config.vm.network 'forwarded_port', guest: 61616, host: 61616 - # ActiveMQ Web Console - config.vm.network 'forwarded_port', guest: 8161, host: 8161 - # ActiveMQ JMX - config.vm.network 'forwarded_port', guest: 11199, host: 11199 - # Mongo DB - config.vm.network 'forwarded_port', guest: 27017, host: 27017 - # Selenium Grid hub - config.vm.network 'forwarded_port', guest: 4444, host: 4444 - - config.vm.provider 'virtualbox' do |v| - v.memory = 6144 - v.cpus = 4 - end - - config.hostmanager.enabled = true - config.hostmanager.manage_host = true - config.hostmanager.ignore_private_ip = false - config.hostmanager.include_offline = true - - config.hostmanager.aliases = %w( - aet.local - ) - - config.omnibus.chef_version = '14.3.37' - config.berkshelf.enabled = true - - config.vm.provision :chef_solo do |chef| - chef.json = { - "java" => { - "jdk_version" => "8", - "install_flavor" => "openjdk", - "oracle" => { - "accept_oracle_download_terms" => true - } - }, - "aet" => { - "karaf" => { - "java_max_mem" => "3072M", - "enable_debug" => true - }, - "version" => AET_VERSION - } - } - chef.run_list = [ - "recipe[aet::_develop]", - "recipe[aet::display]", - "recipe[aet::apache]", - "recipe[aet::mongo]", - "recipe[aet::activemq]", - "recipe[aet::browsermob]", - "recipe[aet::firefox]", - "recipe[aet::xvfb]", - "recipe[aet::tomcat]", -# commented for now as we want to release a version without Selenium Grid - "recipe[aet::seleniumgrid_hub]", -# "recipe[aet::seleniumgrid_node_ff]", - "recipe[aet::karaf]", - "recipe[aet::deploy_aet_for_karaf]", - "recipe[aet::deploy_reports]", - "recipe[aet::deploy_sample_site]", - "recipe[aet::postdeploy_restart]", - "recipe[aet::reboot]" - ] - end - - config.vm.provision 'shell', inline: 'ifconfig eth1 up' -end