You've already forked Php-Template
Compare commits
40 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
68614958a9
|
|||
|
413145f479
|
|||
|
d2bd9d2d1b
|
|||
|
78d5213892
|
|||
|
56b78f0102
|
|||
|
05d8c5b813
|
|||
|
2d6d0a43f3
|
|||
|
e203975294
|
|||
|
b1e5470a07
|
|||
|
5f9ee939d6
|
|||
|
e9a3a5885f
|
|||
|
f12559d2c3
|
|||
|
b466495ae1
|
|||
|
4eb21ace55
|
|||
|
a3e54ce989
|
|||
|
403cb4c12e
|
|||
|
9f048e408c
|
|||
|
be570a3173
|
|||
|
6353a4f19e
|
|||
|
59bcf4d2a7
|
|||
|
89bc3e75ec
|
|||
|
fb04e9c390
|
|||
|
77d66abbe0
|
|||
|
52aa7abc2d
|
|||
|
b6256a7e1d
|
|||
|
59fa57d643
|
|||
|
199921fb83
|
|||
|
aaf772dc6d
|
|||
|
89fd169067
|
|||
|
a01a0c590b
|
|||
|
dfccf9ca4f
|
|||
|
011a1e77c0
|
|||
|
7c7b538616
|
|||
|
71fa18bc17
|
|||
|
7308f33de4
|
|||
|
d0d18fd603
|
|||
|
f57406f981
|
|||
|
e46bf5a6ec
|
|||
|
02acc9afbe
|
|||
|
cdb2b28cb7
|
@@ -1,3 +1,5 @@
|
|||||||
.idea/
|
.idea/
|
||||||
|
.DS_Store
|
||||||
vendor/
|
vendor/
|
||||||
.phpunit.cache/
|
.phpunit.cache/
|
||||||
|
tests/
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
on:
|
on:
|
||||||
create:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- '*'
|
- "v*"
|
||||||
|
|
||||||
name: 🏗️✨ Build Workflow
|
name: 🏗️✨ Build Workflow
|
||||||
|
|
||||||
@@ -12,7 +12,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -yq ca-certificates curl
|
|
||||||
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
update-ca-certificates
|
update-ca-certificates
|
||||||
|
|
||||||
@@ -30,9 +29,45 @@ jobs:
|
|||||||
- name: 🏗️ 🔧 Set up Docker Buildx
|
- name: 🏗️ 🔧 Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: 🐳 🔨 Build Backend Container
|
- name: 🐳 🔨 Build Container
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
tags: siteworxpro/template:${{ gitea.ref_name }}
|
tags: siteworxpro/template:${{ gitea.ref_name }}
|
||||||
|
|
||||||
|
Build-Migrations:
|
||||||
|
needs:
|
||||||
|
- Build
|
||||||
|
name: 🖥️ 🔨 Build Migrations
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
|
run: |
|
||||||
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
|
update-ca-certificates
|
||||||
|
|
||||||
|
- name: 🔑 🔐 Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: 📖 🔍 Checkout Repository Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: 🏗️ 🔧 Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: 🐳 🔨 Build Migrations Container
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
sbom: true
|
||||||
|
provenance: true
|
||||||
|
context: .
|
||||||
|
file: migrations.Dockerfile
|
||||||
|
tags: siteworxpro/template:${{ gitea.ref_name }}-migrations
|
||||||
@@ -1,20 +1,19 @@
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "*"
|
- "**"
|
||||||
|
|
||||||
name: 🧪✨ Tests Workflow
|
name: 🧪✨ Tests Workflow
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
LicenseCheck:
|
DatabaseMigrations:
|
||||||
name: License Check
|
name: 🧪 ✨ Database Migrations
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -yq ca-certificates curl
|
|
||||||
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
update-ca-certificates
|
update-ca-certificates
|
||||||
|
|
||||||
@@ -29,15 +28,114 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Install Composer Libraries
|
- name: 🏎️ 🏁 Start Support Containers
|
||||||
|
run: |
|
||||||
|
echo "Starting Support Containers"
|
||||||
|
docker run --rm \
|
||||||
|
--network "${{ env.JOB_CONTAINER_NAME }}-${{ gitea.job }}-network" \
|
||||||
|
--name ${{ gitea.job }}-${{ gitea.run_id }}-postgres \
|
||||||
|
-e POSTGRES_USER=postgres \
|
||||||
|
-e POSTGRES_PASSWORD=postgres \
|
||||||
|
-e POSTGRES_DB=postgres \
|
||||||
|
-p 5432 \
|
||||||
|
-d postgres:17
|
||||||
|
|
||||||
|
echo "Waiting for Postgres to start"
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
- name: 💽 ⬆️ Run Migrations
|
||||||
|
run: |
|
||||||
|
docker run \
|
||||||
|
--name ${{ gitea.run_id }}-migrate \
|
||||||
|
--rm \
|
||||||
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
|
--network "${{ env.JOB_CONTAINER_NAME }}-${{ gitea.job }}-network" \
|
||||||
|
-w ${{ github.workspace }} \
|
||||||
|
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ gitea.job }}-${{ gitea.run_id }}-postgres:5432/postgres?sslmode=disable" -path db/migrations up
|
||||||
|
|
||||||
|
- name: 💽 ⬇️ Rollback Migrations
|
||||||
|
run: |
|
||||||
|
docker run \
|
||||||
|
--name ${{ gitea.run_id }}-migrate \
|
||||||
|
--rm \
|
||||||
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
|
--network "${{ env.JOB_CONTAINER_NAME }}-${{ gitea.job }}-network" \
|
||||||
|
-w ${{ github.workspace }} \
|
||||||
|
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ gitea.job }}-${{ gitea.run_id }}-postgres:5432/postgres?sslmode=disable" -path db/migrations down --all
|
||||||
|
|
||||||
|
- name: 🧨 💥 Tear Down Support Containers
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
docker stop ${{ gitea.job }}-${{ gitea.run_id }}-postgres
|
||||||
|
|
||||||
|
LibraryAudit:
|
||||||
|
name: 🛡️ 🔒 Library Audit
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
|
run: |
|
||||||
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
|
update-ca-certificates
|
||||||
|
|
||||||
|
- name: 📖 🔍 Checkout Repository Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: 🔑 🔐 Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: 📖 ✨ Install Composer Libraries
|
||||||
run: |
|
run: |
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
|
-v composer-cache:/tmp/cache \
|
||||||
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
-w ${{ github.workspace }} \
|
-w ${{ github.workspace }} \
|
||||||
siteworxpro/composer \
|
siteworxpro/composer \
|
||||||
install --ignore-platform-reqs --no-interaction --prefer-dist --optimize-autoloader
|
install --ignore-platform-reqs --no-interaction --prefer-dist --optimize-autoloader
|
||||||
|
|
||||||
- name: Run License Check
|
- name: Run Library Audit
|
||||||
|
run: |
|
||||||
|
docker run --rm \
|
||||||
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
|
-w ${{ github.workspace }} \
|
||||||
|
siteworxpro/composer \
|
||||||
|
audit
|
||||||
|
|
||||||
|
LicenseCheck:
|
||||||
|
name: 🛡️ 🔒 License Check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
|
run: |
|
||||||
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
|
update-ca-certificates
|
||||||
|
|
||||||
|
- name: 📖 🔍 Checkout Repository Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: 🔑 🔐 Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: 📖 ✨ Install Composer Libraries
|
||||||
|
run: |
|
||||||
|
docker run --rm \
|
||||||
|
-v composer-cache:/tmp/cache \
|
||||||
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
|
-w ${{ github.workspace }} \
|
||||||
|
siteworxpro/composer \
|
||||||
|
install --ignore-platform-reqs --no-interaction --prefer-dist --optimize-autoloader
|
||||||
|
|
||||||
|
- name: 🎟️ 🔬 Run License Check
|
||||||
run: |
|
run: |
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
@@ -46,12 +144,11 @@ jobs:
|
|||||||
run tests:license
|
run tests:license
|
||||||
|
|
||||||
CodeLint:
|
CodeLint:
|
||||||
name: Code Lint
|
name: 📝 ✨ Code Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -yq ca-certificates curl
|
|
||||||
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
update-ca-certificates
|
update-ca-certificates
|
||||||
|
|
||||||
@@ -66,9 +163,10 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Install Composer Libraries
|
- name: 📖 ✨ Install Composer Libraries
|
||||||
run: |
|
run: |
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
|
-v composer-cache:/tmp/cache \
|
||||||
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
-w ${{ github.workspace }} \
|
-w ${{ github.workspace }} \
|
||||||
siteworxpro/composer \
|
siteworxpro/composer \
|
||||||
@@ -83,12 +181,11 @@ jobs:
|
|||||||
run tests:lint
|
run tests:lint
|
||||||
|
|
||||||
CodeSniffer:
|
CodeSniffer:
|
||||||
name: Code Sniffer
|
name: 🐙 🔍 Code Sniffer
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -yq ca-certificates curl
|
|
||||||
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
update-ca-certificates
|
update-ca-certificates
|
||||||
|
|
||||||
@@ -103,9 +200,10 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Install Composer Libraries
|
- name: 📖 ✨ Install Composer Libraries
|
||||||
run: |
|
run: |
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
|
-v composer-cache:/tmp/cache \
|
||||||
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
-w ${{ github.workspace }} \
|
-w ${{ github.workspace }} \
|
||||||
siteworxpro/composer \
|
siteworxpro/composer \
|
||||||
@@ -120,12 +218,11 @@ jobs:
|
|||||||
run tests:phpstan
|
run tests:phpstan
|
||||||
|
|
||||||
UnitTests:
|
UnitTests:
|
||||||
name: Unit Tests
|
name: 🧪 ✅ Unit Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -yq ca-certificates curl
|
|
||||||
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
update-ca-certificates
|
update-ca-certificates
|
||||||
|
|
||||||
@@ -140,18 +237,32 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Install Composer Libraries
|
- name: 📖 ✨ Install Composer Libraries
|
||||||
run: |
|
run: |
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
|
-v composer-cache:/tmp/cache \
|
||||||
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
||||||
-w ${{ github.workspace }} \
|
-w ${{ github.workspace }} \
|
||||||
siteworxpro/composer \
|
siteworxpro/composer \
|
||||||
install --ignore-platform-reqs --no-interaction --prefer-dist --optimize-autoloader
|
install --ignore-platform-reqs --no-interaction --prefer-dist --optimize-autoloader
|
||||||
|
|
||||||
- name: Run Unit Tests
|
- name: 🧪 ✅ Run Unit Tests
|
||||||
|
uses: addnab/docker-run-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
image: siteworxpro/composer
|
||||||
|
options: --volumes-from ${{ env.JOB_CONTAINER_NAME }} -w ${{ gitea.workspace }}
|
||||||
run: |
|
run: |
|
||||||
docker run --rm \
|
bin/pcov.sh
|
||||||
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
|
composer run tests:unit:coverage
|
||||||
-w ${{ github.workspace }} \
|
|
||||||
siteworxpro/composer \
|
# - name: 📦 Publish Build Artifacts
|
||||||
run tests:unit
|
# env:
|
||||||
|
# NODE_TLS_REJECT_UNAUTHORIZED: 0
|
||||||
|
# uses: christopherhx/gitea-upload-artifact@v4
|
||||||
|
# with:
|
||||||
|
# options: --volumes-from ${{ env.JOB_CONTAINER_NAME }} -w ${{ gitea.workspace }}
|
||||||
|
# name: junit-coverage.xml
|
||||||
|
# path: tests/reports/junit.xml
|
||||||
|
# retention-days: 1
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +1,6 @@
|
|||||||
.idea/
|
.idea/
|
||||||
|
.DS_Store
|
||||||
vendor/
|
vendor/
|
||||||
.phpunit.cache/
|
.phpunit.cache/
|
||||||
|
|
||||||
|
tests/reports/
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
include:
|
|
||||||
- local: .gitlab/ci/stages.yml
|
|
||||||
- local: .gitlab/ci/tests.yml
|
|
||||||
- local: .gitlab/ci/libraries.yml
|
|
||||||
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
Install Composer Libraries:
|
|
||||||
stage: libraries
|
|
||||||
image: siteworxpro/composer:latest
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_TAG'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: always
|
|
||||||
- when: never
|
|
||||||
script:
|
|
||||||
- composer install --ignore-platform-reqs
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- vendor/
|
|
||||||
expire_in: 1 hour
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
stages:
|
|
||||||
- libraries
|
|
||||||
- tests
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
Unit Tests:
|
|
||||||
stage: tests
|
|
||||||
needs:
|
|
||||||
- Install Composer Libraries
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_TAG'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: always
|
|
||||||
- when: never
|
|
||||||
image: siteworxpro/composer
|
|
||||||
before_script: |
|
|
||||||
bin/pcov.sh
|
|
||||||
script: |
|
|
||||||
echo "Running unit tests..."
|
|
||||||
composer run tests:unit:coverage
|
|
||||||
coverage: '/^\s*Lines:\s*\d+.\d+\%/'
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1 day
|
|
||||||
reports:
|
|
||||||
junit: tests/reports/junit.xml
|
|
||||||
paths:
|
|
||||||
- tests/reports/
|
|
||||||
|
|
||||||
Run License Check:
|
|
||||||
stage: tests
|
|
||||||
needs:
|
|
||||||
- Install Composer Libraries
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_TAG'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: on_success
|
|
||||||
- when: never
|
|
||||||
image: siteworxpro/composer
|
|
||||||
script:
|
|
||||||
- composer run tests:license
|
|
||||||
|
|
||||||
Run Code Lint:
|
|
||||||
stage: tests
|
|
||||||
needs:
|
|
||||||
- Install Composer Libraries
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_TAG'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: on_success
|
|
||||||
- when: never
|
|
||||||
image: siteworxpro/composer
|
|
||||||
script:
|
|
||||||
- composer run tests:lint
|
|
||||||
|
|
||||||
Run Code Sniffer:
|
|
||||||
stage: tests
|
|
||||||
needs:
|
|
||||||
- Install Composer Libraries
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_TAG'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: on_success
|
|
||||||
- when: never
|
|
||||||
image: siteworxpro/composer
|
|
||||||
script:
|
|
||||||
- composer run tests:phpstan
|
|
||||||
@@ -33,6 +33,7 @@ COPY --from=library /app/vendor /app/vendor
|
|||||||
ADD src src/
|
ADD src src/
|
||||||
ADD server.php .
|
ADD server.php .
|
||||||
ADD .rr.yaml .
|
ADD .rr.yaml .
|
||||||
|
ADD config.php .
|
||||||
|
|
||||||
EXPOSE 9501
|
EXPOSE 9501
|
||||||
|
|
||||||
|
|||||||
23
README.md
23
README.md
@@ -1,8 +1,6 @@
|
|||||||
# Template
|
# Template
|
||||||
|
|
||||||
[](https://git.siteworxpro.com/rrise/php-template/-/commits/master)
|

|
||||||
[](https://git.siteworxpro.com/rrise/php-template/-/commits/master)
|
|
||||||
[](https://git.siteworxpro.com/rrise/php-template/-/releases)
|
|
||||||
|
|
||||||
## Dev Environment
|
## Dev Environment
|
||||||
|
|
||||||
@@ -10,13 +8,28 @@
|
|||||||
- Docker
|
- Docker
|
||||||
- Docker Compose
|
- Docker Compose
|
||||||
|
|
||||||
|
### migrations
|
||||||
|
|
||||||
|
create a new migration
|
||||||
|
```shell
|
||||||
|
docker run --rm -v $(PWD):/app siteworxpro/migrate:v4.18.3 create -ext sql -dir /app/db/migrations -seq create_users_table
|
||||||
|
```
|
||||||
|
|
||||||
|
```text
|
||||||
|
postgres://siteworxpro:password@localhost:5432/siteworxpro?sslmode=disable
|
||||||
|
```
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker run --rm -v $(PWD):/app siteworxpro/migrate:v4.18.3 -database "postgres://siteworxpro:password@localhost:5432/siteworxpro?sslmode=disable" -path /app/db/migrations up
|
||||||
|
```
|
||||||
|
|
||||||
### Starting the Runtime
|
### Starting the Runtime
|
||||||
```shell
|
```shell
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
```
|
```
|
||||||
### Start the server
|
### Start the server
|
||||||
```shell
|
```shell
|
||||||
docker exec -it template-runtime-1 rr serve
|
docker exec -it template-dev-runtime-1 rr serve
|
||||||
```
|
```
|
||||||
|
|
||||||
You can access the api at `http://localhost:9501/`
|
You can access the api at `http://localhost:9501/`
|
||||||
@@ -25,7 +38,7 @@ You can access the api at `http://localhost:9501/`
|
|||||||
|
|
||||||
xdebug needs to be built into the container before it will work
|
xdebug needs to be built into the container before it will work
|
||||||
```shell
|
```shell
|
||||||
docker exec -it template-runtime-1 bin/xdebug.sh
|
docker exec -it php-template-composer-runtime-1 bin/xdebug.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install the dependencies
|
### Install the dependencies
|
||||||
|
|||||||
4
bin/migrate.sh
Executable file
4
bin/migrate.sh
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
eval #!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
migrate -path /app/db/migrations -database "postgres://$DB_USERNAME:$DB_PASSWORD@$DB_HOST:$DB_PORT/$DB_DATABASE?sslmode=disable" up
|
||||||
@@ -9,21 +9,21 @@
|
|||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.4",
|
"php": "^8.4",
|
||||||
"league/route": "^6.2",
|
"league/route": "^6.2.0",
|
||||||
"illuminate/database": "^12.10",
|
"illuminate/database": "^v12.34.0",
|
||||||
"spiral/roadrunner-http": "^3.5",
|
"spiral/roadrunner-http": "^v3.6.0",
|
||||||
"nyholm/psr7": "^1.8",
|
"nyholm/psr7": "^1.8.2",
|
||||||
"illuminate/support": "^v12.10.2",
|
"illuminate/support": "^v12.10.2",
|
||||||
"roadrunner-php/app-logger": "^1.2",
|
"roadrunner-php/app-logger": "^1.2.0",
|
||||||
"siteworxpro/config": "^1.1",
|
"siteworxpro/config": "^1.1.1",
|
||||||
"predis/predis": "^3.0"
|
"predis/predis": "^v3.2.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^12.1",
|
"phpunit/phpunit": "^12.4",
|
||||||
"mockery/mockery": "^1.6",
|
"mockery/mockery": "^1.6",
|
||||||
"squizlabs/php_codesniffer": "^3.12",
|
"squizlabs/php_codesniffer": "^3.12",
|
||||||
"lendable/composer-license-checker": "^1.2",
|
"lendable/composer-license-checker": "^1.2",
|
||||||
"phpstan/phpstan": "^2.1"
|
"phpstan/phpstan": "^2.1.31"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"tests:all": [
|
"tests:all": [
|
||||||
@@ -53,16 +53,10 @@
|
|||||||
"phpstan analyse --level 4 ./src/ -c phpstan.neon"
|
"phpstan analyse --level 4 ./src/ -c phpstan.neon"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"repositories": {
|
"repositories": [
|
||||||
"git.siteworxpro.com/24": {
|
{
|
||||||
"type": "composer",
|
"type": "composer",
|
||||||
"url": "https://git.siteworxpro.com/api/v4/group/24/-/packages/composer/packages.json",
|
"url": "https://gitea.siteworxpro.com/api/packages/php-packages/composer"
|
||||||
"options": {
|
|
||||||
"ssl": {
|
|
||||||
"verify_peer": false,
|
|
||||||
"allow_self_signed": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
954
composer.lock
generated
954
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -21,8 +21,14 @@ return [
|
|||||||
'database' => Env::get('DB_DATABASE', 'siteworxpro'),
|
'database' => Env::get('DB_DATABASE', 'siteworxpro'),
|
||||||
'username' => Env::get('DB_USERNAME', 'siteworxpro'),
|
'username' => Env::get('DB_USERNAME', 'siteworxpro'),
|
||||||
'password' => Env::get('DB_PASSWORD', 'password'),
|
'password' => Env::get('DB_PASSWORD', 'password'),
|
||||||
|
'port' => Env::get('DB_PORT', 5432, 'int'),
|
||||||
|
'charset' => Env::get('DB_CHARSET', 'utf8'),
|
||||||
|
'collation' => Env::get('DB_COLLATION', 'utf8_unicode_ci'),
|
||||||
|
'prefix' => Env::get('DB_PREFIX', ''),
|
||||||
|
'options' => [
|
||||||
|
// Add any additional PDO options here
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
'cors' => [
|
'cors' => [
|
||||||
'allowed_origins' => Env::get('CORS_ALLOWED_ORIGINS', 'localhost:3000'),
|
'allowed_origins' => Env::get('CORS_ALLOWED_ORIGINS', 'localhost:3000'),
|
||||||
@@ -34,5 +40,6 @@ return [
|
|||||||
'host' => Env::get('REDIS_HOST', 'localhost'),
|
'host' => Env::get('REDIS_HOST', 'localhost'),
|
||||||
'port' => Env::get('REDIS_PORT', 6379, 'int'),
|
'port' => Env::get('REDIS_PORT', 6379, 'int'),
|
||||||
'database' => Env::get('REDIS_DATABASE', 0, 'int'),
|
'database' => Env::get('REDIS_DATABASE', 0, 'int'),
|
||||||
|
'password' => Env::get('REDIS_PASSWORD'),
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
@@ -12,6 +12,24 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
PHP_IDE_CONFIG: serverName=localhost
|
PHP_IDE_CONFIG: serverName=localhost
|
||||||
|
|
||||||
|
migration-container:
|
||||||
|
volumes:
|
||||||
|
- ./db/migrations:/app/db/migrations
|
||||||
|
- ./bin:/app/bin
|
||||||
|
image: siteworxpro/migrate:v4.18.3
|
||||||
|
working_dir: /app
|
||||||
|
# entrypoint: "/bin/sh -c 'while true; do sleep 30; done;'"
|
||||||
|
entrypoint: /bin/sh -c '/app/bin/migrate.sh'
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
environment:
|
||||||
|
DB_USERNAME: ${DB_USERNAME:-siteworxpro}
|
||||||
|
DB_PASSWORD: ${DB_PASSWORD:-password}
|
||||||
|
DB_DATABASE: ${DB_DATABASE:-siteworxpro}
|
||||||
|
DB_HOST: ${DB_HOST-postgres}
|
||||||
|
DB_PORT: ${DB_PORT-5432}
|
||||||
|
|
||||||
dev-runtime:
|
dev-runtime:
|
||||||
ports:
|
ports:
|
||||||
- "9501:9501"
|
- "9501:9501"
|
||||||
@@ -29,6 +47,11 @@ services:
|
|||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:latest
|
image: redis:latest
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6379:6379"
|
||||||
volumes:
|
volumes:
|
||||||
@@ -36,6 +59,11 @@ services:
|
|||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:latest
|
image: postgres:latest
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -U ${DB_USERNAME:-siteworxpro}"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: ${DB_USERNAME:-siteworxpro}
|
POSTGRES_USER: ${DB_USERNAME:-siteworxpro}
|
||||||
POSTGRES_PASSWORD: ${DB_PASSWORD:-password}
|
POSTGRES_PASSWORD: ${DB_PASSWORD:-password}
|
||||||
|
|||||||
8
migrations.Dockerfile
Normal file
8
migrations.Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
FROM siteworxpro/migrate:v4.18.3
|
||||||
|
|
||||||
|
ADD db/migrations /app/db/migrations
|
||||||
|
ADD bin/migrate.sh /app/bin/migrate.sh
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ENTRYPOINT ["/app/bin/migrate.sh"]
|
||||||
@@ -4,11 +4,11 @@ use Siteworxpro\App\Server;
|
|||||||
|
|
||||||
require __DIR__ . '/vendor/autoload.php';
|
require __DIR__ . '/vendor/autoload.php';
|
||||||
|
|
||||||
|
try {
|
||||||
// Instantiate the ExternalServer class
|
// Instantiate the ExternalServer class
|
||||||
$server = new Server();
|
$server = new Server();
|
||||||
|
|
||||||
// Start the server
|
// Start the server
|
||||||
try {
|
|
||||||
$server->startServer();
|
$server->startServer();
|
||||||
} catch (JsonException $e) {
|
} catch (JsonException $e) {
|
||||||
echo $e->getMessage();
|
echo $e->getMessage();
|
||||||
|
|||||||
54
src/Controllers/Controller.php
Normal file
54
src/Controllers/Controller.php
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Controllers;
|
||||||
|
|
||||||
|
use League\Route\Http\Exception\NotFoundException;
|
||||||
|
use Nyholm\Psr7\ServerRequest;
|
||||||
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
|
abstract class Controller implements ControllerInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @param ServerRequest $request
|
||||||
|
* @return ResponseInterface
|
||||||
|
* @throws NotFoundException
|
||||||
|
*/
|
||||||
|
public function get(ServerRequest $request): ResponseInterface
|
||||||
|
{
|
||||||
|
throw new NotFoundException("not found");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws NotFoundException
|
||||||
|
*/
|
||||||
|
public function post(ServerRequest $request): ResponseInterface
|
||||||
|
{
|
||||||
|
throw new NotFoundException("not found");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws NotFoundException
|
||||||
|
*/
|
||||||
|
public function put(ServerRequest $request): ResponseInterface
|
||||||
|
{
|
||||||
|
throw new NotFoundException("not found");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws NotFoundException
|
||||||
|
*/
|
||||||
|
public function delete(ServerRequest $request): ResponseInterface
|
||||||
|
{
|
||||||
|
throw new NotFoundException("not found");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws NotFoundException
|
||||||
|
*/
|
||||||
|
public function patch(ServerRequest $request): ResponseInterface
|
||||||
|
{
|
||||||
|
throw new NotFoundException("not found");
|
||||||
|
}
|
||||||
|
}
|
||||||
51
src/Controllers/ControllerInterface.php
Normal file
51
src/Controllers/ControllerInterface.php
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Controllers;
|
||||||
|
|
||||||
|
use Nyholm\Psr7\ServerRequest;
|
||||||
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
|
interface ControllerInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Handle the request and return a response.
|
||||||
|
*
|
||||||
|
* @param ServerRequest $request The request data.
|
||||||
|
* @return ResponseInterface The response data.
|
||||||
|
*/
|
||||||
|
public function get(ServerRequest $request): ResponseInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the request and return a response.
|
||||||
|
*
|
||||||
|
* @param ServerRequest $request The request data.
|
||||||
|
* @return ResponseInterface The response data.
|
||||||
|
*/
|
||||||
|
public function post(ServerRequest $request): ResponseInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the request and return a response.
|
||||||
|
*
|
||||||
|
* @param ServerRequest $request The request data.
|
||||||
|
* @return ResponseInterface The response data.
|
||||||
|
*/
|
||||||
|
public function put(ServerRequest $request): ResponseInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the request and return a response.
|
||||||
|
*
|
||||||
|
* @param ServerRequest $request The request data.
|
||||||
|
* @return ResponseInterface The response data.
|
||||||
|
*/
|
||||||
|
public function delete(ServerRequest $request): ResponseInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the request and return a response.
|
||||||
|
*
|
||||||
|
* @param ServerRequest $request The request data.
|
||||||
|
* @return ResponseInterface The response data.
|
||||||
|
*/
|
||||||
|
public function patch(ServerRequest $request): ResponseInterface;
|
||||||
|
}
|
||||||
27
src/Controllers/IndexController.php
Normal file
27
src/Controllers/IndexController.php
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Controllers;
|
||||||
|
|
||||||
|
use Nyholm\Psr7\ServerRequest;
|
||||||
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
use Siteworxpro\App\Http\JsonResponseFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class IndexController
|
||||||
|
*
|
||||||
|
* This class handles the index route of the application.
|
||||||
|
*/
|
||||||
|
class IndexController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Handles the GET request for the index route.
|
||||||
|
*
|
||||||
|
* @throws \JsonException
|
||||||
|
*/
|
||||||
|
public function get(ServerRequest $request): ResponseInterface
|
||||||
|
{
|
||||||
|
return JsonResponseFactory::createJsonResponse(['status_code' => 200, 'message' => 'Server is running']);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Siteworxpro\App\Facades;
|
|
||||||
|
|
||||||
use Illuminate\Contracts\Container\BindingResolutionException;
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
|
||||||
use Siteworx\Config\Exception\EmptyDirectoryException;
|
|
||||||
use Siteworx\Config\Exception\FileNotFoundException;
|
|
||||||
use Siteworx\Config\Exception\UnsupportedFormatException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Config
|
|
||||||
*
|
|
||||||
* This class serves as a facade for the configuration settings of the application.
|
|
||||||
* It extends the Facade class from the Illuminate\Support\Facades namespace.
|
|
||||||
*
|
|
||||||
* @method static bool | string | int get(string $key) Retrieve the configuration value for the given key.
|
|
||||||
*
|
|
||||||
* @package Siteworx\App\Facades
|
|
||||||
*/
|
|
||||||
class Config extends Facade
|
|
||||||
{
|
|
||||||
protected static $cached = false;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @throws UnsupportedFormatException
|
|
||||||
* @throws FileNotFoundException
|
|
||||||
* @throws EmptyDirectoryException
|
|
||||||
*/
|
|
||||||
public static function getFacadeRoot(): \Siteworx\Config\Config
|
|
||||||
{
|
|
||||||
if (self::$resolvedInstance !== null) {
|
|
||||||
try {
|
|
||||||
$config = self::resolveFacadeInstance(self::getFacadeAccessor());
|
|
||||||
if ($config instanceof \Siteworx\Config\Config) {
|
|
||||||
return $config;
|
|
||||||
}
|
|
||||||
} catch (BindingResolutionException) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return \Siteworx\Config\Config::load(__DIR__ . '/../../config.php');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the registered name of the component.
|
|
||||||
*
|
|
||||||
* @return string The name of the component.
|
|
||||||
*/
|
|
||||||
protected static function getFacadeAccessor(): string
|
|
||||||
{
|
|
||||||
return \Siteworx\Config\Config::class;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,7 +9,7 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
use Psr\Http\Message\ServerRequestInterface;
|
use Psr\Http\Message\ServerRequestInterface;
|
||||||
use Psr\Http\Server\MiddlewareInterface;
|
use Psr\Http\Server\MiddlewareInterface;
|
||||||
use Psr\Http\Server\RequestHandlerInterface;
|
use Psr\Http\Server\RequestHandlerInterface;
|
||||||
use Siteworxpro\App\Facades\Config;
|
use Siteworxpro\App\Services\Facades\Config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class CorsMiddleware
|
* Class CorsMiddleware
|
||||||
|
|||||||
@@ -5,15 +5,21 @@ declare(strict_types=1);
|
|||||||
namespace Siteworxpro\App;
|
namespace Siteworxpro\App;
|
||||||
|
|
||||||
use Illuminate\Container\Container;
|
use Illuminate\Container\Container;
|
||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Database\Capsule\Manager;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
use League\Route\Http\Exception\MethodNotAllowedException;
|
use League\Route\Http\Exception\MethodNotAllowedException;
|
||||||
use League\Route\Http\Exception\NotFoundException;
|
use League\Route\Http\Exception\NotFoundException;
|
||||||
use League\Route\Router;
|
use League\Route\Router;
|
||||||
use Nyholm\Psr7\Factory\Psr17Factory;
|
use Nyholm\Psr7\Factory\Psr17Factory;
|
||||||
use Siteworxpro\App\Facades\Config;
|
use Siteworx\Config\Config as SWConfig;
|
||||||
use Siteworxpro\App\Facades\Logger;
|
use Siteworxpro\App\Controllers\IndexController;
|
||||||
use Siteworxpro\App\Http\JsonResponseFactory;
|
use Siteworxpro\App\Http\JsonResponseFactory;
|
||||||
use Siteworxpro\App\Http\Middleware\CorsMiddleware;
|
use Siteworxpro\App\Http\Middleware\CorsMiddleware;
|
||||||
|
use Siteworxpro\App\Services\Facade;
|
||||||
|
use Siteworxpro\App\Services\Facades\Config;
|
||||||
|
use Siteworxpro\App\Services\Facades\Logger;
|
||||||
|
use Siteworxpro\App\Services\ServiceProviders\LoggerServiceProvider;
|
||||||
|
use Siteworxpro\App\Services\ServiceProviders\RedisServiceProvider;
|
||||||
use Spiral\RoadRunner\Http\PSR7Worker;
|
use Spiral\RoadRunner\Http\PSR7Worker;
|
||||||
use Spiral\RoadRunner\Worker;
|
use Spiral\RoadRunner\Worker;
|
||||||
|
|
||||||
@@ -38,11 +44,17 @@ class Server
|
|||||||
*/
|
*/
|
||||||
protected PSR7Worker $worker;
|
protected PSR7Worker $worker;
|
||||||
|
|
||||||
|
public static array $serviceProviders = [
|
||||||
|
LoggerServiceProvider::class,
|
||||||
|
RedisServiceProvider::class
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Server constructor.
|
* Server constructor.
|
||||||
*
|
*
|
||||||
* Initializes the server by booting the PSR-7 worker and router.
|
* Initializes the server by booting the PSR-7 worker and router.
|
||||||
|
* @throws \ReflectionException
|
||||||
*/
|
*/
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
@@ -57,11 +69,33 @@ class Server
|
|||||||
* subclasses to ensure proper initialization.
|
* subclasses to ensure proper initialization.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws \ReflectionException
|
||||||
*/
|
*/
|
||||||
private function boot(): void
|
private function boot(): void
|
||||||
{
|
{
|
||||||
$container = new Container();
|
$container = new Container();
|
||||||
Facade::setFacadeApplication($container);
|
Facade::setFacadeContainer($container);
|
||||||
|
|
||||||
|
// Bind the container to the Config facade first so that it can be used by service providers
|
||||||
|
$container->bind(SWConfig::class, function () {
|
||||||
|
return SWConfig::load(__DIR__ . '/../config.php');
|
||||||
|
});
|
||||||
|
|
||||||
|
foreach (self::$serviceProviders as $serviceProvider) {
|
||||||
|
if (class_exists($serviceProvider)) {
|
||||||
|
$provider = new $serviceProvider($container);
|
||||||
|
if ($provider instanceof ServiceProvider) {
|
||||||
|
$provider->register();
|
||||||
|
} else {
|
||||||
|
throw new \RuntimeException(sprintf(
|
||||||
|
'Service provider %s is not an instance of ServiceProvider.',
|
||||||
|
$serviceProvider
|
||||||
|
));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new \RuntimeException(sprintf('Service provider %s not found.', $serviceProvider));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$this->worker = new PSR7Worker(
|
$this->worker = new PSR7Worker(
|
||||||
Worker::create(),
|
Worker::create(),
|
||||||
@@ -87,18 +121,8 @@ class Server
|
|||||||
*/
|
*/
|
||||||
public function bootModelCapsule(): void
|
public function bootModelCapsule(): void
|
||||||
{
|
{
|
||||||
$capsule = new \Illuminate\Database\Capsule\Manager();
|
$capsule = new Manager();
|
||||||
$capsule->addConnection([
|
$capsule->addConnection(Config::get('db'));
|
||||||
'driver' => Config::get('db.driver'),
|
|
||||||
'host' => Config::get('db.host'),
|
|
||||||
'database' => Config::get('db.database'),
|
|
||||||
'username' => Config::get('db.username'),
|
|
||||||
'password' => Config::get('db.password'),
|
|
||||||
'charset' => 'utf8',
|
|
||||||
'collation' => 'utf8_unicode_ci',
|
|
||||||
'prefix' => '',
|
|
||||||
]);
|
|
||||||
|
|
||||||
$capsule->setAsGlobal();
|
$capsule->setAsGlobal();
|
||||||
$capsule->bootEloquent();
|
$capsule->bootEloquent();
|
||||||
}
|
}
|
||||||
@@ -113,10 +137,7 @@ class Server
|
|||||||
*/
|
*/
|
||||||
protected function registerRoutes(): void
|
protected function registerRoutes(): void
|
||||||
{
|
{
|
||||||
$this->router->get('/', function () {
|
$this->router->get('/', IndexController::class . '::get');
|
||||||
return JsonResponseFactory::createJsonResponse(['status_code' => 200, 'message' => 'Server is running']);
|
|
||||||
});
|
|
||||||
|
|
||||||
$this->router->middleware(new CorsMiddleware());
|
$this->router->middleware(new CorsMiddleware());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
308
src/Services/Facade.php
Normal file
308
src/Services/Facade.php
Normal file
@@ -0,0 +1,308 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Services;
|
||||||
|
|
||||||
|
use Illuminate\Contracts\Container\Container;
|
||||||
|
use Illuminate\Support\Testing\Fakes\Fake;
|
||||||
|
use Mockery;
|
||||||
|
use Mockery\Expectation;
|
||||||
|
use Mockery\ExpectationInterface;
|
||||||
|
use Mockery\LegacyMockInterface;
|
||||||
|
use Mockery\MockInterface;
|
||||||
|
|
||||||
|
class Facade
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The application instance being facaded.
|
||||||
|
*
|
||||||
|
* @var Container | null
|
||||||
|
*/
|
||||||
|
protected static ?Container $container = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The resolved object instances.
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected static array $resolvedInstance;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates if the resolved instance should be cached.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
protected static bool $cached = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run a Closure when the facade has been resolved.
|
||||||
|
*
|
||||||
|
* @param \Closure $callback
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function resolved(\Closure $callback): void
|
||||||
|
{
|
||||||
|
$accessor = static::getFacadeAccessor();
|
||||||
|
|
||||||
|
if (static::$container->resolved($accessor) === true) {
|
||||||
|
$callback(static::getFacadeRoot(), static::$container);
|
||||||
|
}
|
||||||
|
|
||||||
|
static::$container->afterResolving($accessor, function ($service, $app) use ($callback) {
|
||||||
|
$callback($service, $app);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert the facade into a Mockery spy.
|
||||||
|
*
|
||||||
|
* @return MockInterface
|
||||||
|
*/
|
||||||
|
public static function spy(): MockInterface
|
||||||
|
{
|
||||||
|
if (! static::isMock()) {
|
||||||
|
$class = static::getMockableClass();
|
||||||
|
|
||||||
|
return tap($class ? Mockery::spy($class) : Mockery::spy(), function ($spy) {
|
||||||
|
static::swap($spy);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new \RuntimeException('Cannot spy on an existing mock instance.');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initiate a partial mock on the facade.
|
||||||
|
*
|
||||||
|
* @return MockInterface
|
||||||
|
*/
|
||||||
|
public static function partialMock(): MockInterface
|
||||||
|
{
|
||||||
|
$name = static::getFacadeAccessor();
|
||||||
|
|
||||||
|
$mock = static::isMock()
|
||||||
|
? static::$resolvedInstance[$name]
|
||||||
|
: static::createFreshMockInstance();
|
||||||
|
|
||||||
|
return $mock->makePartial();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initiate a mock expectation on the facade.
|
||||||
|
*
|
||||||
|
* @return Expectation|ExpectationInterface
|
||||||
|
*/
|
||||||
|
public static function shouldReceive(): Mockery\Expectation | Mockery\ExpectationInterface
|
||||||
|
{
|
||||||
|
$name = static::getFacadeAccessor();
|
||||||
|
|
||||||
|
$mock = static::isMock()
|
||||||
|
? static::$resolvedInstance[$name]
|
||||||
|
: static::createFreshMockInstance();
|
||||||
|
|
||||||
|
return $mock->shouldReceive(...func_get_args());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initiate a mock expectation on the facade.
|
||||||
|
*
|
||||||
|
* @return Expectation|ExpectationInterface
|
||||||
|
*/
|
||||||
|
public static function expects(): Mockery\Expectation | Mockery\ExpectationInterface
|
||||||
|
{
|
||||||
|
$name = static::getFacadeAccessor();
|
||||||
|
|
||||||
|
$mock = static::isMock()
|
||||||
|
? static::$resolvedInstance[$name]
|
||||||
|
: static::createFreshMockInstance();
|
||||||
|
|
||||||
|
return $mock->expects(...func_get_args());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a fresh mock instance for the given class.
|
||||||
|
*
|
||||||
|
* @return MockInterface|LegacyMockInterface
|
||||||
|
*/
|
||||||
|
protected static function createFreshMockInstance(): MockInterface | LegacyMockInterface
|
||||||
|
{
|
||||||
|
return tap(static::createMock(), function ($mock) {
|
||||||
|
static::swap($mock);
|
||||||
|
|
||||||
|
$mock->shouldAllowMockingProtectedMethods();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a fresh mock instance for the given class.
|
||||||
|
*
|
||||||
|
* @return MockInterface
|
||||||
|
*/
|
||||||
|
protected static function createMock(): MockInterface
|
||||||
|
{
|
||||||
|
$class = static::getMockableClass();
|
||||||
|
|
||||||
|
return $class ? Mockery::mock($class) : Mockery::mock();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether a mock is set as the instance of the facade.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
protected static function isMock(): bool
|
||||||
|
{
|
||||||
|
$name = static::getFacadeAccessor();
|
||||||
|
|
||||||
|
return isset(static::$resolvedInstance[$name]) &&
|
||||||
|
static::$resolvedInstance[$name] instanceof LegacyMockInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the mockable class for the bound instance.
|
||||||
|
*
|
||||||
|
* @return string|null
|
||||||
|
*/
|
||||||
|
protected static function getMockableClass(): ?string
|
||||||
|
{
|
||||||
|
if ($root = static::getFacadeRoot()) {
|
||||||
|
return get_class($root);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hotswap the underlying instance behind the facade.
|
||||||
|
*
|
||||||
|
* @param mixed $instance
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function swap(mixed $instance): void
|
||||||
|
{
|
||||||
|
static::$resolvedInstance[static::getFacadeAccessor()] = $instance;
|
||||||
|
|
||||||
|
if (isset(static::$container)) {
|
||||||
|
static::$container->instance(static::getFacadeAccessor(), $instance);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether a "fake" has been set as the facade instance.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public static function isFake(): bool
|
||||||
|
{
|
||||||
|
$name = static::getFacadeAccessor();
|
||||||
|
|
||||||
|
return isset(static::$resolvedInstance[$name]) &&
|
||||||
|
static::$resolvedInstance[$name] instanceof Fake;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the root object behind the facade.
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public static function getFacadeRoot(): mixed
|
||||||
|
{
|
||||||
|
return static::resolveFacadeInstance(static::getFacadeAccessor());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the registered name of the component.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*
|
||||||
|
* @throws \RuntimeException
|
||||||
|
*/
|
||||||
|
protected static function getFacadeAccessor(): string
|
||||||
|
{
|
||||||
|
throw new \RuntimeException('Facade does not implement getFacadeAccessor method.');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolve the facade root instance from the container.
|
||||||
|
*
|
||||||
|
* @param string $name
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
protected static function resolveFacadeInstance(string $name): mixed
|
||||||
|
{
|
||||||
|
if (isset(static::$resolvedInstance[$name])) {
|
||||||
|
return static::$resolvedInstance[$name];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (static::$container) {
|
||||||
|
if (static::$cached) {
|
||||||
|
return static::$resolvedInstance[$name] = static::$container[$name];
|
||||||
|
}
|
||||||
|
|
||||||
|
return static::$container[$name];
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear a resolved facade instance.
|
||||||
|
*
|
||||||
|
* @param string $name
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function clearResolvedInstance(string $name): void
|
||||||
|
{
|
||||||
|
unset(static::$resolvedInstance[$name]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear all of the resolved instances.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function clearResolvedInstances(): void
|
||||||
|
{
|
||||||
|
static::$resolvedInstance = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the application instance behind the facade.
|
||||||
|
*/
|
||||||
|
public static function getFacadeContainer(): ?Container
|
||||||
|
{
|
||||||
|
return static::$container;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the application instance.
|
||||||
|
*
|
||||||
|
* @param Container | null $container
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function setFacadeContainer(Container | null $container): void
|
||||||
|
{
|
||||||
|
static::$container = $container;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle dynamic, static calls to the object.
|
||||||
|
*
|
||||||
|
* @param string $method
|
||||||
|
* @param array $args
|
||||||
|
* @return mixed
|
||||||
|
*
|
||||||
|
* @throws \RuntimeException
|
||||||
|
*/
|
||||||
|
public static function __callStatic(string $method, array $args)
|
||||||
|
{
|
||||||
|
$instance = static::getFacadeRoot();
|
||||||
|
|
||||||
|
if (! $instance) {
|
||||||
|
throw new \RuntimeException('A facade root has not been set.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $instance->$method(...$args);
|
||||||
|
}
|
||||||
|
}
|
||||||
31
src/Services/Facades/Config.php
Normal file
31
src/Services/Facades/Config.php
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Services\Facades;
|
||||||
|
|
||||||
|
use Siteworx\Config\Config as SwConfig;
|
||||||
|
use Siteworxpro\App\Services\Facade;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class Config
|
||||||
|
*
|
||||||
|
* This class serves as a facade for the configuration settings of the application.
|
||||||
|
* It extends the Facade class from the Illuminate\Support\Facades namespace.
|
||||||
|
*
|
||||||
|
* @method static array | bool | string | int | null get(string $key) Retrieve the configuration value for the given key. // @codingStandardsIgnoreStart
|
||||||
|
*
|
||||||
|
* @package Siteworx\App\Facades
|
||||||
|
*/
|
||||||
|
class Config extends Facade
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Get the registered name of the component.
|
||||||
|
*
|
||||||
|
* @return string The name of the component.
|
||||||
|
*/
|
||||||
|
protected static function getFacadeAccessor(): string
|
||||||
|
{
|
||||||
|
return SwConfig::class;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace Siteworxpro\App\Facades;
|
namespace Siteworxpro\App\Services\Facades;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
|
||||||
use RoadRunner\Logger\Logger as RRLogger;
|
use RoadRunner\Logger\Logger as RRLogger;
|
||||||
use Spiral\Goridge\RPC\RPC;
|
use Siteworxpro\App\Services\Facade;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Logger
|
* Class Logger
|
||||||
@@ -14,6 +13,7 @@ use Spiral\Goridge\RPC\RPC;
|
|||||||
* This class serves as a facade for the Monolog logger.
|
* This class serves as a facade for the Monolog logger.
|
||||||
* It extends the Facade class from the Illuminate\Support\Facades namespace.
|
* It extends the Facade class from the Illuminate\Support\Facades namespace.
|
||||||
*
|
*
|
||||||
|
* @method static debug(string $message, array $context = []) Log an informational message.
|
||||||
* @method static info(string $message, array $context = []) Log an informational message.
|
* @method static info(string $message, array $context = []) Log an informational message.
|
||||||
* @method static error(string $message, array $context = []) Log an error message.
|
* @method static error(string $message, array $context = []) Log an error message.
|
||||||
* @method static warning(string $message, array $context = []) Log a warning message.
|
* @method static warning(string $message, array $context = []) Log a warning message.
|
||||||
@@ -22,22 +22,6 @@ use Spiral\Goridge\RPC\RPC;
|
|||||||
*/
|
*/
|
||||||
class Logger extends Facade
|
class Logger extends Facade
|
||||||
{
|
{
|
||||||
public static function getFacadeRoot(): RRLogger
|
|
||||||
{
|
|
||||||
if (self::$resolvedInstance !== null) {
|
|
||||||
$logger = self::resolveFacadeInstance(self::getFacadeAccessor());
|
|
||||||
|
|
||||||
if ($logger instanceof RRLogger) {
|
|
||||||
return $logger;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$rpc = RPC::create('tcp://127.0.0.1:6001');
|
|
||||||
|
|
||||||
return new RRLogger($rpc);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the registered name of the component.
|
* Get the registered name of the component.
|
||||||
*
|
*
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace Siteworxpro\App\Facades;
|
namespace Siteworxpro\App\Services\Facades;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
|
||||||
use Predis\Client;
|
use Predis\Client;
|
||||||
use Predis\Response\Status;
|
use Predis\Response\Status;
|
||||||
|
use Siteworxpro\App\Services\Facade;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Facade for the Redis client.
|
* Facade for the Redis client.
|
||||||
@@ -21,25 +21,6 @@ use Predis\Response\Status;
|
|||||||
*/
|
*/
|
||||||
class Redis extends Facade
|
class Redis extends Facade
|
||||||
{
|
{
|
||||||
public static function getFacadeRoot(): Client
|
|
||||||
{
|
|
||||||
if (self::$resolvedInstance !== null) {
|
|
||||||
$redis = self::resolveFacadeInstance(self::getFacadeAccessor());
|
|
||||||
|
|
||||||
if ($redis instanceof Client) {
|
|
||||||
return $redis;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a new Redis client instance if not already resolved
|
|
||||||
return new Client([
|
|
||||||
'scheme' => 'tcp',
|
|
||||||
'host' => Config::get('redis.host'),
|
|
||||||
'port' => Config::get('redis.port'),
|
|
||||||
'database' => Config::get('redis.database'),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the registered name of the component.
|
* Get the registered name of the component.
|
||||||
*
|
*
|
||||||
20
src/Services/ServiceProviders/LoggerServiceProvider.php
Normal file
20
src/Services/ServiceProviders/LoggerServiceProvider.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Services\ServiceProviders;
|
||||||
|
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use RoadRunner\Logger\Logger as RRLogger;
|
||||||
|
use Spiral\Goridge\RPC\RPC;
|
||||||
|
|
||||||
|
class LoggerServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
public function register(): void
|
||||||
|
{
|
||||||
|
$this->app->singleton(RRLogger::class, function () {
|
||||||
|
$rpc = RPC::create('tcp://127.0.0.1:6001');
|
||||||
|
return new RRLogger($rpc);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
25
src/Services/ServiceProviders/RedisServiceProvider.php
Normal file
25
src/Services/ServiceProviders/RedisServiceProvider.php
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\App\Services\ServiceProviders;
|
||||||
|
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Predis\Client;
|
||||||
|
use Siteworxpro\App\Services\Facades\Config;
|
||||||
|
|
||||||
|
class RedisServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
public function register(): void
|
||||||
|
{
|
||||||
|
$this->app->singleton(Client::class, function () {
|
||||||
|
return new Client([
|
||||||
|
'scheme' => 'tcp',
|
||||||
|
'host' => Config::get('redis.host'),
|
||||||
|
'port' => Config::get('redis.port'),
|
||||||
|
'database' => Config::get('redis.database'),
|
||||||
|
'password' => Config::get('redis.password'),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
16
tests/Controllers/AbstractController.php
Normal file
16
tests/Controllers/AbstractController.php
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\Controllers;
|
||||||
|
|
||||||
|
use Nyholm\Psr7\ServerRequest;
|
||||||
|
use Siteworxpro\Tests\Unit;
|
||||||
|
|
||||||
|
abstract class AbstractController extends Unit
|
||||||
|
{
|
||||||
|
protected function getMockRequest(string $method = 'GET', string $uri = '/'): ServerRequest
|
||||||
|
{
|
||||||
|
return new ServerRequest($method, $uri);
|
||||||
|
}
|
||||||
|
}
|
||||||
54
tests/Controllers/ControllerTest.php
Normal file
54
tests/Controllers/ControllerTest.php
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\Controllers;
|
||||||
|
|
||||||
|
use Siteworxpro\App\Controllers\Controller;
|
||||||
|
|
||||||
|
class ControllerTest extends AbstractController
|
||||||
|
{
|
||||||
|
public function testNotFoundExceptions()
|
||||||
|
{
|
||||||
|
$testClass = new TestClass();
|
||||||
|
|
||||||
|
$this->expectException(\League\Route\Http\Exception\NotFoundException::class);
|
||||||
|
$testClass->get($this->getMockRequest());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testNotFoundExceptionPost()
|
||||||
|
{
|
||||||
|
$testClass = new TestClass();
|
||||||
|
|
||||||
|
$this->expectException(\League\Route\Http\Exception\NotFoundException::class);
|
||||||
|
$testClass->post($this->getMockRequest());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testNotFoundExceptionPut()
|
||||||
|
{
|
||||||
|
$testClass = new TestClass();
|
||||||
|
|
||||||
|
$this->expectException(\League\Route\Http\Exception\NotFoundException::class);
|
||||||
|
$testClass->put($this->getMockRequest());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testNotFoundExceptionDelete()
|
||||||
|
{
|
||||||
|
$testClass = new TestClass();
|
||||||
|
|
||||||
|
$this->expectException(\League\Route\Http\Exception\NotFoundException::class);
|
||||||
|
$testClass->delete($this->getMockRequest());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testNotFoundExceptionPatch()
|
||||||
|
{
|
||||||
|
$testClass = new TestClass();
|
||||||
|
|
||||||
|
$this->expectException(\League\Route\Http\Exception\NotFoundException::class);
|
||||||
|
$testClass->patch($this->getMockRequest());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TestClass extends Controller // phpcs:ignore
|
||||||
|
{
|
||||||
|
}
|
||||||
25
tests/Controllers/IndexControllerTest.php
Normal file
25
tests/Controllers/IndexControllerTest.php
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\Controllers;
|
||||||
|
|
||||||
|
use Siteworxpro\App\Controllers\IndexController;
|
||||||
|
|
||||||
|
class IndexControllerTest extends AbstractController
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @throws \JsonException
|
||||||
|
*/
|
||||||
|
public function testGet(): void
|
||||||
|
{
|
||||||
|
$this->assertTrue(true);
|
||||||
|
|
||||||
|
$controller = new IndexController();
|
||||||
|
|
||||||
|
$response = $controller->get($this->getMockRequest());
|
||||||
|
|
||||||
|
$this->assertEquals(200, $response->getStatusCode());
|
||||||
|
$this->assertEquals('{"status_code":200,"message":"Server is running"}', (string)$response->getBody());
|
||||||
|
}
|
||||||
|
}
|
||||||
32
tests/Facades/AbstractFacade.php
Normal file
32
tests/Facades/AbstractFacade.php
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\Facades;
|
||||||
|
|
||||||
|
use Siteworxpro\App\Services\Facade;
|
||||||
|
use Siteworxpro\Tests\Unit;
|
||||||
|
|
||||||
|
abstract class AbstractFacade extends Unit
|
||||||
|
{
|
||||||
|
abstract protected function getFacadeClass(): string;
|
||||||
|
abstract protected function getConcrete(): string;
|
||||||
|
|
||||||
|
public function testFacadeAccessor(): void
|
||||||
|
{
|
||||||
|
/** @var Facade | string $class */
|
||||||
|
$class = $this->getFacadeClass();
|
||||||
|
|
||||||
|
$this->assertTrue(
|
||||||
|
method_exists($class, 'getFacadeAccessor'),
|
||||||
|
sprintf('The class %s must implement the method getFacadeAccessor.', $class)
|
||||||
|
);
|
||||||
|
|
||||||
|
$facade = $class::getFacadeRoot();
|
||||||
|
|
||||||
|
$this->assertNotNull(
|
||||||
|
$facade,
|
||||||
|
sprintf('The facade %s is not properly initialized.', $this->getConcrete())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
21
tests/Facades/RedisTest.php
Normal file
21
tests/Facades/RedisTest.php
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\Facades;
|
||||||
|
|
||||||
|
use Predis\Client;
|
||||||
|
use Siteworxpro\App\Services\Facades\Redis;
|
||||||
|
|
||||||
|
class RedisTest extends AbstractFacade
|
||||||
|
{
|
||||||
|
protected function getFacadeClass(): string
|
||||||
|
{
|
||||||
|
return Redis::class;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getConcrete(): string
|
||||||
|
{
|
||||||
|
return Client::class;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,8 +7,8 @@ namespace Siteworxpro\Tests\Http\Middleware;
|
|||||||
use Nyholm\Psr7\Response;
|
use Nyholm\Psr7\Response;
|
||||||
use Nyholm\Psr7\ServerRequest;
|
use Nyholm\Psr7\ServerRequest;
|
||||||
use Psr\Http\Server\RequestHandlerInterface;
|
use Psr\Http\Server\RequestHandlerInterface;
|
||||||
use Siteworxpro\App\Facades\Config;
|
|
||||||
use Siteworxpro\App\Http\Middleware\CorsMiddleware;
|
use Siteworxpro\App\Http\Middleware\CorsMiddleware;
|
||||||
|
use Siteworxpro\App\Services\Facades\Config;
|
||||||
use Siteworxpro\Tests\Unit;
|
use Siteworxpro\Tests\Unit;
|
||||||
|
|
||||||
class CorsMiddlewareTest extends Unit
|
class CorsMiddlewareTest extends Unit
|
||||||
|
|||||||
43
tests/ServiceProviders/AbstractServiceProvider.php
Normal file
43
tests/ServiceProviders/AbstractServiceProvider.php
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\ServiceProviders;
|
||||||
|
|
||||||
|
use Illuminate\Container\Container;
|
||||||
|
use Illuminate\Contracts\Container\BindingResolutionException;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Siteworxpro\Tests\Unit;
|
||||||
|
|
||||||
|
abstract class AbstractServiceProvider extends Unit
|
||||||
|
{
|
||||||
|
abstract protected function getProviderClass(): string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws BindingResolutionException
|
||||||
|
*/
|
||||||
|
public function testProvider(): void
|
||||||
|
{
|
||||||
|
$container = new Container();
|
||||||
|
|
||||||
|
$providerClass = $this->getProviderClass();
|
||||||
|
|
||||||
|
/** @var ServiceProvider $providerClass */
|
||||||
|
$provider = new $providerClass($container);
|
||||||
|
|
||||||
|
$this->assertInstanceOf($providerClass, $provider);
|
||||||
|
$provider->register();
|
||||||
|
|
||||||
|
$bindings = $provider->bindings;
|
||||||
|
foreach ($bindings as $abstract => $concrete) {
|
||||||
|
$this->assertTrue($container->bound($abstract), "The $abstract is not bound in the container.");
|
||||||
|
$this->assertNotNull($container->make($abstract), "The $abstract could not be resolved.");
|
||||||
|
|
||||||
|
$this->assertInstanceOf(
|
||||||
|
$concrete,
|
||||||
|
$container->make($abstract),
|
||||||
|
"The $abstract is not an instance of $concrete."
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
tests/ServiceProviders/LoggerServiceProviderTest.php
Normal file
15
tests/ServiceProviders/LoggerServiceProviderTest.php
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\ServiceProviders;
|
||||||
|
|
||||||
|
use Siteworxpro\App\Services\ServiceProviders\LoggerServiceProvider;
|
||||||
|
|
||||||
|
class LoggerServiceProviderTest extends AbstractServiceProvider
|
||||||
|
{
|
||||||
|
protected function getProviderClass(): string
|
||||||
|
{
|
||||||
|
return LoggerServiceProvider::class;
|
||||||
|
}
|
||||||
|
}
|
||||||
15
tests/ServiceProviders/RedisServiceProviderTest.php
Normal file
15
tests/ServiceProviders/RedisServiceProviderTest.php
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Siteworxpro\Tests\ServiceProviders;
|
||||||
|
|
||||||
|
use Siteworxpro\App\Services\ServiceProviders\RedisServiceProvider;
|
||||||
|
|
||||||
|
class RedisServiceProviderTest extends AbstractServiceProvider
|
||||||
|
{
|
||||||
|
protected function getProviderClass(): string
|
||||||
|
{
|
||||||
|
return RedisServiceProvider::class;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,21 +5,29 @@ declare(strict_types=1);
|
|||||||
namespace Siteworxpro\Tests;
|
namespace Siteworxpro\Tests;
|
||||||
|
|
||||||
use Illuminate\Container\Container;
|
use Illuminate\Container\Container;
|
||||||
use Illuminate\Support\Facades\Facade;
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Siteworxpro\App\Facades\Config;
|
use Siteworx\Config\Config as SWConfig;
|
||||||
|
use Siteworxpro\App\Services\Facade;
|
||||||
|
use Siteworxpro\App\Services\Facades\Config;
|
||||||
|
|
||||||
abstract class Unit extends TestCase
|
abstract class Unit extends TestCase
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @throws \ReflectionException
|
||||||
|
*/
|
||||||
protected function setUp(): void
|
protected function setUp(): void
|
||||||
{
|
{
|
||||||
$container = new Container();
|
$container = new Container();
|
||||||
Facade::setFacadeApplication($container);
|
Facade::setFacadeContainer($container);
|
||||||
|
|
||||||
|
$container->bind(SWConfig::class, function () {
|
||||||
|
return SWConfig::load(__DIR__ . '/../config.php');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function tearDown(): void
|
protected function tearDown(): void
|
||||||
{
|
{
|
||||||
Config::clearResolvedInstances();
|
Config::clearResolvedInstances();
|
||||||
Facade::setFacadeApplication(null);
|
Facade::setFacadeContainer(null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user