File: mimetype-test.vala

package info (click to toggle)
zeitgeist 1.0.1-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 11,160 kB
  • sloc: ansic: 18,480; xml: 11,500; python: 8,195; sh: 5,018; cpp: 3,006; sql: 1,192; makefile: 948; sed: 16
file content (114 lines) | stat: -rw-r--r-- 3,565 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
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
/* where-clause-test.vala
 *
 * Copyright © 2011-2012 Collabora Ltd.
 *             By Siegfried-Angel Gevatter Pujals <siegfried@gevatter.com>
 * Copyright © 2010 Canonical, Ltd.
 *             By Mikkel Kamstrup Erlandsen <mikkel.kamstrup@canonical.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 2.1 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 Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

using Zeitgeist;
using Assertions;

int main (string[] args)
{
    Test.init (ref args);

    Test.add_func ("/MimeType/basic", mime_type_basic_test);
    Test.add_func ("/MimeType/regex", mime_type_regex_test);
    Test.add_func ("/MimeType/none", mime_type_none_test);
    Test.add_func ("/MimeType/null", mime_type_null_test);
    Test.add_func ("/MimeType/register", mime_type_registration_test);

    Test.add_func ("/UriScheme/basic", uri_scheme_basic_test);
    Test.add_func ("/UriScheme/none", uri_scheme_none_test);
    Test.add_func ("/UriScheme/register", uri_scheme_registration_test);

    return Test.run ();
}

public void mime_type_basic_test ()
{
    assert_cmpstr (NFO.TEXT_DOCUMENT, OperatorType.EQUAL,
        interpretation_for_mimetype ("text/plain"));
}

public void mime_type_regex_test ()
{
    // We should have a fallack for application/x-applix-*
    assert_cmpstr (NFO.DOCUMENT, OperatorType.EQUAL,
        interpretation_for_mimetype ("application/x-applix-FOOBAR"));

    // Still application/x-applix-speadsheet should be a spreadsheet
    assert_cmpstr (NFO.SPREADSHEET, OperatorType.EQUAL,
        interpretation_for_mimetype ("application/x-applix-spreadsheet"));
}

public void mime_type_none_test ()
{
    assert (interpretation_for_mimetype ("foo/bar") == null);
}

public void mime_type_null_test ()
{
    assert (interpretation_for_mimetype (null) == null);
}

public void mime_type_registration_test ()
{
    register_mimetype ("awesome/bird", "Bluebird");
    try
    {
        register_mimetype_regex ("everything/.*", "is nothing");
    } catch (RegexError e) {
        assert (false);
    }

    mime_type_basic_test ();
    mime_type_regex_test ();
    mime_type_none_test ();

    assert_cmpstr ("Bluebird", OperatorType.EQUAL,
        interpretation_for_mimetype ("awesome/bird"));
    assert_cmpstr ("is nothing", OperatorType.EQUAL,
        interpretation_for_mimetype ("everything/everywhere"));
}

public void uri_scheme_basic_test ()
{
    assert_cmpstr (NFO.FILE_DATA_OBJECT, OperatorType.EQUAL,
        manifestation_for_uri ("file:///tmp/foo.txt"));
    assert_cmpstr (NFO.REMOTE_DATA_OBJECT, OperatorType.EQUAL,
        manifestation_for_uri ("ftp://ftp.example.com"));
}

public void uri_scheme_none_test ()
{
    assert (manifestation_for_uri ("asdf://awesomehttp://") == null);
}

public void uri_scheme_registration_test ()
{
    register_uri_scheme ("42://", "the answer");

    uri_scheme_basic_test ();
    uri_scheme_none_test ();

    assert_cmpstr ("the answer", OperatorType.EQUAL,
        manifestation_for_uri ("42://what is it?"));
}

// vim:expandtab:ts=4:sw=4