1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
cabal-version: 3.0
name: erebos-tester
version: 0.3.5
synopsis: Test framework able to run given program on multiple nodes in virtual network
description:
This framework is intended mainly for networking libraries/applications and
can run multiple concurrent instances of the tested application on
different nodes, possibly within separate subnets, on the virtual network.
Each instance can receive its own commands and produce output to be checked
via standard input/output, as defined using custom script language.
The virtual network is created using Linux namespaces, so the framework
is Linux-specific.
homepage: https://erebosprotocol.net/tester
-- bug-reports:
license: GPL-3.0-only
license-file: LICENSE
author: Roman Smrž
maintainer: roman.smrz@seznam.cz
-- copyright:
category: Testing
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://code.erebosprotocol.net/tester
executable erebos-tester
ghc-options:
-Wall
-fdefer-typed-holes
-threaded
-no-hs-main
main-is:
Main.hs
other-modules:
Asset
Config
GDB
JUnit
Network
Network.Ip
Output
Parser
Parser.Core
Parser.Expr
Parser.Shell
Parser.Statement
Paths_erebos_tester
Process
Process.Signal
Run
Run.Builtins
Run.Monad
Sandbox
Script.Expr
Script.Expr.Class
Script.Module
Script.Object
Script.Shell
Script.Var
Test
Test.Builtins
TestMode
TextFormat
TextFormat.Ansi
TextFormat.Types
Util
Version
Version.Git
autogen-modules:
Paths_erebos_tester
c-sources:
src/main.c
src/shell.c
other-extensions:
CPP
TemplateHaskell
default-extensions:
DefaultSignatures
DeriveTraversable
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
ImportQualifiedPost
LambdaCase
MultiParamTypeClasses
MultiWayIf
OverloadedStrings
QuantifiedConstraints
RankNTypes
RecordWildCards
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
TypeOperators
build-depends:
base ^>= { 4.15, 4.16, 4.17, 4.18, 4.19, 4.20, 4.21, 4.22 },
bytestring ^>= { 0.10, 0.11, 0.12 },
containers ^>= { 0.6.2.1, 0.7, 0.8 },
clock ^>= { 0.8.3 },
directory ^>=1.3.6.0,
filepath ^>= { 1.4.2.1, 1.5.2 },
Glob >=0.10 && <0.11,
haskeline >=0.8 && <0.9,
HsYAML >=0.2 && <0.3,
megaparsec >=9.0 && <10,
mtl >=2.2 && <2.4,
parser-combinators >=1.3 && <1.4,
process ^>=1.6.9,
regex-tdfa ^>=1.3.1.0,
scientific >=0.3 && < 0.4,
stm ^>= { 2.5.0 },
template-haskell^>= { 2.17, 2.18, 2.19, 2.20, 2.21, 2.22, 2.23, 2.24 },
text ^>= { 1.2, 2.0, 2.1 },
th-compat >=0.1 && <0.2,
unix >=2.7 && <2.9,
hs-source-dirs: src
default-language: Haskell2010
|