| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 | use crate::grid::group_test::script::GridGroupTest;use crate::grid::group_test::script::GroupScript::*;#[tokio::test]async fn board_init_test() {    let mut test = GridGroupTest::new().await;    let scripts = vec![        AssertGroupCount(3),        AssertGroup {            group_index: 0,            row_count: 2,        },        AssertGroup {            group_index: 1,            row_count: 2,        },        AssertGroup {            group_index: 2,            row_count: 1,        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_move_row_test() {    let mut test = GridGroupTest::new().await;    let group = test.group_at_index(0).await;    let scripts = vec![        // Move the row at 0 in group0 to group1 at 1        MoveRow {            from_group_index: 0,            from_row_index: 0,            to_group_index: 0,            to_row_index: 1,        },        AssertGroup {            group_index: 0,            row_count: 2,        },        AssertRow {            group_index: 0,            row_index: 1,            row: group.rows.get(0).unwrap().clone(),        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_move_row_to_other_group_test() {    let mut test = GridGroupTest::new().await;    let group = test.group_at_index(0).await;    let scripts = vec![        MoveRow {            from_group_index: 0,            from_row_index: 0,            to_group_index: 1,            to_row_index: 1,        },        AssertGroup {            group_index: 0,            row_count: 1,        },        AssertGroup {            group_index: 1,            row_count: 3,        },        AssertRow {            group_index: 1,            row_index: 1,            row: group.rows.get(0).unwrap().clone(),        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_move_row_to_other_group_and_reorder_test() {    let mut test = GridGroupTest::new().await;    let group = test.group_at_index(0).await;    let scripts = vec![        MoveRow {            from_group_index: 0,            from_row_index: 0,            to_group_index: 1,            to_row_index: 1,        },        MoveRow {            from_group_index: 1,            from_row_index: 1,            to_group_index: 1,            to_row_index: 2,        },        AssertRow {            group_index: 1,            row_index: 2,            row: group.rows.get(0).unwrap().clone(),        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_create_row_test() {    let mut test = GridGroupTest::new().await;    let scripts = vec![        CreateRow { group_index: 0 },        AssertGroup {            group_index: 0,            row_count: 3,        },        CreateRow { group_index: 1 },        CreateRow { group_index: 1 },        AssertGroup {            group_index: 1,            row_count: 4,        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_delete_row_test() {    let mut test = GridGroupTest::new().await;    let scripts = vec![        DeleteRow {            group_index: 0,            row_index: 0,        },        AssertGroup {            group_index: 0,            row_count: 1,        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_delete_all_row_test() {    let mut test = GridGroupTest::new().await;    let scripts = vec![        DeleteRow {            group_index: 0,            row_index: 0,        },        DeleteRow {            group_index: 0,            row_index: 0,        },        AssertGroup {            group_index: 0,            row_count: 0,        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_update_row_test() {    let mut test = GridGroupTest::new().await;    let scripts = vec![        // Update the row at 0 in group0 by setting the row's group field data        UpdateRow {            from_group_index: 0,            row_index: 0,            to_group_index: 1,        },        AssertGroup {            group_index: 0,            row_count: 1,        },        AssertGroup {            group_index: 1,            row_count: 3,        },    ];    test.run_scripts(scripts).await;}#[tokio::test]async fn board_reorder_group_test() {    let mut test = GridGroupTest::new().await;    let scripts = vec![        // Update the row at 0 in group0 by setting the row's group field data        UpdateRow {            from_group_index: 0,            row_index: 0,            to_group_index: 1,        },        AssertGroup {            group_index: 0,            row_count: 1,        },        AssertGroup {            group_index: 1,            row_count: 3,        },    ];    test.run_scripts(scripts).await;}
 |