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
|
/*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
*
* This program 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; version 2 of the
* License.
*
* 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 General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "test.h"
#include "grt/parse_utils.h"
#include "grt/common.h"
#include "base/string_utilities.h"
using namespace grt;
using namespace bec;
TEST_MODULE(be_common_utils, "common utility functions");
TEST_FUNCTION(1)
{
std::list<std::string> foo_bar_baz;
std::list<std::string> foo_bar_NULL;
std::list<std::string> foo_quote;
std::list<std::string> NULL_;
foo_bar_baz.push_back("'foo'");
foo_bar_baz.push_back("'bar'");
foo_bar_baz.push_back("'baz'");
foo_bar_baz.push_back("'bla'");
foo_bar_NULL.push_back("'foo'");
foo_bar_NULL.push_back("'bar'");
foo_bar_NULL.push_back("NULL");
foo_quote.push_back("'foo\\''");
foo_quote.push_back("'bar'");
NULL_.push_back("NULL");
#define CHECK(str, expected)\
{\
std::list<std::string> tokens;\
ensure(str, bec::tokenize_string_list(str, '\'', false, tokens));\
/*std::equal(tokens.begin(), tokens.end(), expected.begin());*/\
}
#define CHECK_FAIL(str, nounquoted)\
{\
std::list<std::string> tokens;\
ensure(str, !tokenize_string_list(str, '\'', nounquoted, tokens));\
}
CHECK("'foo','bar', 'baz' ,'bla'", foo_bar_baz);
CHECK("'foo' ,'bar','baz' , 'bla'", foo_bar_baz);
CHECK("'foo' ,'bar','baz' , 'bla'", foo_bar_baz);
CHECK("'foo', 'bar', NULL", foo_bar_NULL);
CHECK("NULL", NULL_);
CHECK("'foo\\'', 'bar'", foo_quote);
CHECK_FAIL("'foo' bar", false);
CHECK_FAIL("NULL NULL", false);
CHECK_FAIL("'foo' 'bar'", false);
CHECK_FAIL("'foo", false);
CHECK_FAIL("'foo', 'bar", false);
CHECK_FAIL("'foo', bar", true);
CHECK_FAIL("'foo', NULL", true);
}
using base::normalize_path; // this was moved from bec to base
TEST_FUNCTION(2)
{
std::string separator(1, G_DIR_SEPARATOR);
ensure_equals("Path normalization", normalize_path(""), "");
ensure_equals("Path normalization", normalize_path("/"), separator);
ensure_equals("Path normalization", normalize_path("\\"), separator);
ensure_equals("Path normalization", normalize_path("/////////"), separator);
ensure_equals("Path normalization", normalize_path("../../../"), "");
ensure_equals("Path normalization", normalize_path("abc/././../def"), "def");
ensure_equals("Path normalization", normalize_path("a/./b/.././d/./.."), "a");
ensure_equals("Path normalization", normalize_path("a/b/c/../d/../"), replace_string("a/b/", "/", separator));
ensure_equals("Path normalization", normalize_path("/path///to/my//////dir"),
replace_string("/path/to/my/dir", "/", separator));
ensure_equals("Path normalization", normalize_path("D:\\files\\to//scan"),
replace_string("D:/files/to/scan", "/", separator));}
END_TESTS
|