aboutsummaryrefslogtreecommitdiff
path: root/helix-term/tests/integration.rs
blob: a32eebf5bb59677b15ceca3982bf54f8defff0ed (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#[cfg(feature = "integration")]
mod integration {
    mod helpers;

    use std::path::PathBuf;

    use helix_core::{syntax::AutoPairConfig, Position, Selection};
    use helix_term::{args::Args, config::Config};

    use indoc::indoc;

    use self::helpers::*;

    #[tokio::test]
    async fn hello_world() -> anyhow::Result<()> {
        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            ("#[\n|]#", "ihello world<esc>", "hello world#[|\n]#"),
        )?;

        Ok(())
    }

    #[tokio::test]
    async fn insert_mode_cursor_position() -> anyhow::Result<()> {
        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            TestCase {
                in_text: String::new(),
                in_selection: Selection::single(0, 0),
                in_keys: "i".into(),
                out_text: String::new(),
                out_selection: Selection::single(0, 0),
            },
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            ("#[\n|]#", "i", "#[|\n]#"),
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            ("#[\n|]#", "i<esc>", "#[|\n]#"),
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            ("#[\n|]#", "i<esc>i", "#[|\n]#"),
        )?;

        Ok(())
    }

    /// Range direction is preserved when escaping insert mode to normal
    #[tokio::test]
    async fn insert_to_normal_mode_cursor_position() -> anyhow::Result<()> {
        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            ("#[f|]#oo\n", "vll<A-;><esc>", "#[|foo]#\n"),
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            (
                indoc! {"\
                    #[f|]#oo
                    #(b|)#ar"
                },
                "vll<A-;><esc>",
                indoc! {"\
                    #[|foo]#
                    #(|bar)#"
                },
            ),
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            (
                indoc! {"\
                    #[f|]#oo
                    #(b|)#ar"
                },
                "a",
                indoc! {"\
                    #[fo|]#o
                    #(ba|)#r"
                },
            ),
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            (
                indoc! {"\
                    #[f|]#oo
                    #(b|)#ar"
                },
                "a<esc>",
                indoc! {"\
                    #[f|]#oo
                    #(b|)#ar"
                },
            ),
        )?;

        Ok(())
    }

    #[tokio::test]
    async fn auto_pairs_basic() -> anyhow::Result<()> {
        test_key_sequence_text_result(
            Args::default(),
            Config::default(),
            ("#[\n|]#", "i(<esc>", "(#[|)]#\n"),
        )?;

        test_key_sequence_text_result(
            Args::default(),
            Config {
                editor: helix_view::editor::Config {
                    auto_pairs: AutoPairConfig::Enable(false),
                    ..Default::default()
                },
                ..Default::default()
            },
            ("#[\n|]#", "i(<esc>", "(#[|\n]#"),
        )?;

        Ok(())
    }

    #[tokio::test]
    async fn auto_indent_c() -> anyhow::Result<()> {
        test_key_sequence_text_result(
            Args {
                files: vec![(PathBuf::from("foo.c"), Position::default())],
                ..Default::default()
            },
            Config::default(),
            // switches to append mode?
            (
                "void foo() {#[|}]#\n",
                "i<ret><esc>",
                indoc! {"\
                    void foo() {
                      #[|\n]#\
                    }
                "},
            ),
        )?;

        Ok(())
    }
}