summaryrefslogtreecommitdiff
path: root/tests/test-shortcut.c
blob: 0b92183b000b3775e8713d34794e9b7d704d75e9 (plain)
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
/**
 * vimb - a webkit based vim like browser.
 *
 * Copyright (C) 2012-2018 Daniel Carl
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see http://www.gnu.org/licenses/.
 */

#include <gtk/gtk.h>
#include <src/shortcut.h>
#include <src/main.h>

Shortcut *sc = NULL;

static void test_shortcut(void)
{
    char *uri;
    unsigned int i;
    struct {
        char *in;
        char *out;
    } data[] = {
        /* call with shortcut identifier */
        {"_vimb1_ zero one", "only-zero:zero%20one"},
        /* don't fail on unmatches quotes if there are only $0 placeholders */
        {"_vimb1_ 'unmatches quote", "only-zero:'unmatches%20quote"},
        /* check if all placeholders $0 are replaces */
        {"_vimb5_ one two", "double-zero:one%20two-one%20two"},
        /* check the defautl shortcut is used */
        {"zero one two three", "default:zero-two%20three"},
        /* don't remove non matched placeholders */
        {"zero", "default:zero-$2"},
        {"_vimb3_ zero one two three four five six seven eight nine", "fullrange:zero-one-nine"}
    };

    for (i = 0; i < LENGTH(data); i++) {
        uri = shortcut_get_uri(sc, data->in);
        g_assert_cmpstr(uri, ==, data->out);
        g_free(uri);
    }
}

static void test_shortcut_shell_param(void)
{
    char *uri;

    /* double quotes */
    uri = shortcut_get_uri(sc, "_vimb6_ \"rail station\" city hall");
    g_assert_cmpstr(uri, ==, "shell:rail%20station-city%20hall");
    g_free(uri);

    /* single quotes */
    uri = shortcut_get_uri(sc, "_vimb6_ 'rail station' 'city hall'");
    g_assert_cmpstr(uri, ==, "shell:rail%20station-city%20hall");
    g_free(uri);

    /* ignore none matching quote errors */
    uri = shortcut_get_uri(sc, "_vimb6_ \"rail station\" \"city hall");
    g_assert_cmpstr(uri, ==, "shell:rail%20station-city%20hall");
    g_free(uri);

    /* don't fill up quoted param with unquoted stuff */
    uri = shortcut_get_uri(sc, "_vimb6_ \"param 1\" \"param 2\" ignored params");
    g_assert_cmpstr(uri, ==, "shell:param%201-param%202");
    g_free(uri);

    /* allo quotes within tha last parameter */
    uri = shortcut_get_uri(sc, "_vimb6_ param1 param2 \"containing quotes\"");
    g_assert_cmpstr(uri, ==, "shell:param1-param2%20%22containing%20quotes%22");
    g_free(uri);
}

static void test_shortcut_remove(void)
{
    char *uri;

    g_assert_true(shortcut_remove(sc, "_vimb4_"));

    /* check if the shortcut is really no used */
    uri = shortcut_get_uri(sc, "_vimb4_ test");
    g_assert_cmpstr(uri, ==, "default:_vimb4_-$2");
    g_free(uri);

    g_assert_false(shortcut_remove(sc, "_vimb4_"));
}

int main(int argc, char *argv[])
{
    int result;
    sc = shortcut_new();

    g_assert_true(shortcut_add(sc, "_vimb1_", "only-zero:$0"));
    g_assert_true(shortcut_add(sc, "_vimb2_", "default:$0-$2"));
    g_assert_true(shortcut_add(sc, "_vimb3_", "fullrange:$0-$1-$9"));
    g_assert_true(shortcut_add(sc, "_vimb4_", "for-remove:$0"));
    g_assert_true(shortcut_add(sc, "_vimb5_", "double-zero:$0-$0"));
    g_assert_true(shortcut_add(sc, "_vimb6_", "shell:$0-$1"));
    g_assert_true(shortcut_set_default(sc, "_vimb2_"));

    g_test_init(&argc, &argv, NULL);

    g_test_add_func("/test-shortcut/get_uri/single", test_shortcut);
    g_test_add_func("/test-shortcut/get_uri/shell-param", test_shortcut_shell_param);
    g_test_add_func("/test-shortcut/remove", test_shortcut_remove);

    result = g_test_run();

    shortcut_free(sc);

    return result;
}