Skip to content

Commit 4e9d9d2

Browse files
committed
Update docs and test comments
1 parent 872572a commit 4e9d9d2

8 files changed

+30
-31
lines changed

doc/e2e-testing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ An executable for concrete tests is also needed. For a working example see `test
2929

3030
The process is as follows:
3131

32-
1. Set `ps-entrypoint` in Makefile to `Examples.ByURL`.
32+
1. Set `ps-entrypoint` in Makefile to `CTL.Examples.ByURL`.
3333
2. run `make run-dev`.
3434
3. In another shell, run `make e2e-test`.
3535
4. Examples will be run headless by default. In case of errors, the browser console will be printed to the console.
@@ -52,7 +52,7 @@ Chrome extensions are unpacked to some directory by the browser. From there, the
5252
The default test suite accepts the arguments `--nami-dir` and `--gero-dir` to point to the directories from which the extensions are loaded. (see the Makefile) In order to use the "live" version of an extension, just pass the arguments accordingly, e.g.:
5353

5454
```
55-
@spago test --main Test.E2E -a "E2ETest --nami-dir ~/.config/google-chrome/Default/Extensions/lpfcbjknijpeeillifnkikgncikgfhdo/ --gero-dir ~/.config/google-chrome/Default/Extensions/iifeegfcfhlhhnilhfoeihllenamcfgc --chrome-exe google-chome
55+
@spago test --main Test.CTL.E2E -a "E2ETest --nami-dir ~/.config/google-chrome/Default/Extensions/lpfcbjknijpeeillifnkikgncikgfhdo/ --gero-dir ~/.config/google-chrome/Default/Extensions/iifeegfcfhlhhnilhfoeihllenamcfgc --chrome-exe google-chome
5656
```
5757

5858
### Where to Find the Installed Extensions
@@ -101,7 +101,7 @@ A new settings tarball can be easily created, for example using the `Makefile`:
101101

102102
If you are using CTL as a library, you can and should create your own test suite to test your own contracts.
103103

104-
1. Take `test/E2E.purs` as inspiration and create your own binary. You will find the necessary machinery in `Contract.Test.E2E`. Notable components:
104+
1. Take `test/E2E.purs` as inspiration and create your own binary. You will find the necessary machinery in `CTL.Contract.Test.E2E`. Notable components:
105105
- `withBrowser`: bracket to launch the browser with a specific extension, run something and clos the browser.
106106
- `parseOptions`: Parses command line options, in case you want to use the same as our example suite.
107107
- `publishTestFeedback`, `resetTestFeedback`, `retrieveTestFeedback`: Can be used to communicate success or failure from a contract to the tests.

doc/getting-started.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You will also need to become familiar with [CTL's runtime](./runtime.md) as its
4646

4747
### The `Contract` interface
4848

49-
CTL's public interface is contained in the `Contract.*` namespace. We recommend to always prefer imports from the `Contract` namespace. That is, **avoid importing any CTL modules not contained in `Contract`**, which should be considered internal. Importing non-`Contract` modules will make your code more brittle and susceptible to breakages when upgrading CTL versions.
49+
CTL's public interface is contained in the `CTL.Contract.*` namespace. We recommend to always prefer imports from the `Contract` namespace. That is, **avoid importing any CTL modules in `CTL.Internal.*`**. Importing internal modules will make your code more brittle and susceptible to breakages when upgrading CTL versions.
5050

5151
For example, avoid the following:
5252

@@ -55,17 +55,17 @@ For example, avoid the following:
5555
-- Anything not in in the `Contract` namespace should be considered an
5656
-- **internal** CTL module
5757
58-
import Types.TokenName (TokenName)
59-
import Types.Scripts (MintingPolicy)
58+
import CTL.Internal.Types.TokenName (TokenName)
59+
import CTL.Internal.Types.Scripts (MintingPolicy)
6060
6161
```
6262

6363
Instead, prefer:
6464

6565
```purescript
6666
67-
import Contract.Value (TokenName)
68-
import Contract.Scripts (MintingPolicy)
67+
import CTL.Contract.Value (TokenName)
68+
import CTL.Contract.Scripts (MintingPolicy)
6969
7070
```
7171

doc/plutip-testing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The services are NOT run by `docker-compose` as is the case with `launchCtlRunti
2828

2929
## Testing contracts
3030

31-
The main entry point to the testing interface is `Contract.Test.Plutip.runPlutipContract` function:
31+
The main entry point to the testing interface is `CTL.Contract.Test.Plutip.runPlutipContract` function:
3232

3333
```purescript
3434
runPlutipContract
@@ -75,7 +75,7 @@ You can run Plutip tests via CTL's `purescriptProject` as well. After creating y
7575
{
7676
some-plutip-test = project.runPlutipTest {
7777
name = "some-plutip-test";
78-
testMain = "MyProject.Test.Plutip";
78+
testMain = "Test.MyProject.Plutip";
7979
# If you don't need `ctl-server`, you can set the following
8080
# to `false`. Make sure to leave it as `true` (the default)
8181
# if you are calling `applyArgs` in your contracts. This

doc/side-by-side-ctl-plutus-comparison.md

+16-17
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,17 @@ of CTL:
104104
```PureScript
105105
module ExampleModule where
106106

107-
import Contract.Prelude
108-
import Contract.Monad (Contract, liftedE, liftedM, logInfo')
109-
import Contract.ScriptLookups (ScriptLookups, mkUnbalancedTx)
110-
import Contract.PlutusData (PlutusData)
111-
import Contract.Transaction
107+
import CTL.Contract.Prelude
108+
import CTL.Contract.Monad (Contract, liftedE, liftedM, logInfo')
109+
import CTL.Contract.ScriptLookups (ScriptLookups, mkUnbalancedTx)
110+
import CTL.Contract.PlutusData (PlutusData)
111+
import CTL.Contract.Transaction
112112
( BalancedSignedTransaction(BalancedSignedTransaction)
113+
, TransactionHash
113114
, balanceAndSignTx
114115
, submit
115116
)
116-
import Types.TxConstraints (TxConstraints)
117-
import Types.Transaction (TransactionHash)
117+
import CTL.Contract.TxConstraints (TxConstraints)
118118

119119
buildBalanceSignAndSubmitTx
120120
:: ScriptLookups PlutusData
@@ -230,10 +230,10 @@ contract.
230230

231231
```PureScript
232232
-- PureScript
233-
import Contract.PlutusData (PlutusData, unitDatum)
234-
import Contract.ScriptLookups as Lookups
235-
import Contract.TxConstraints as Constraints
236-
import Contract.Prelude
233+
import CTL.Contract.PlutusData (PlutusData, unitDatum)
234+
import CTL.Contract.ScriptLookups as Lookups
235+
import CTL.Contract.TxConstraints as Constraints
236+
import CTL.Contract.Prelude
237237
import Data.BigInt as BigInt
238238
239239
give :: ValidatorHash -> Contract () TransactionHash
@@ -279,24 +279,23 @@ To talk about the grab contract in CTL we need to talk about some
279279
functions and types of CTL first.
280280

281281
```PureScript
282-
module Plutus.Types.Transaction ...
282+
module CTL.Internal.Plutus.Types.Transaction ...
283283
.
284284
.
285285
.
286-
type Utxo = Map TransactionInput TransactionOutput
287-
newtype UtxoM = UtxoM Utxo
286+
type UtxoMap = Map TransactionInput TransactionOutputWithRefScript
288287
```
289288

290289
```PureScript
291-
module Contract.Utxos ...
290+
module CTL.Contract.Utxos ...
292291
.
293292
.
294293
.
295294
-- | This module defines query functionality via Ogmios to get utxos.
296295
-- | Gets utxos at an (internal) `Address` in terms of a Plutus Address`.
297296
-- | Results may vary depending on `Wallet` type. See `QueryM` for more details
298297
-- | on wallet variance.
299-
utxosAt :: forall (r :: Row Type). Address -> Contract r (Maybe UtxoM)
298+
utxosAt :: forall (r :: Row Type). Address -> Contract r (Maybe UtxoMap)
300299
```
301300

302301

@@ -317,7 +316,7 @@ grab
317316
-> Contract () Unit
318317
grab vhash validator txId = do
319318
let scriptAddress = scriptHashAddress vhash
320-
UtxoM utxos <- fromMaybe (UtxoM Map.empty) <$> utxosAt scriptAddress
319+
utxos <- fromMaybe Map.empty <$> utxosAt scriptAddress
321320
case fst <$> find hasTransactionId (Map.toUnfoldable utxos :: Array _) of
322321
Just txInput ->
323322
let

test/E2E.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import Test.Spec.Runner as SpecRunner
2020
import Test.CTL.Utils as Utils
2121
import Test.CTL.TestM (TestPlanM)
2222

23-
-- Run with `spago test --main Test.E2E`
23+
-- Run with `spago test --main Test.CTL.E2E`
2424
main :: Effect Unit
2525
main = launchAff_ $ do
2626
options <- liftEffect parseOptions

test/Integration.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Test.CTL.Types.Interval as Types.Interval
2121
import Test.CTL.Utils as Utils
2222
import Test.CTL.TestM (TestPlanM)
2323

24-
-- Run with `spago test --main Test.Integration`
24+
-- Run with `spago test --main Test.CTL.Integration`
2525
main :: Effect Unit
2626
main = launchAff_ do
2727
Utils.interpret testPlan

test/Plutip.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ import CTL.Internal.Wallet.Cip30Mock
148148
, withCip30Mock
149149
)
150150

151-
-- Run with `spago test --main Test.Plutip`
151+
-- Run with `spago test --main Test.CTL.Plutip`
152152
main :: Effect Unit
153153
main = launchAff_ do
154154
Utils.interpretWithConfig

test/TxOutput.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import CTL.Internal.Types.OutputDatum
2727
import Data.FoldableWithIndex (traverseWithIndex_)
2828
import Test.CTL.Utils as Utils
2929

30-
-- Run with `spago test --main Test.TxOutput`
30+
-- Run with `spago test --main Test.CTL.TxOutput`
3131
main :: Effect Unit
3232
main = launchAff_ do
3333
Utils.interpret suite

0 commit comments

Comments
 (0)