66 lines
2 KiB
C++
66 lines
2 KiB
C++
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
||
|
/*
|
||
|
* This file is part of the LibreOffice project.
|
||
|
*
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
*/
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
||
|
#include <Common.hpp>
|
||
|
#include <Util.hpp>
|
||
|
|
||
|
/// WhiteBox unit-tests.
|
||
|
class WhiteBoxTests : public CPPUNIT_NS::TestFixture
|
||
|
{
|
||
|
CPPUNIT_TEST_SUITE(WhiteBoxTests);
|
||
|
|
||
|
CPPUNIT_TEST(testRegexListMatcher);
|
||
|
|
||
|
CPPUNIT_TEST_SUITE_END();
|
||
|
|
||
|
void testRegexListMatcher();
|
||
|
};
|
||
|
|
||
|
void WhiteBoxTests::testRegexListMatcher()
|
||
|
{
|
||
|
Util::RegexListMatcher matcher;
|
||
|
|
||
|
matcher.allow("localhost");
|
||
|
CPPUNIT_ASSERT(matcher.match("localhost"));
|
||
|
CPPUNIT_ASSERT(!matcher.match(""));
|
||
|
CPPUNIT_ASSERT(!matcher.match("localhost2"));
|
||
|
CPPUNIT_ASSERT(!matcher.match("xlocalhost"));
|
||
|
CPPUNIT_ASSERT(!matcher.match("192.168.1.1"));
|
||
|
|
||
|
matcher.deny("localhost");
|
||
|
CPPUNIT_ASSERT(!matcher.match("localhost"));
|
||
|
|
||
|
matcher.allow("www[0-9].*");
|
||
|
CPPUNIT_ASSERT(matcher.match("www1example"));
|
||
|
|
||
|
matcher.allow("192\\.168\\..*\\..*");
|
||
|
CPPUNIT_ASSERT(matcher.match("192.168.1.1"));
|
||
|
CPPUNIT_ASSERT(matcher.match("192.168.159.1"));
|
||
|
CPPUNIT_ASSERT(matcher.match("192.168.1.134"));
|
||
|
CPPUNIT_ASSERT(!matcher.match("192.169.1.1"));
|
||
|
CPPUNIT_ASSERT(matcher.match("192.168.."));
|
||
|
|
||
|
matcher.deny("192\\.168\\.1\\..*");
|
||
|
CPPUNIT_ASSERT(!matcher.match("192.168.1.1"));
|
||
|
|
||
|
matcher.allow("staging\\.collaboracloudsuite\\.com.*");
|
||
|
matcher.deny(".*collaboracloudsuite.*");
|
||
|
CPPUNIT_ASSERT(!matcher.match("staging.collaboracloudsuite"));
|
||
|
CPPUNIT_ASSERT(!matcher.match("web.collaboracloudsuite"));
|
||
|
CPPUNIT_ASSERT(!matcher.match("staging.collaboracloudsuite.com"));
|
||
|
}
|
||
|
|
||
|
CPPUNIT_TEST_SUITE_REGISTRATION(WhiteBoxTests);
|
||
|
|
||
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|