mirror of
https://github.com/chatmail/relay.git
synced 2026-05-13 17:34:38 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77727e259e | ||
|
|
732fdb3dab | ||
|
|
fe648f4784 | ||
|
|
d43e046c5d | ||
|
|
3716f2e429 |
21
.github/workflows/ci.yaml
vendored
21
.github/workflows/ci.yaml
vendored
@@ -5,14 +5,27 @@ on:
|
|||||||
push:
|
push:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
tox:
|
||||||
name: Lint
|
name: chatmail tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Lint chatmaild
|
- name: run chatmaild tests
|
||||||
working-directory: chatmaild
|
working-directory: chatmaild
|
||||||
run: pipx run tox
|
run: pipx run tox
|
||||||
- name: Lint deploy-chatmail
|
- name: run deploy-chatmail offline tests
|
||||||
working-directory: deploy-chatmail
|
working-directory: deploy-chatmail
|
||||||
run: pipx run tox
|
run: pipx run tox
|
||||||
|
- name: run deploy-chatmail offline tests
|
||||||
|
working-directory: deploy-chatmail
|
||||||
|
run: pipx run tox
|
||||||
|
|
||||||
|
scripts:
|
||||||
|
name: chatmail script invocations
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: run init.sh
|
||||||
|
run: ./scripts/init.sh
|
||||||
|
- name: run test.sh
|
||||||
|
run: ./scripts/test.sh
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ addopts = "-v -ra --strict-markers"
|
|||||||
legacy_tox_ini = """
|
legacy_tox_ini = """
|
||||||
[tox]
|
[tox]
|
||||||
isolated_build = true
|
isolated_build = true
|
||||||
envlist = lint
|
envlist = lint,py
|
||||||
|
|
||||||
[testenv:lint]
|
[testenv:lint]
|
||||||
skipdist = True
|
skipdist = True
|
||||||
@@ -31,4 +31,10 @@ deps =
|
|||||||
commands =
|
commands =
|
||||||
black --quiet --check --diff src/
|
black --quiet --check --diff src/
|
||||||
ruff src/
|
ruff src/
|
||||||
|
|
||||||
|
[testenv]
|
||||||
|
passenv = CHATMAIL_DOMAIN
|
||||||
|
deps = pytest
|
||||||
|
pdbpp
|
||||||
|
commands = pytest -v -rsXx {posargs: ../tests/chatmaild}
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,13 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
python3 -m venv deploy-chatmail/venv
|
python3 -m venv venv
|
||||||
deploy-chatmail/venv/bin/pip install pyinfra pytest
|
pip=venv/bin/pip
|
||||||
deploy-chatmail/venv/bin/pip install -e deploy-chatmail
|
|
||||||
deploy-chatmail/venv/bin/pip install -e chatmaild
|
|
||||||
|
|
||||||
python3 -m venv chatmaild/venv
|
$pip install pyinfra pytest build 'setuptools>=68' tox deltachat
|
||||||
chatmaild/venv/bin/pip install --upgrade pytest build 'setuptools>=68'
|
$pip install -e deploy-chatmail
|
||||||
chatmaild/venv/bin/pip install -e chatmaild
|
$pip install -e chatmaild
|
||||||
|
|
||||||
python3 -m venv online-tests/venv
|
|
||||||
online-tests/venv/bin/pip install pytest pytest-timeout pdbpp deltachat
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
chatmaild/venv/bin/pytest chatmaild/ $@
|
tox -c chatmaild
|
||||||
online-tests/venv/bin/pytest online-tests/ -vrx --durations=5 $@
|
tox -c deploy-chatmail
|
||||||
|
venv/bin/pytest tests/online -vrx --durations=5 $@
|
||||||
|
|||||||
@@ -2,6 +2,12 @@ from chatmaild.filtermail import check_encrypted, check_DATA, SendRateLimiter
|
|||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def maildomain():
|
||||||
|
# let's not depend on a real chatmail instance for the offline tests below
|
||||||
|
return "chatmail.example.org"
|
||||||
|
|
||||||
|
|
||||||
def test_reject_forged_from(maildata, gencreds):
|
def test_reject_forged_from(maildata, gencreds):
|
||||||
class env:
|
class env:
|
||||||
mail_from = gencreds()[0]
|
mail_from = gencreds()[0]
|
||||||
|
|||||||
Reference in New Issue
Block a user