Skip to content

Commit

Permalink
Run all the e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
james-chf committed Oct 14, 2022
1 parent baabc5c commit 21e3c75
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
2 changes: 0 additions & 2 deletions tests/src/e2e/eth_bridge_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ fn storage_key(path: &str) -> String {
}

#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn everything() {
const LEDGER_STARTUP_TIMEOUT_SECONDS: u64 = 30;
const CLIENT_COMMAND_TIMEOUT_SECONDS: u64 = 30;
Expand Down
14 changes: 0 additions & 14 deletions tests/src/e2e/ledger_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ fn run_ledger() -> Result<()> {
/// 2. Submit a valid token transfer tx
/// 3. Check that all the nodes processed the tx with the same result
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn test_node_connectivity() -> Result<()> {
// Setup 2 genesis validator nodes
let test =
Expand Down Expand Up @@ -133,8 +131,6 @@ fn test_node_connectivity() -> Result<()> {
/// 3. Check that the node detects this
/// 4. Check that the node shuts down
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn test_anoma_shuts_down_if_tendermint_dies() -> Result<()> {
let test = setup::single_node_net()?;

Expand Down Expand Up @@ -171,8 +167,6 @@ fn test_anoma_shuts_down_if_tendermint_dies() -> Result<()> {
/// 5. Reset the ledger's state
/// 6. Run the ledger again, it should start from fresh state
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn run_ledger_load_state_and_reset() -> Result<()> {
let test = setup::single_node_net()?;

Expand Down Expand Up @@ -240,8 +234,6 @@ fn run_ledger_load_state_and_reset() -> Result<()> {
/// 6. Query token balance
/// 7. Query the raw bytes of a storage key
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn ledger_txs_and_queries() -> Result<()> {
let test = setup::network(|genesis| genesis, None)?;

Expand Down Expand Up @@ -414,8 +406,6 @@ fn ledger_txs_and_queries() -> Result<()> {
/// 4. Restart the ledger
/// 5. Submit and invalid transactions (malformed)
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn invalid_transactions() -> Result<()> {
let test = setup::single_node_net()?;

Expand Down Expand Up @@ -922,8 +912,6 @@ fn pos_init_validator() -> Result<()> {
/// 1. Run the ledger node with 10s consensus timeout
/// 2. Spawn threads each submitting token transfer tx
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn ledger_many_txs_in_a_block() -> Result<()> {
let test = Arc::new(setup::network(
|genesis| genesis,
Expand Down Expand Up @@ -1528,8 +1516,6 @@ fn generate_proposal_json(
/// 4. Submit a valid token transfer tx from one validator to the other
/// 5. Check that all the nodes processed the tx with the same result
#[test]
#[ignore]
// TODO(namada#418): re-enable once working again
fn test_genesis_validators() -> Result<()> {
use std::collections::HashMap;
use std::net::SocketAddr;
Expand Down

0 comments on commit 21e3c75

Please sign in to comment.