-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathcardano-wallet-integration.cabal
224 lines (211 loc) · 5.97 KB
/
cardano-wallet-integration.cabal
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
cabal-version: 3.6
name: cardano-wallet-integration
version: 2024.9.3
synopsis: Cardano wallet integration tests and DSL
description: Please see README.md
homepage: https://github.com/cardano-foundation/cardano-wallet
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2018-2022 IOHK, 2023-2024 Cardano Foundation
license: Apache-2.0
category: Web
build-type: Simple
common language
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wunused-packages -Wall -Wcompat -Wredundant-constraints
-Wunused-imports
common opts-lib
ghc-options:
if flag(release)
ghc-options: -O2 -Werror
common opts-exe
ghc-options: -threaded -rtsopts
if flag(release)
ghc-options: -O2 -Werror
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library framework
import: language, opts-lib
visibility: public
hs-source-dirs: framework
build-depends:
, address-derivation-discovery
, aeson
, aeson-qq
, base
, base16-bytestring
, bech32
, bech32-th
, bytestring
, cardano-addresses
, cardano-ledger-shelley
, cardano-wallet-api
, cardano-wallet-application-extras
, cardano-wallet-exe
, cardano-wallet-launcher
, cardano-wallet-network-layer
, cardano-wallet-primitive
, cardano-wallet-secrets
, cardano-wallet-test-utils
, cardano-wallet:{cardano-wallet, mock-token-metadata}
, cborg
, command
, containers
, contra-tracer
, crypto-primitives
, directory
, either
, extra
, faucet
, flat
, fmt
, generic-lens
, generic-lens-core
, hspec
, hspec-core
, hspec-expectations-lifted
, http-api-data
, http-client
, http-types
, HUnit
, iohk-monitoring
, iohk-monitoring-extra
, lens
, lobemo-backend-ekg
, local-cluster:local-cluster-process
, local-cluster:local-cluster
, memory
, microstache
, monad-loops
, mtl
, network-uri
, resourcet
, retry
, pathtype
, serialise
, servant-client
, string-interpolate
, template-haskell
, temporary-extra
, text
, text-class
, time
, unliftio
, unliftio-core
, with-utf8
exposed-modules:
Test.Integration.Framework.Context
Test.Integration.Framework.DSL
Test.Integration.Framework.DSL.Network
Test.Integration.Framework.DSL.TestM
Test.Integration.Framework.DSL.Wallet
Test.Integration.Framework.LocalCluster.SendFaucetAssets
Test.Integration.Framework.Logging
Test.Integration.Framework.PendingInEra
Test.Integration.Framework.Request
Test.Integration.Framework.Setup
Test.Integration.Framework.TestData
Test.Integration.Plutus
library scenarios
import: language, opts-lib
hs-source-dirs: scenarios
build-depends:
, address-derivation-discovery
, aeson
, aeson-qq
, base
, bech32-th
, bytestring
, cardano-addresses
, cardano-api
, cardano-crypto
, cardano-crypto-class
, cardano-wallet-exe
, cardano-ledger-alonzo
, cardano-ledger-core
, cardano-wallet
, cardano-wallet-api
, cardano-wallet-integration:framework
, cardano-wallet-network-layer
, cardano-wallet-primitive
, cardano-wallet-read
, cardano-wallet-secrets
, cardano-wallet-test-utils
, command
, containers
, crypto-primitives
, either
, extra
, faucet
, generic-lens
, hspec
, hspec-core
, hspec-expectations-lifted
, http-api-data
, http-types
, lens-aeson
, local-cluster
, memory
, pathtype
, pretty-simple
, resourcet
, text
, text-class
, time
, unliftio
, unliftio-core
, unordered-containers
exposed-modules:
Test.Integration.Run
Test.Integration.Scenario.API.Blocks
Test.Integration.Scenario.API.Byron.Addresses
Test.Integration.Scenario.API.Byron.CoinSelections
Test.Integration.Scenario.API.Byron.HWWallets
Test.Integration.Scenario.API.Byron.Migrations
Test.Integration.Scenario.API.Byron.Network
Test.Integration.Scenario.API.Byron.Transactions
Test.Integration.Scenario.API.Byron.Wallets
Test.Integration.Scenario.API.Network
Test.Integration.Scenario.API.Shared.Addresses
Test.Integration.Scenario.API.Shared.Transactions
Test.Integration.Scenario.API.Shared.Wallets
Test.Integration.Scenario.API.Shelley.Addresses
Test.Integration.Scenario.API.Shelley.CoinSelections
Test.Integration.Scenario.API.Shelley.HWWallets
Test.Integration.Scenario.API.Shelley.Migrations
Test.Integration.Scenario.API.Shelley.Network
Test.Integration.Scenario.API.Shelley.Restoration
Test.Integration.Scenario.API.Shelley.Settings
Test.Integration.Scenario.API.Shelley.StakePools
Test.Integration.Scenario.API.Shelley.Transactions
Test.Integration.Scenario.API.Shelley.TransactionsNew
Test.Integration.Scenario.API.Shelley.Wallets
Test.Integration.Scenario.API.Voting
Test.Integration.Scenario.CLI.Byron.Addresses
Test.Integration.Scenario.CLI.Byron.Wallets
Test.Integration.Scenario.CLI.Miscellaneous
Test.Integration.Scenario.CLI.Network
Test.Integration.Scenario.CLI.Port
Test.Integration.Scenario.CLI.Shelley.Addresses
Test.Integration.Scenario.CLI.Shelley.HWWallets
Test.Integration.Scenario.CLI.Shelley.Transactions
Test.Integration.Scenario.CLI.Shelley.Wallets
common integration-common
import: language, opts-exe
hs-source-dirs: exe test/data
build-depends:
, base
, cardano-wallet-integration:scenarios
executable integration-exe
import: integration-common
main-is: integration-tests-exe.hs
test-suite integration
import: integration-common
type: exitcode-stdio-1.0
main-is: integration-tests.hs
build-tool-depends: cardano-wallet-exe:cardano-wallet