1
0
Fork 0
mirror of synced 2024-06-17 01:44:30 +12:00
ArchiveBox/.github/workflows/test.yml

159 lines
5.3 KiB
YAML
Raw Normal View History

name: Run tests
2020-07-04 08:52:28 +12:00
on: [push]
env:
DOCKER_IMAGE: archivebox-ci
PYTHONIOENCODING: utf-8
PYTHONLEGACYWINDOWSSTDIO: utf-8
USE_COLOR: False
2020-07-04 08:52:28 +12:00
jobs:
python_tests:
2020-07-23 11:30:36 +12:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
2024-01-05 14:39:45 +13:00
os: [ubuntu-22.04]
# os: [ubuntu-22.04, macos-latest, windows-latest]
2024-01-05 14:24:10 +13:00
python: [3.11]
2020-07-04 08:52:28 +12:00
steps:
2024-01-05 14:24:10 +13:00
- uses: actions/checkout@v4
2020-07-04 08:52:28 +12:00
with:
2020-11-28 23:48:45 +13:00
submodules: true
2020-07-04 08:52:28 +12:00
fetch-depth: 1
### Setup Python & JS Languages
2020-07-23 11:30:36 +12:00
- name: Set up Python ${{ matrix.python }}
2023-10-31 14:48:10 +13:00
uses: actions/setup-python@v4
2020-07-04 08:52:28 +12:00
with:
2020-07-23 11:30:36 +12:00
python-version: ${{ matrix.python }}
2020-07-04 08:52:28 +12:00
architecture: x64
2020-07-23 11:30:36 +12:00
2024-01-05 14:24:10 +13:00
- name: Set up Node JS
uses: actions/setup-node@v4
with:
2024-01-05 14:24:10 +13:00
node-version: 20.10.0
2023-10-31 14:48:10 +13:00
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
2024-01-05 16:26:54 +13:00
with:
python-version: '3.11'
cache: true
### Install Python & JS Dependencies
2020-08-06 06:30:20 +12:00
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
2024-01-05 14:24:10 +13:00
uses: actions/cache@v3
id: cache-pip
2020-07-23 11:30:36 +12:00
with:
2020-08-06 06:30:20 +12:00
path: ${{ steps.pip-cache.outputs.dir }}
2020-07-28 16:13:10 +12:00
key: ${{ runner.os }}-${{ matrix.python }}-venv-${{ hashFiles('setup.py') }}
2020-07-23 11:30:36 +12:00
restore-keys: |
2020-07-28 16:13:10 +12:00
${{ runner.os }}-${{ matrix.python }}-venv-
2020-07-23 11:30:36 +12:00
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
2024-01-05 15:34:00 +13:00
packages: ripgrep build-essential python3-dev python3-setuptools libssl-dev libldap2-dev libsasl2-dev zlib1g-dev libatomic1 python3-minimal gnupg2 curl wget python3-ldap python3-msgpack python3-mutagen python3-regex python3-pycryptodome procps
version: 1.0
2020-08-14 16:35:43 +12:00
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip setuptools wheel pytest bottle build
2024-01-05 15:21:27 +13:00
python -m pip install -r requirements.txt
2024-01-05 15:34:00 +13:00
python -m pip install -e .[sonic,ldap]
- name: Get npm cache dir
id: npm-cache
run: |
echo "::set-output name=dir::$GITHUB_WORKSPACE/node_modules"
- name: Cache npm
2024-01-05 14:24:10 +13:00
uses: actions/cache@v3
id: cache-npm
2020-08-05 02:01:17 +12:00
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules
- name: Install npm requirements
run: |
npm install
echo "SINGLEFILE_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/single-file" >> $GITHUB_ENV
echo "READABILITY_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/readability-extractor" >> $GITHUB_ENV
echo "MERCURY_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/mercury-parser" >> $GITHUB_ENV
2020-08-05 02:01:17 +12:00
### Run the tests
- name: Directory listing for debugging
2020-07-28 23:31:39 +12:00
run: |
pwd
ls
- name: Archivebox version
run: |
archivebox version
2020-07-23 11:30:36 +12:00
- name: Test built package with pytest
# TODO: remove this exception for windows once we get tests passing on that platform
2020-12-12 08:45:15 +13:00
if: ${{ !contains(matrix.os, 'windows') }}
2020-07-23 11:30:36 +12:00
run: |
python -m pytest -s --basetemp=tests/out --ignore=archivebox/vendor --ignore=deb_dist --ignore=pip_dist --ignore=brew_dist
docker_tests:
runs-on: ubuntu-latest
steps:
2024-01-05 14:24:10 +13:00
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
# TODO: as of 2020-11 this helper layer broke, upgrade and re-enable this once it's usable again
# - uses: satackey/action-docker-layer-caching@v0.0.8
- name: Build image
run: |
docker build . -t "$DOCKER_IMAGE"
- name: Init data dir
run: |
2020-12-12 07:38:51 +13:00
mkdir "${{ github.workspace }}/data"
docker run -v "${{ github.workspace }}/data":/data "$DOCKER_IMAGE" init
- name: Run test server
run: |
sudo bash -c 'echo "127.0.0.1 www.test-nginx-1.local www.test-nginx-2.local" >> /etc/hosts'
docker run --name www-nginx -p 80:80 -d nginx
- name: Add link
run: |
docker run -v "$PWD"/data:/data --network host "$DOCKER_IMAGE" add http://www.test-nginx-1.local
- name: Add stdin link
run: |
echo "http://www.test-nginx-2.local" | docker run -i --network host -v "$PWD"/data:/data "$DOCKER_IMAGE" add
- name: List links
run: |
docker run -v "$PWD"/data:/data "$DOCKER_IMAGE" list | grep -q "www.test-nginx-1.local" || { echo "The site 1 isn't in the list"; exit 1; }
docker run -v "$PWD"/data:/data "$DOCKER_IMAGE" list | grep -q "www.test-nginx-2.local" || { echo "The site 2 isn't in the list"; exit 1; }
- name: Start docker-compose stack
run: |
docker-compose run archivebox init
docker-compose up -d
sleep 5
curl --silent --location 'http://127.0.0.1:8000' | grep 'ArchiveBox'
curl --silent --location 'http://127.0.0.1:8000/static/admin/js/jquery.init.js' | grep 'window.django'
- name: Check added urls show up in index
run: |
docker-compose run archivebox add 'http://example.com/#test_docker' --index-only
curl --silent --location 'http://127.0.0.1:8000' | grep 'http://example.com/#test_docker'
docker-compose down || true