2021-02-01 19:05:50 +03:00
|
|
|
name: test
|
2021-01-30 00:29:51 +03:00
|
|
|
|
2022-07-20 15:25:45 +03:00
|
|
|
on: [pull_request]
|
2021-01-30 00:29:51 +03:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2021-11-25 12:25:00 +03:00
|
|
|
benchsuite:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-17 11:04:49 +03:00
|
|
|
uses: actions/checkout@v3
|
2022-07-30 05:49:56 +03:00
|
|
|
- name: Environment
|
|
|
|
run: bin/environment.sh
|
|
|
|
- name: Install Prerequisites
|
|
|
|
run: bin/install_prerequisites_ubuntu.sh
|
|
|
|
- name: Install Rust
|
|
|
|
run: bin/install_rust_latest.sh
|
2022-03-10 21:42:20 +03:00
|
|
|
- name: Build
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/release/release.sh
|
2021-11-25 12:25:00 +03:00
|
|
|
- name: Run Bench Suite
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/test/bench.sh
|
2021-11-25 12:25:00 +03:00
|
|
|
- name: Archive artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-11-25 12:25:00 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: tests-bench-artifacts
|
|
|
|
path: |
|
|
|
|
bench/server.log
|
|
|
|
|
|
|
|
test-ubuntu-x64:
|
2021-01-30 00:29:51 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-25 12:25:00 +03:00
|
|
|
rust: [stable]
|
2021-01-30 00:29:51 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-17 11:04:49 +03:00
|
|
|
uses: actions/checkout@v3
|
2022-07-30 05:49:56 +03:00
|
|
|
- name: Environment
|
|
|
|
run: bin/environment.sh
|
|
|
|
- name: Install Prerequisites
|
|
|
|
run: bin/install_prerequisites_ubuntu.sh
|
|
|
|
- name: Install Rust
|
|
|
|
run: bin/install_rust_latest.sh
|
2021-01-30 00:29:51 +03:00
|
|
|
- name: Build
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/release/release.sh
|
|
|
|
- name: Test Prerequisites
|
|
|
|
run: bin/test/test_prerequisites.sh
|
2021-02-23 19:37:41 +03:00
|
|
|
- name: Run Tests units
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/test/test_unit.sh
|
2021-01-30 00:29:51 +03:00
|
|
|
- name: Run Integration Tests
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/test/test_integ.sh
|
2021-02-03 22:31:09 +03:00
|
|
|
- name: Archive production artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-02-03 22:31:09 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: tests-ubuntu-${{ matrix.rust }}-artifacts
|
2021-02-06 14:15:32 +03:00
|
|
|
path: |
|
|
|
|
integration/server.log
|
|
|
|
integration/server-ssl.log
|
2021-11-08 13:39:56 +03:00
|
|
|
integration/report/tests.json
|
|
|
|
integration/report/tests.xml
|
2021-11-08 13:23:15 +03:00
|
|
|
|
2021-11-25 12:25:00 +03:00
|
|
|
test-docker-archlinux-x64:
|
2021-11-08 13:23:15 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-17 11:04:49 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-11-25 12:25:00 +03:00
|
|
|
- name: Build, Test units and Integration tests
|
2021-11-17 12:20:40 +03:00
|
|
|
uses: addnab/docker-run-action@v3
|
2021-11-08 13:23:15 +03:00
|
|
|
with:
|
|
|
|
image: archlinux
|
|
|
|
options: --volume ${{ github.workspace }}:/work --workdir /work --privileged --env CARGO_TERM_COLOR=always
|
|
|
|
run: |
|
2022-07-30 05:49:56 +03:00
|
|
|
bin/environment.sh
|
|
|
|
bin/install_prerequisites_archlinux.sh
|
2022-06-05 22:08:50 +03:00
|
|
|
bin/install_rust_latest.sh
|
2022-07-30 05:49:56 +03:00
|
|
|
bin/release/release.sh
|
|
|
|
bin/test/test.sh
|
2021-11-08 13:23:15 +03:00
|
|
|
- name: Archive production artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-11-08 13:23:15 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: tests-archlinux-x64-artifacts
|
|
|
|
path: |
|
|
|
|
integration/mitmdump.log
|
|
|
|
integration/server.log
|
|
|
|
integration/server-ssl.log
|
|
|
|
|
2021-11-25 12:25:00 +03:00
|
|
|
test-docker-fedora-x64:
|
2021-11-17 12:20:40 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-17 11:04:49 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-11-25 12:25:00 +03:00
|
|
|
- name: Build, Test units and Integration tests
|
2021-11-17 12:20:40 +03:00
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
|
|
|
image: fedora
|
|
|
|
options: --volume ${{ github.workspace }}:/work --workdir /work --privileged --env CARGO_TERM_COLOR=always
|
|
|
|
run: |
|
2022-07-30 05:49:56 +03:00
|
|
|
bin/environment.sh
|
|
|
|
bin/install_prerequisites_fedora.sh
|
2022-06-05 22:08:50 +03:00
|
|
|
bin/install_rust_latest.sh
|
2022-07-30 05:49:56 +03:00
|
|
|
bin/release/release.sh
|
|
|
|
bin/test/test.sh
|
2021-11-17 12:20:40 +03:00
|
|
|
- name: Archive production artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-11-17 12:20:40 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: tests-fedora-x64-artifacts
|
|
|
|
path: |
|
|
|
|
integration/mitmdump.log
|
|
|
|
integration/server.log
|
|
|
|
integration/server-ssl.log
|
|
|
|
|
2021-11-29 15:58:18 +03:00
|
|
|
test-docker-alpine-x64:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-17 11:04:49 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-11-29 15:58:18 +03:00
|
|
|
- name: Build, Test units and Integration tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
|
|
|
image: alpine
|
2022-01-20 13:47:13 +03:00
|
|
|
options: --volume ${{ github.workspace }}:/work --workdir /work --privileged --env CARGO_TERM_COLOR=always --env RUSTFLAGS=-Ctarget-feature=-crt-static
|
2021-11-29 15:58:18 +03:00
|
|
|
run: |
|
2022-07-30 05:49:56 +03:00
|
|
|
bin/environment.sh
|
|
|
|
bin/install_prerequisites_alpine.sh
|
2022-06-05 22:08:50 +03:00
|
|
|
bin/install_rust_latest.sh
|
2022-07-30 05:49:56 +03:00
|
|
|
bin/release/release.sh
|
|
|
|
bin/test/test.sh
|
2021-11-29 15:58:18 +03:00
|
|
|
- name: Archive production artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-11-29 15:58:18 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: tests-alpine-x64-artifacts
|
|
|
|
path: |
|
|
|
|
integration/mitmdump.log
|
|
|
|
integration/server.log
|
|
|
|
integration/server-ssl.log
|
|
|
|
|
2022-04-29 18:27:17 +03:00
|
|
|
test-macos-x64:
|
2021-01-30 00:29:51 +03:00
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-25 12:25:00 +03:00
|
|
|
rust: [stable]
|
2021-01-30 00:29:51 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-17 11:04:49 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-02-01 23:49:34 +03:00
|
|
|
- name: Environment
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/environment.sh
|
|
|
|
- name: Install Rust
|
|
|
|
run: bin/install_rust_latest.sh
|
2021-01-30 00:29:51 +03:00
|
|
|
- name: Build
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/release/release.sh
|
|
|
|
- name: Test Prerequisites
|
|
|
|
run: bin/test/test_prerequisites.sh
|
2021-02-23 19:37:41 +03:00
|
|
|
- name: Run Tests units
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/test/test_unit.sh
|
2021-01-30 00:29:51 +03:00
|
|
|
- name: Run Integration Tests
|
2022-07-30 05:49:56 +03:00
|
|
|
run: bin/test/test_integ.sh
|
2021-02-03 22:31:09 +03:00
|
|
|
- name: Archive production artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-02-03 22:31:09 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
2022-04-29 18:27:17 +03:00
|
|
|
name: tests-macos-${{ matrix.rust }}-artifacts
|
2021-02-06 14:15:32 +03:00
|
|
|
path: |
|
|
|
|
integration/server.log
|
|
|
|
integration/server-ssl.log
|
2021-02-23 19:37:41 +03:00
|
|
|
|
2021-11-25 12:25:00 +03:00
|
|
|
test-windows-x64:
|
2021-02-23 19:37:41 +03:00
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-25 12:25:00 +03:00
|
|
|
rust: [stable]
|
2021-02-23 19:37:41 +03:00
|
|
|
env:
|
|
|
|
VCPKGRS_DYNAMIC: 1
|
|
|
|
steps:
|
|
|
|
- name: Set git to use LF
|
|
|
|
run: |
|
|
|
|
git config --global core.autocrlf false
|
|
|
|
git config --global core.eol lf
|
|
|
|
- name: Checkout repository
|
2022-05-19 17:11:07 +03:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
C:\vcpkg\installed
|
2022-05-21 20:40:41 +03:00
|
|
|
key: ${{ runner.os }}-test-windows-x64-${{ github.sha }}
|
|
|
|
restore-keys: ${{ runner.os }}-test-windows-x64-
|
2021-02-23 19:37:41 +03:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
profile: minimal
|
|
|
|
- name: Environment
|
|
|
|
run: |
|
|
|
|
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
|
|
|
|
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
|
|
|
|
cargo --version
|
|
|
|
$PsVersionTable
|
|
|
|
- name: Install build and tests prequisites
|
|
|
|
run: |
|
|
|
|
# vcpkg build prequisites
|
|
|
|
(Get-Command vcpkg).Path
|
2022-05-19 17:11:07 +03:00
|
|
|
if (Test-Path C:\vcpkg\installed) {vcpkg update} else {vcpkg install libxml2:x64-windows}
|
2021-02-23 19:37:41 +03:00
|
|
|
vcpkg integrate install
|
|
|
|
# install proxy and server
|
2022-08-24 15:18:49 +03:00
|
|
|
pip3 install --requirement bin/requirements-frozen.txt
|
2021-02-23 19:37:41 +03:00
|
|
|
- name: Run Tests units
|
|
|
|
run: |
|
|
|
|
cd .\integration
|
|
|
|
Start-Job -Name mitmdump -ScriptBlock { mitmdump --listen-port 8888 --modify-header "/From-Proxy/Hello" }
|
|
|
|
Start-Job -Name server -ScriptBlock { python server.py > server.log }
|
|
|
|
Start-Job -Name server -ScriptBlock { python ssl/server.py > server-ssl.log }
|
|
|
|
Get-Job -Name server
|
|
|
|
Get-Job -Name mitmdump
|
|
|
|
Start-Sleep 5
|
|
|
|
cd ..
|
2022-01-28 12:53:13 +03:00
|
|
|
cargo test --features strict --tests
|
2021-02-23 19:37:41 +03:00
|
|
|
- name: Run Integration tests
|
|
|
|
run: |
|
2022-03-21 21:24:06 +03:00
|
|
|
cargo build --release --verbose --locked
|
|
|
|
target\release\hurl.exe --version
|
2021-02-23 19:37:41 +03:00
|
|
|
$execdir=[System.Environment]::SystemDirectory
|
|
|
|
Get-ChildItem -Path ".\target\release" -Recurse -Include *.dll -File | Copy-Item -Destination "${execdir}"
|
|
|
|
Get-ChildItem -Path ".\target\release" -Recurse -Include hurl*.exe -File | Copy-Item -Destination "${execdir}"
|
|
|
|
cd .\integration
|
|
|
|
Start-Job -Name mitmdump -ScriptBlock { mitmdump --listen-port 8888 --modify-header "/From-Proxy/Hello" }
|
|
|
|
Start-Job -Name server -ScriptBlock { python server.py > server.log }
|
|
|
|
Start-Job -Name server -ScriptBlock { python ssl/server.py > server-ssl.log }
|
|
|
|
Get-Job -Name server
|
|
|
|
Get-Job -Name mitmdump
|
|
|
|
Start-Sleep 5
|
|
|
|
python integration.py
|
|
|
|
- name: Archive production artifacts
|
2022-05-17 11:04:53 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-02-23 19:37:41 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: tests-win64-${{ matrix.rust }}-artifacts
|
|
|
|
path: |
|
|
|
|
integration/server.log
|
2022-05-20 15:26:13 +03:00
|
|
|
integration/server-ssl.log
|
2022-06-07 15:17:45 +03:00
|
|
|
|