revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
use revue::widget::sortable::{sortable_list, SortableList};

#[test]
fn test_sortable_list_new() {
    let list = SortableList::new(["A", "B", "C"]);
    assert_eq!(list.items().len(), 3);
    assert_eq!(list.items()[0].label, "A");
    assert_eq!(list.items()[1].label, "B");
    assert_eq!(list.items()[2].label, "C");
}

#[test]
fn test_sortable_list_selection() {
    let mut list = SortableList::new(["A", "B", "C"]);
    assert!(list.selected().is_none());

    list.select_next();
    assert_eq!(list.selected(), Some(0));

    list.select_next();
    assert_eq!(list.selected(), Some(1));

    list.select_prev();
    assert_eq!(list.selected(), Some(0));
}

#[test]
fn test_sortable_list_move() {
    let mut list = SortableList::new(["A", "B", "C"]);
    list.set_selected(Some(0));

    list.move_down();
    assert_eq!(list.items()[0].label, "B");
    assert_eq!(list.items()[1].label, "A");
    assert_eq!(list.selected(), Some(1));

    list.move_up();
    assert_eq!(list.items()[0].label, "A");
    assert_eq!(list.items()[1].label, "B");
    assert_eq!(list.selected(), Some(0));
}

#[test]
fn test_sortable_list_drag() {
    let mut list = SortableList::new(["A", "B", "C"]);
    list.set_selected(Some(1));

    list.start_drag();
    assert!(list.is_dragging());
    assert!(list.items()[1].dragging);

    list.cancel_drag();
    assert!(!list.is_dragging());
    assert!(!list.items()[1].dragging);
}

#[test]
fn test_sortable_list_order() {
    let list = SortableList::new(["A", "B", "C"]);
    assert_eq!(list.order(), vec![0, 1, 2]);
}

#[test]
fn test_sortable_list_push_remove() {
    let mut list = SortableList::new(["A", "B"]);
    assert_eq!(list.items().len(), 2);

    list.push("C");
    assert_eq!(list.items().len(), 3);
    assert_eq!(list.items()[2].label, "C");

    let removed = list.remove(1);
    assert!(removed.is_some());
    assert_eq!(removed.unwrap().label, "B");
    assert_eq!(list.items().len(), 2);
}

#[test]
fn test_sortable_list_draggable_trait() {
    // Trait methods not in scope - cannot test directly
}

#[test]
fn test_sortable_list_on_reorder() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_handles() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_colors() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_items() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_items_mut() {
    // Private field mutation - cannot test directly
}

#[test]
fn test_sortable_list_end_drag() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_update_drop_target() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_remove_updates_selection() {
    let mut list = SortableList::new(["A", "B", "C"]);
    list.set_selected(Some(2)); // Select last item

    list.remove(2); // Remove selected item

    // Selection should move to new last item
    assert_eq!(list.selected(), Some(1));
}

#[test]
fn test_sortable_list_remove_all() {
    let mut list = SortableList::new(["A"]);
    list.set_selected(Some(0));

    list.remove(0);

    assert!(list.items().is_empty());
    assert_eq!(list.selected(), None);
}

#[test]
fn test_sortable_list_select_empty() {
    let mut list = SortableList::new::<[&str; 0], &str>([]);

    list.select_next();
    assert!(list.selected().is_none());

    list.select_prev();
    assert!(list.selected().is_none());
}

#[test]
fn test_sortable_list_render() {
    // render() method does not exist
}

#[test]
fn test_sortable_list_render_with_selection() {
    // render() method does not exist
}

#[test]
fn test_sortable_list_render_dragging() {
    // render() method does not exist
}

#[test]
fn test_sortable_list_handle_key() {
    // handle_key method does not exist or is private
}

#[test]
fn test_sortable_list_handle_key_move() {
    // handle_key method does not exist or is private
}

#[test]
fn test_sortable_list_handle_mouse() {
    // handle_mouse method does not exist or is private
}

#[test]
fn test_sortable_list_can_drop() {
    // can_drop method does not exist
}

#[test]
fn test_sortable_list_accepted_types() {
    // accepted_types method does not exist
}

#[test]
fn test_sortable_list_drag_enter_leave() {
    // Methods do not exist
}

#[test]
fn test_sortable_list_helper() {
    let list = sortable_list(["A", "B"]);
    assert_eq!(list.items().len(), 2);
}

#[test]
fn test_sortable_item_new() {
    // Private fields - cannot test directly
}

#[test]
fn test_sortable_list_order_after_reorder() {
    let mut list = SortableList::new(["A", "B", "C"]);
    list.set_selected(Some(0));
    list.move_down();

    // After moving A from 0 to 1, order is [B, A, C]
    // Original indices are [1, 0, 2]
    let order = list.order();
    assert_eq!(order, vec![1, 0, 2]);
}

#[test]
fn test_sortable_list_cancel_drag_out_of_bounds() {
    let mut list = SortableList::new(["A"]);
    list.set_selected(Some(0));
    list.start_drag();

    // Remove the item while dragging
    list.items_mut().clear();

    // Should not panic
    list.cancel_drag();
    assert!(!list.is_dragging());
}

#[test]
fn test_sortable_list_end_drag_same_position() {
    let mut list = SortableList::new(["A", "B", "C"]);
    list.set_selected(Some(1));
    list.start_drag();
    list.drop_target = Some(1); // Same position

    list.end_drag();

    // Should not reorder
    assert_eq!(list.items()[0].label, "A");
    assert_eq!(list.items()[1].label, "B");
}

#[test]
fn test_sortable_list_remove_out_of_bounds() {
    let mut list = SortableList::new(["A"]);
    let removed = list.remove(10);
    assert!(removed.is_none());
}

#[test]
fn test_sortable_list_move_at_boundary() {
    let mut list = SortableList::new(["A", "B"]);

    // Try to move up from first item
    list.set_selected(Some(0));
    list.move_up();
    assert_eq!(list.items()[0].label, "A"); // No change

    // Try to move down from last item
    list.set_selected(Some(1));
    list.move_down();
    assert_eq!(list.items()[1].label, "B"); // No change
}