forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[language] move
diem-transactional-test-harness
, e2e-tests
, `e2e-…
…testsuite` into `diem-move` Closes: aptos-labs#9998
- Loading branch information
1 parent
92e782d
commit ef551d1
Showing
318 changed files
with
145 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[package] | ||
name = "diem-transactional-test-harness" | ||
version = "0.1.0" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Transactional testing framework for Move" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
either = "1.6.1" | ||
once_cell = "1.7.2" | ||
anyhow = "1.0.38" | ||
structopt = "0.3.21" | ||
bcs = "0.1.2" | ||
|
||
# Move dependencies | ||
move-transactional-test-runner = { path = "../../language/testing-infra/transactional-test-runner" } | ||
move-compiler = { path = "../../language/move-compiler" } | ||
move-binary-format = { path = "../../language/move-binary-format" } | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-command-line-common = { path = "../../language/move-command-line-common" } | ||
|
||
# Diem-Move dependencies | ||
language-e2e-tests = { path = "../e2e-tests" } | ||
diem-vm = { path = "../diem-vm" } | ||
vm-genesis= { path = "../vm-genesis" } | ||
diem-framework = { path = "../diem-framework" } | ||
diem-keygen = { path = "../diem-keygen" } | ||
|
||
# Other Diem dependencies | ||
diem-types = { path = "../../types", features = ["fuzzing"] } | ||
diem-transaction-builder = { path = "../../sdk/transaction-builder" } | ||
diem-crypto = { path = "../../crates/diem-crypto" } | ||
diem-state-view = { path = "../../storage/state-view" } | ||
diem-workspace-hack = { version = "0.1", path = "../../crates/diem-workspace-hack" } | ||
|
||
[dev-dependencies] | ||
datatest-stable = "0.1.1" | ||
|
||
[[test]] | ||
name = "tests" | ||
harness = false |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[package] | ||
name = "language-e2e-tests" | ||
version = "0.1.0" | ||
edition = "2018" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Diem language e2e testing framework" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
goldenfile = "1.1.0" | ||
bcs = "0.1.2" | ||
once_cell = "1.7.2" | ||
rand = "0.8.3" | ||
proptest = "1.0.0" | ||
proptest-derive = "0.3.0" | ||
hex = "0.4.3" | ||
serde = { version = "1.0.124", default-features = false } | ||
|
||
## Move dependencies | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-ir-compiler = { path = "../../language/move-ir-compiler" } | ||
move-vm-runtime = { path = "../../language/move-vm/runtime" } | ||
move-vm-types = { path = "../../language/move-vm/types" } | ||
move-binary-format = { path = "../../language/move-binary-format" } | ||
read-write-set = { path = "../../language/tools/read-write-set" } | ||
move-command-line-common = { path = "../../language/move-command-line-common" } | ||
|
||
## Diem-Move dependencies | ||
diem-writeset-generator = { path = "../writeset-transaction-generator" } | ||
vm-genesis = { path = "../vm-genesis" } | ||
diem-vm = { path = "../diem-vm" } | ||
diem-keygen = { path = "../diem-keygen" } | ||
diem-framework-releases = { path = "../diem-framework/DPN/releases" } | ||
|
||
## Other Diem Dependencies | ||
diem-crypto = { path = "../../crates/diem-crypto", features = ["fuzzing"] } | ||
diem-state-view = { path = "../../storage/state-view" } | ||
diem-types = { path = "../../types", features = ["fuzzing"] } | ||
diem-proptest-helpers = { path = "../../crates/diem-proptest-helpers" } | ||
diem-config = { path = "../../config" } | ||
diem-transaction-builder = { path = "../../sdk/transaction-builder" } | ||
diem-workspace-hack = { version = "0.1", path = "../../crates/diem-workspace-hack" } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[package] | ||
name = "language-e2e-testsuite" | ||
version = "0.1.0" | ||
edition = "2018" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Diem language e2e tests" | ||
repository = "https://github.com/diem/diem" | ||
homepage = "https://diem.com" | ||
license = "Apache-2.0" | ||
publish = false | ||
|
||
[dependencies] | ||
serde_json = "1.0.64" | ||
hex = "0.4.3" | ||
bcs = "0.1.2" | ||
proptest = "1.0.0" | ||
|
||
## Move dependencies | ||
move-core-types = { path = "../../language/move-core/types" } | ||
move-ir-compiler = { path = "../../language/move-ir-compiler" } | ||
move-vm-runtime = { path = "../../language/move-vm/runtime" } | ||
move-vm-types = { path = "../../language/move-vm/types" } | ||
move-binary-format = { path = "../../language/move-binary-format" } | ||
move-bytecode-verifier = { path = "../../language/move-bytecode-verifier" } | ||
read-write-set = { path = "../../language/tools/read-write-set" } | ||
|
||
## Diem-Move dependencies | ||
language-e2e-tests = { path = "../e2e-tests" } | ||
diem-keygen = { path = "../diem-keygen" } | ||
diem-vm = { path = "../diem-vm" } | ||
diem-framework-releases = { path = "../diem-framework/DPN/releases" } | ||
diem-parallel-executor = { path = "../parallel-executor" } | ||
diem-writeset-generator = { path = "../writeset-transaction-generator"} | ||
|
||
## Other Diem dependencies | ||
diem-crypto = { path = "../../crates/diem-crypto", features = ["fuzzing"] } | ||
diem-types = { path = "../../types", features = ["fuzzing"] } | ||
diem-transaction-builder = { path = "../../sdk/transaction-builder"} | ||
diem-logger = { path = "../../crates/diem-logger" } | ||
diem-state-view = { path = "../../storage/state-view" } | ||
diem-workspace-hack = { version = "0.1", path = "../../crates/diem-workspace-hack" } | ||
|
||
[features] | ||
default = ["diem-transaction-builder/fuzzing"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.