source: trunk/test/htmlstream_test.cc @ 1127

Last change on this file since 1127 was 1127, checked in by Peter Johansson, 13 years ago

updating copyright statements

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1// $Id: htmlstream_test.cc 1127 2010-07-15 22:01:38Z peter $
2
3/*
4  Copyright (C) 2009, 2010 Peter Johansson
5
6  This file is part of svndigest, http://dev.thep.lu.se/svndigest
7
8  svndigest is free software; you can redistribute it and/or modify it
9  under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 3 of the License, or
11  (at your option) any later version.
12
13  svndigest is distributed in the hope that it will be useful, but
14  WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with svndigest. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#include "Suite.h"
23
24#include "lib/HtmlStream.h"
25
26#include <sstream>
27
28using namespace theplu::svndigest;
29
30void test_stream(std::string, std::string, test::Suite&);
31
32int main(int argc, char* argv[])
33{
34  test::Suite suite(argc, argv);
35
36  test_stream("\n", "<br />", suite);
37  test_stream("<", "&lt;", suite);
38  test_stream(">", "&gt;", suite);
39  test_stream("&", "&amp;", suite);
40
41  if (suite.ok())
42    return 0;
43  return 1;
44}
45
46void test_stream(std::string in, std::string correct, test::Suite& suite)
47{
48  std::ostringstream out;
49  HtmlStream hs(out);
50  hs << in;
51  if (out.str() != correct) {
52    suite.out() << in << " -> " << out.str() << "\n";
53    suite.out() << "error: expected `" << correct << "'\n";
54    suite.add(false);
55  }
56}
Note: See TracBrowser for help on using the repository browser.