File: walkers.rs

package info (click to toggle)
thunderbird 1%3A91.13.0-1~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,953,400 kB
  • sloc: cpp: 6,084,049; javascript: 4,790,441; ansic: 3,341,496; python: 862,958; asm: 366,542; xml: 204,277; java: 152,477; sh: 111,436; makefile: 21,388; perl: 15,312; yacc: 4,583; objc: 3,026; lex: 1,720; exp: 762; pascal: 635; awk: 564; sql: 453; php: 436; lisp: 432; ruby: 99; sed: 69; csh: 45
file content (50 lines) | stat: -rw-r--r-- 1,439 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

extern crate rose_tree;

use rose_tree::RoseTree;

struct Weight;


#[test]
fn walk_children() {

    let (mut tree, root) = RoseTree::<Weight, u32>::new(Weight);
    let a = tree.add_child(root, Weight);
    let b = tree.add_child(root, Weight);
    let c = tree.add_child(root, Weight);

    let mut child_walker = tree.walk_children(root);
    assert_eq!(Some(c), child_walker.next(&tree));
    assert_eq!(Some(b), child_walker.next(&tree));
    assert_eq!(Some(a), child_walker.next(&tree));
    assert_eq!(None, child_walker.next(&tree));

    let d = tree.add_child(b, Weight);
    let e = tree.add_child(b, Weight);
    let f = tree.add_child(b, Weight);

    child_walker = tree.walk_children(b);
    assert_eq!(Some(f), child_walker.next(&tree));
    assert_eq!(Some(e), child_walker.next(&tree));
    assert_eq!(Some(d), child_walker.next(&tree));
    assert_eq!(None, child_walker.next(&tree));
}


#[test]
fn walk_siblings() {

    let (mut tree, root) = RoseTree::<Weight, u32>::new(Weight);
    let a = tree.add_child(root, Weight);
    let b = tree.add_child(root, Weight);
    let c = tree.add_child(root, Weight);
    let d = tree.add_child(root, Weight);

    let mut sibling_walker = tree.walk_siblings(a);
    assert_eq!(Some(d), sibling_walker.next(&tree));
    assert_eq!(Some(c), sibling_walker.next(&tree));
    assert_eq!(Some(b), sibling_walker.next(&tree));
    assert_eq!(None, sibling_walker.next(&tree));
}