Piotr F. Mieszkowski
c81c6e6e0d
- Let the user overwrite Python binary name while calling make. - Use environment variable set by make to instruct e2e_test.py which binary it should call to execute Python code.
73 lines
2 KiB
INI
73 lines
2 KiB
INI
#
|
|
# gpg-mailgate
|
|
#
|
|
# This file is part of the gpg-mailgate source code.
|
|
#
|
|
# gpg-mailgate is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# gpg-mailgate source code is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with gpg-mailgate source code. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# NOTE: We use <key>:<value> syntax, because some values contain
|
|
# colons and that is default ConfigParser key-value separator.
|
|
|
|
[relay]
|
|
port: 2500
|
|
script: test/relay.py
|
|
|
|
[dirs]
|
|
keys: test/keyhome
|
|
certs: test/certs
|
|
|
|
[tests]
|
|
# Number of "test-*" sections in this file, describing test cases.
|
|
cases: 6
|
|
e2e_log: test/logs/e2e.log
|
|
e2e_log_format: %(asctime)s %(pathname)s:%(lineno)d %(levelname)s [%(funcName)s] %(message)s
|
|
e2e_log_datefmt: %Y-%m-%d %H:%M:%S
|
|
lacre_log: test/logs/gpg-mailgate.log
|
|
|
|
[case-1]
|
|
descr: Clear text message to a user without a key
|
|
to: carlos@disposlab
|
|
in: test/msgin/clear2clear.msg
|
|
out: Body of the message.
|
|
|
|
[case-2]
|
|
descr: Clear text message to a user with an RSA key
|
|
to: alice@disposlab
|
|
in: test/msgin/clear2rsa.msg
|
|
out: -----BEGIN PGP MESSAGE-----
|
|
|
|
[case-3]
|
|
descr: Clear text message to a user with an Ed25519 key
|
|
to: bob@disposlab
|
|
in: test/msgin/clear2ed.msg
|
|
out: -----BEGIN PGP MESSAGE-----
|
|
|
|
[case-4]
|
|
descr: Encrypted message to a user with an Ed25519 key
|
|
to: bob@disposlab
|
|
in: test/msgin/ed2ed.msg
|
|
out: -----BEGIN PGP MESSAGE-----
|
|
|
|
[case-5]
|
|
descr: Signed message to a user with an Ed25519 key
|
|
to: bob@disposlab
|
|
in: test/msgin/signed.msg
|
|
out: -----BEGIN PGP MESSAGE-----
|
|
|
|
[case-6]
|
|
descr: Multipart encrypted message to a user with an Ed25519 key.
|
|
to: bob@disposlab
|
|
in: test/msgin/multipart2rsa.msg
|
|
out: -----BEGIN PGP MESSAGE-----
|