Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare SSL-aware testing environment #238

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
phpunit_config: 'phpunit10.xml.dist' # PHPUnit 10.5
fail-fast: false
env:
REPO_URL: http://localhost:8002/
REPO_URL: https://localhost/

steps:
- name: Checkout
Expand All @@ -70,10 +70,35 @@ jobs:
with:
dependency-versions: "highest"

- name: Create a temporary folder
run: |
mkdir build

- name: Install mkcert
run: |
sudo apt-get update
sudo apt-get install libnss3-tools
cd build
curl -JLO "https://dl.filippo.io/mkcert/latest?for=linux/amd64"
chmod +x mkcert-v*-linux-amd64
sudo cp mkcert-v*-linux-amd64 /usr/local/bin/mkcert

- name: Generate an SSL certificate
run: |
cd build
mkcert -install
mkcert -key-file key.pem -cert-file cert.pem localhost 127.0.0.1 ::1

- name: Setup test web server
run: |
php -S localhost:8002 -t $(pwd) > /dev/null 2> /tmp/webserver_output.txt &

- name: Setup Nginx
run: |
sudo chmod o+w /etc/nginx/sites-available/default
sudo cat tests/nginx_vhost_config > /etc/nginx/sites-available/default
sudo systemctl restart nginx.service

- name: Wait for browser & PHP to start
run: |
while ! nc -z localhost 8002 </dev/null; do echo Waiting for PHP server to start...; sleep 1; done
Expand Down
20 changes: 20 additions & 0 deletions tests/nginx_vhost_config
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
server {
listen 80;
listen 443 default_server ssl;
server_name localhost;

ssl_certificate /home/runner/work/jira-api-restclient/jira-api-restclient/build/cert.pem;
ssl_certificate_key /home/runner/work/jira-api-restclient/jira-api-restclient/build/key.pem;

if ($server_protocol = "HTTP/1.0") {
return 426;
}

location / {
proxy_http_version 1.1;
proxy_pass http://localhost:8002;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Loading