summaryrefslogtreecommitdiff
path: root/test/sbuild/regex.cc
blob: e2e38e420a4ed175c0f88c9f7dfc6989ffe2d30a (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
/* 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/regex.h>

#include <iostream>
#include <sstream>

TEST(Regex, Construct)
{
  EXPECT_NO_THROW(sbuild::regex r1);

  EXPECT_NO_THROW(sbuild::regex r2("foo"));

  std::string p("foo|bar$");
  EXPECT_NO_THROW(sbuild::regex r3(p));

  EXPECT_THROW(sbuild::regex r("[foo"), std::regex_error);
}

TEST(Regex, StreamOutput)
{
  sbuild::regex r("foo");
  std::ostringstream o;
  o << r;
  ASSERT_EQ(r.str(),"foo");
  ASSERT_EQ(o.str(),"foo");
}

TEST(Regex, StreamInput)
{
  sbuild::regex r;
  std::istringstream i("foo");
  i >> r;
  ASSERT_EQ(r.str(),"foo");
}

TEST(Regex, Match)
{
  sbuild::regex r("^[^:/,.][^:/,]*$");
  ASSERT_TRUE(sbuild::regex_search("foobar", r));
  ASSERT_FALSE(sbuild::regex_search(":fail:", r));
}

TEST(Regex, StreamInputFail)
{
  sbuild::regex r;
  std::istringstream i("([[invalid_regex");
  EXPECT_THROW(i >> r, std::regex_error);
}