mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
b3ae6560d7
The code still needs a fair amount of cleanup but it seems to work and there is a test so I’d like to do the cleanup in-tree after merging the current state
76 lines
2.1 KiB
Python
76 lines
2.1 KiB
Python
# Copyright (c) 2019 The DAML Authors. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
load(
|
|
"//bazel_tools:scala.bzl",
|
|
"da_scala_binary",
|
|
)
|
|
load(
|
|
"//bazel_tools/client_server:client_server_test.bzl",
|
|
"client_server_test",
|
|
)
|
|
|
|
genrule(
|
|
name = "script-test",
|
|
srcs =
|
|
glob(["**/*.daml"]) + [
|
|
"//daml-script/daml:daml-script.dar",
|
|
],
|
|
outs = ["script-test.dar"],
|
|
cmd = """
|
|
set -eou pipefail
|
|
TMP_DIR=$$(mktemp -d)
|
|
mkdir -p $$TMP_DIR/daml
|
|
cp -L $(location :daml/ScriptTest.daml) $$TMP_DIR/daml
|
|
cp -L $(location //daml-script/daml:daml-script.dar) $$TMP_DIR/
|
|
cat << EOF > $$TMP_DIR/daml.yaml
|
|
sdk-version: 0.0.0
|
|
name: script-test
|
|
source: daml
|
|
version: 0.0.1
|
|
dependencies:
|
|
- daml-stdlib
|
|
- daml-prim
|
|
- daml-script.dar
|
|
EOF
|
|
$(location //compiler/damlc) build --target=1.7 --project-root=$$TMP_DIR -o $$PWD/$(location script-test.dar)
|
|
rm -rf $$TMP_DIR
|
|
""",
|
|
tools = ["//compiler/damlc"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
da_scala_binary(
|
|
name = "test_client",
|
|
srcs = glob(["src/**/*.scala"]),
|
|
main_class = "com.daml.script.test.TestMain",
|
|
deps = [
|
|
"//daml-lf/archive:daml_lf_archive_reader",
|
|
"//daml-lf/archive:daml_lf_dev_archive_java_proto",
|
|
"//daml-lf/data",
|
|
"//daml-lf/interpreter",
|
|
"//daml-lf/language",
|
|
"//daml-lf/transaction",
|
|
"//daml-script/runner:script-runner-lib",
|
|
"//language-support/scala/bindings",
|
|
"//language-support/scala/bindings-akka",
|
|
"//ledger-api/rs-grpc-bridge",
|
|
"//ledger/ledger-api-common",
|
|
"@maven//:com_github_scopt_scopt_2_12",
|
|
"@maven//:com_typesafe_akka_akka_stream_2_12",
|
|
"@maven//:org_scalaz_scalaz_core_2_12",
|
|
],
|
|
)
|
|
|
|
client_server_test(
|
|
name = "test_static_time",
|
|
client = ":test_client",
|
|
client_files = ["$(rootpath :script-test.dar)"],
|
|
data = [":script-test.dar"],
|
|
server = "//ledger/sandbox:sandbox-binary",
|
|
server_args = ["--port=0"],
|
|
server_files = ["$(rootpath :script-test.dar)"],
|
|
)
|
|
|
|
# TODO Add wallclock time
|