mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
Add Solanum
This commit is contained in:
54
.github/workflows/solanum.yml
vendored
Normal file
54
.github/workflows/solanum.yml
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
name: irctest with Solanum
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.7
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/solanum
|
||||
key: ${{ runner.os }}-solanum
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pytest -r requirements.txt
|
||||
|
||||
- name: Checkout Solanum
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: solanum-ircd/solanum
|
||||
ref: 2e8a889fc94313acf53c430cec1bd044850769a0
|
||||
path: solanum
|
||||
|
||||
- name: Build Solanum
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/solanum/
|
||||
./autogen.sh
|
||||
./configure --prefix=$HOME/.local/
|
||||
make -j 4
|
||||
make install
|
||||
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.solanum -k 'not Oragono and not deprecated and not strict and not testDoubleKickMessages'
|
||||
|
||||
|
||||
|
13
README.md
13
README.md
@ -77,6 +77,19 @@ cd ~/irctest
|
||||
pytest --controller irctest.controllers.oragono -k 'not deprecated'
|
||||
```
|
||||
|
||||
To run (server) tests on Solanum:
|
||||
|
||||
```
|
||||
cd /tmp/
|
||||
git clone https://github.com/solanum-ircd/solanum.git
|
||||
cd charybdis
|
||||
./autogen.sh
|
||||
./configure --prefix=$HOME/.local/
|
||||
make -j 4
|
||||
make install
|
||||
pytest --controller irctest.controllers.solanum -k 'not Oragono and not deprecated and not strict'
|
||||
```
|
||||
|
||||
To run (server) tests on Charybdis::
|
||||
|
||||
```
|
||||
|
@ -42,6 +42,7 @@ TEMPLATE_SSL_CONFIG = """
|
||||
|
||||
class CharybdisController(BaseServerController, DirectoryBasedController):
|
||||
software_name = "Charybdis"
|
||||
binary_name = "charybdis"
|
||||
supported_sasl_mechanisms = set()
|
||||
supported_capabilities = set() # Not exhaustive
|
||||
|
||||
@ -85,7 +86,7 @@ class CharybdisController(BaseServerController, DirectoryBasedController):
|
||||
)
|
||||
self.proc = subprocess.Popen(
|
||||
[
|
||||
"charybdis",
|
||||
self.binary_name,
|
||||
"-foreground",
|
||||
"-configfile",
|
||||
os.path.join(self.directory, "server.conf"),
|
||||
|
10
irctest/controllers/solanum.py
Normal file
10
irctest/controllers/solanum.py
Normal file
@ -0,0 +1,10 @@
|
||||
from .charybdis import CharybdisController
|
||||
|
||||
|
||||
class SolanumController(CharybdisController):
|
||||
software_name = "Solanum"
|
||||
binary_name = "solanum"
|
||||
|
||||
|
||||
def get_irctest_controller_class():
|
||||
return SolanumController
|
Reference in New Issue
Block a user