summaryrefslogtreecommitdiff
path: root/test/sbuild/util.cc
blob: 46856d10f5b28824096e9617889077f171117c56 (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
/* Copyright © 2006-2013  Roger Leigh <rleigh@debian.org>
 *
 * schroot 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.
 *
 * schroot 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 <gtest/gtest.h>

#include <sbuild/util.h>

#include <cstdlib>

TEST(Util, Basename)
{
  ASSERT_EQ(sbuild::basename("/usr/bin/perl"), "perl");
  ASSERT_EQ(sbuild::basename("/usr/lib"), "lib");
  ASSERT_EQ(sbuild::basename("/usr/"), "usr");
  ASSERT_EQ(sbuild::basename("usr"), "usr");
  ASSERT_EQ(sbuild::basename("/"), "/");
  ASSERT_EQ(sbuild::basename("."), ".");
  ASSERT_EQ(sbuild::basename(".."), "..");
}

TEST(Util, Dirname)
{
  ASSERT_EQ(sbuild::dirname("/usr/bin/perl"), "/usr/bin");
  ASSERT_EQ(sbuild::dirname("/usr/lib"), "/usr");
  ASSERT_EQ(sbuild::dirname("/usr/"), "/");
  ASSERT_EQ(sbuild::dirname("usr"), ".");
  ASSERT_EQ(sbuild::dirname("/"), "/");
  ASSERT_EQ(sbuild::dirname("."), ".");
  ASSERT_EQ(sbuild::dirname(".."), ".");
}

TEST(Util, StringListToString)
{
  sbuild::string_list items;
  items.push_back("foo");
  items.push_back("bar");
  items.push_back("baz");

  ASSERT_EQ(sbuild::string_list_to_string(items, "--"), "foo--bar--baz");
}

TEST(Util, SplitString)
{
  sbuild::string_list items =
    sbuild::split_string("/usr/share/info", "/");

  ASSERT_EQ(items.size(), 3);
  ASSERT_EQ(items[0], "usr");
  ASSERT_EQ(items[1], "share");
  ASSERT_EQ(items[2], "info");
}

TEST(Util, FindProgramInPath)
{
  std::string path("/usr/local/bin:/usr/bin:/bin");
  ASSERT_EQ(sbuild::find_program_in_path("sh", path, ""), "/bin/sh");
  ASSERT_EQ(sbuild::find_program_in_path("sed", path, ""), "/bin/sed");
}