## Description > Add back setup of ui nginx environment using docker while setting up tests Fixes # [(issue)](https://github.com/appsmithorg/appsmith/issues/20124) > if no issue exists, please create an issue and ask the maintainers about this first ## Type of change - Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? - Manual ## Checklist: ### Dev activity - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag ### QA activity: - [ ] Test plan has been approved by relevant developers - [ ] Test plan has been peer reviewed by QA - [ ] Cypress test cases have been added and approved by either SDET or manual QA - [ ] Organized project review call with relevant stakeholders after Round 1/2 of QA - [ ] Added Test Plan Approved label after reveiwing all Cypress test
66 lines
2.8 KiB
Bash
66 lines
2.8 KiB
Bash
#! /bin/sh
|
|
|
|
# This script is responsible for setting up the local Nginx server for running E2E Cypress tests
|
|
# on our CI/CD system. Currently the script is geared towards Github Actions
|
|
|
|
# Serve the react bundle on a specific port. Nginx will proxy to this port
|
|
echo "Starting the setup the test framework"
|
|
sudo echo "127.0.0.1 localhost" | sudo tee -a /etc/hosts
|
|
serve -s build -p 3000 &
|
|
|
|
# Substitute all the env variables in nginx
|
|
vars_to_substitute=$(printf '\$%s,' $(env | grep -o "^APPSMITH_[A-Z0-9_]\+" | xargs))
|
|
cat ./docker/templates/nginx-app.conf.template | sed -e "s|__APPSMITH_CLIENT_PROXY_PASS__|http://localhost:3000|g" | sed -e "s|__APPSMITH_SERVER_PROXY_PASS__|http://localhost:8080|g" | envsubst ${vars_to_substitute} | sed -e 's|\${\(APPSMITH_[A-Z0-9_]*\)}||g' > ./docker/nginx.conf
|
|
cat ./docker/templates/nginx-root.conf.template | envsubst ${vars_to_substitute} | sed -e 's|\${\(APPSMITH_[A-Z0-9_]*\)}||g' > ./docker/nginx-root.conf
|
|
|
|
# Create the SSL files for Nginx. Required for service workers to work properly.
|
|
touch ./docker/localhost ./docker/localhost.pem
|
|
echo "$APPSMITH_SSL_CERTIFICATE" > ./docker/localhost.pem
|
|
echo "$APPSMITH_SSL_KEY" > ./docker/localhost.pem
|
|
|
|
# Setup UI environment from docker image for running UI tests and perf tests
|
|
sudo docker run --network host --name wildcard-nginx -d -p 80:80 -p 443:443 \
|
|
-v `pwd`/docker/nginx-root.conf:/etc/nginx/nginx.conf \
|
|
-v `pwd`/docker/nginx.conf:/etc/nginx/conf.d/app.conf \
|
|
-v `pwd`/docker/dev.appsmith.com.pem:/etc/certificate/dev.appsmith.com.pem \
|
|
-v `pwd`/docker/dev.appsmith.com-key.pem:/etc/certificate/dev.appsmith.com-key.pem \
|
|
nginx:latest
|
|
|
|
sleep 10
|
|
|
|
echo "Checking if the containers have started"
|
|
sudo docker ps -a
|
|
for fcid in $(sudo docker ps -a | awk '/Exited/ { print $1 }'); do
|
|
echo "Logs for container '$fcid'."
|
|
docker logs "$fcid"
|
|
done
|
|
if sudo docker ps -a | grep -q Exited; then
|
|
echo "One or more containers failed to start." >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "Checking if the server has started"
|
|
status_code=$(curl -o /dev/null -s -w "%{http_code}\n" http://localhost/api/v1/users)
|
|
|
|
retry_count=1
|
|
|
|
while [ "$retry_count" -le "3" -a "$status_code" -eq "502" ]; do
|
|
echo "Hit 502.Server not started retrying..."
|
|
retry_count=$((1 + $retry_count))
|
|
sleep 30
|
|
status_code=$(curl -o /dev/null -s -w "%{http_code}\n" http://localhost/api/v1/users)
|
|
done
|
|
|
|
echo "Checking if client and server have started"
|
|
ps -ef |grep java 2>&1
|
|
ps -ef |grep serve 2>&1
|
|
|
|
if [ "$status_code" -eq "502" ]; then
|
|
echo "Unable to connect to server"
|
|
exit 1
|
|
fi
|
|
|
|
# DEBUG=cypress:* $(npm bin)/cypress version
|
|
# sed -i -e "s|api_url:.*$|api_url: $CYPRESS_URL|g" /github/home/.cache/Cypress/4.1.0/Cypress/resources/app/packages/server/config/app.yml
|
|
# cat /github/home/.cache/Cypress/4.1.0/Cypress/resources/app/packages/server/config/app.yml
|