summaryrefslogtreecommitdiffstats
path: root/test/src/dir-util-test.cpp
blob: 32b3fce74862e97984448a165871c085998eb7b8 (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
/*
 * Unit tests for dir utils.
 *
 * Author:
 *   Jon A. Cruz <jon@joncruz.org>
 *
 * Copyright (C) 2015 Authors
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include "gtest/gtest.h"

#include <glib.h>

#include "dir-util.h"

namespace {


TEST(DirUtilTest, Base)
{
    char const* cases[][3] = {
#if defined(WIN32) || defined(__WIN32__)
        {"\\foo\\bar", "\\foo", "bar"},
        {"\\foo\\barney", "\\foo\\bar", "\\foo\\barney"},
        {"\\foo\\bar\\baz", "\\foo\\", "bar\\baz"},
        {"\\foo\\bar\\baz", "\\", "foo\\bar\\baz"},
        {"\\foo\\bar\\baz", "\\foo\\qux", "\\foo\\bar\\baz"},
#else
        {"/foo/bar", "/foo", "bar"},
        {"/foo/barney", "/foo/bar", "/foo/barney"},
        {"/foo/bar/baz", "/foo/", "bar/baz"},
        {"/foo/bar/baz", "/", "foo/bar/baz"},
        {"/foo/bar/baz", "/foo/qux", "/foo/bar/baz"},
#endif
    };

    for ( size_t i = 0; i < G_N_ELEMENTS(cases); i++ )
    {
        if ( cases[i][0] && cases[i][1] ) { // std::string can't use null.
            std::string  result = sp_relative_path_from_path( cases[i][0], cases[i][1] );
            ASSERT_FALSE( result.empty() );
            if ( !result.empty() )
            {
                ASSERT_EQ( std::string(cases[i][2]), result );
            }
        }
    }
}

} // namespace

/*
  Local Variables:
  mode:c++
  c-file-style:"stroustrup"
  c-file-offsets:((innamespace . 0)(inline-open . 0))
  indent-tabs-mode:nil
  fill-column:99
  End:
*/
// vim: expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :