daml/release/sdk-config.yaml.tmpl
Andreas Herrmann 6e25d10fe2
daml test-script (#3918)
* Start on daml test-scripts

* Run all `Script a` as test cases

* LedgerClient: Expose PackageManagementClient

To enable DAR uploads

* Upload the DAR to the ledger

* Start sandbox if no ledger specified

* Format daml test-script

* Fix deprecation warning on ActorMaterializer

* Add test-case //daml-script/tests:test_daml_script_test_runner

* Add daml test-script command

CHANGELOG_BEGIN

- [DAML Script - Experimental] Allow running DAML scripts as test-cases.
  Executing ``daml test-script --dar mydar.dar`` will execute all
  definitions matching the type ``Script a`` as test-cases.
  See `#3687 <https://github.com/digital-asset/daml/issues/3687>`__.

CHANGELOG_END

* daml-test-script enable logging

* Remove outdated TODO comment

* daml script-test More elaborate test-caseo

Compare to expected output and add failing test-case

* daml test-script Don't abort on test-failure

Before the test runner would abort on the first failed test-case. This
occasionally introduce additional test-failures if the sandbox was
torn down half-way through execution.

* ./fmt.sh

Co-authored-by: Andreas Herrmann <andreash87@gmx.ch>
2020-01-03 15:01:36 +01:00

80 lines
2.7 KiB
Cheetah

version: __VERSION__
commands:
- name: studio
path: daml-helper/daml-helper
desc: "Launch DAML Studio"
args: ["studio"]
- name: new
path: daml-helper/daml-helper
desc: "Create a new DAML project"
args: ["new"]
- name: migrate
path: daml-helper/daml-helper
args: ["migrate"]
- name: init
path: daml-helper/daml-helper
desc: "Configure a folder as a DAML project"
args: ["init"]
- name: build
path: damlc/damlc
args: ["build", "--project-check"]
desc: "Build the DAML project into a DAR file"
- name: test
path: damlc/damlc
args: ["test"]
desc: "Run the scenarios in the given DAML file and all dependencies"
- name: start
path: daml-helper/daml-helper
args: ["start"]
desc: "Launch Sandbox and Navigator for current DAML project"
- name: clean
path: damlc/damlc
args: ["clean", "--project-check"]
desc: "Delete build artifacts from project folder"
- name: damlc
path: damlc/damlc
desc: "Run the DAML compiler"
- name: sandbox
path: daml-helper/daml-helper
desc: "Launch the Sandbox"
args: ["run-jar", "--logback-config=daml-sdk/sandbox-logback.xml", "daml-sdk/daml-sdk.jar", "sandbox"]
- name: navigator
path: daml-helper/daml-helper
desc: "Launch the Navigator"
args: ["run-jar", "--logback-config=daml-sdk/navigator-logback.xml", "daml-sdk/daml-sdk.jar", "navigator"]
- name: extractor
path: daml-helper/daml-helper
desc: "Launch the Extractor"
args: ["run-jar", "--logback-config=daml-sdk/extractor-logback.xml", "daml-sdk/daml-sdk.jar", "extractor"]
- name: ledger
path: daml-helper/daml-helper
desc: "Interact with a DAML ledger (experimental)"
args: ["ledger"]
- name: deploy
path: daml-helper/daml-helper
desc: "Deploy DAML project to a ledger (experimental)"
args: ["deploy"]
- name: ide
path: damlc/damlc
args: ["lax", "ide"]
- name: json-api
path: daml-helper/daml-helper
desc: "Launch the HTTP JSON API (experimental)"
args: ["run-jar", "--logback-config=daml-sdk/json-api-logback.xml", "daml-sdk/daml-sdk.jar", "json-api"]
- name: codegen
path: daml-helper/daml-helper
desc: "Run the DAML codegen"
args: ["run-jar", "--logback-config=daml-sdk/codegen-logback.xml", "daml-sdk/daml-sdk.jar", "codegen"]
- name: trigger
path: daml-helper/daml-helper
args: ["run-jar", "--logback-config=daml-sdk/trigger-logback.xml", "daml-sdk/daml-sdk.jar", "trigger"]
desc: "Run a DAML trigger (experimental)"
- name: script
path: daml-helper/daml-helper
args: ["run-jar", "--logback-config=daml-sdk/script-logback.xml", "daml-sdk/daml-sdk.jar", "script"]
desc: "Run a DAML script (experimental)"
- name: test-script
path: daml-helper/daml-helper
args: ["run-jar", "--logback-config=daml-sdk/test-script-logback.xml", "daml-sdk/daml-sdk.jar", "test-script"]
desc: "Run a DAML script tests (experimental)"